Полезно Краткий процесс установки ubuntu 14.04.1 lts

baltun

Администратор
Сообщения
10.876
Реакции
2.584
Баллы
2.003
Установка проходила на улучшенный вариант Microserver Gen8.
  • Жесткие диски ST3000VX000-1CU166 x 4 штуки (для хранения данных).
  • SSD INTEL SSDSA2CW080G3 (для системы).
  • Карта MicroSD (для записи загрузчика ОС).
  • Процессор Intel(R) Xeon(R) CPU E3-1230 V2 @ 3.30GHz (вместо штатного).
  • Память Kingston 2 x 8 Gb ECC (вместо штатных 2-4Gb)
В процессе установки при подключенных HDD в корзине и SSD вместо DVD-ROM машинка не будет грузится на SSD, только с флешки. Поэтому придется устанавливать загрузчик на флешку, ОС на SSD, а винты использовать собственно под данные.

Вставляем карту MicroSD в разъем на материнской плате. Раздел /boot и загрузчик ставим на неё, /home на SSD диск, который у нас вместо DVD-ROM, а остальные диски монтируем как /opt/v1, /opt/v2 и т.д. устанавливаем Ubuntu Server/Desktop 14.04.

На сервера стоит интегрированная видеокарта Matrox MGA G200. Качаем файл и копируем его в папку /usr/share/X11/xorg.conf.d/ под именем 60-xorg-matrox-mga-g200-agp.conf Лучше еще поменять разрешение обратно на 1280×1024 и глубину цвета выставил в 24 бита.
Получается так:
# xorg.conf (X.Org X Window System server configuration file)
#
# This file was generated by dexconf, the Debian X Configuration tool, using
# values from the debconf database.
#
# Edit this file with caution, and see the xorg.conf manual page.
# (Type "man xorg.conf" at the shell prompt.)
#
# This file is automatically updated on xserver-xorg package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-xorg
# package.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following command:
# sudo dpkg-reconfigure -phigh xserver-xorg

Section "InputDevice"
Identifier "Generic Keyboard"
Driver "kbd"
Option "XkbRules" "xorg"
Option "XkbModel" "pc105"
Option "XkbLayout" "gb"
Option "XkbOptions" "lv3:ralt_switch"
EndSection

Section "InputDevice"
Identifier "Configured Mouse"
Driver "mouse"
Option "CorePointer" "true" # Added on advice in to keep mouse cursor from disappearing
EndSection

Section "Device"
Identifier "MGA G200 Output 1"
Driver "mga"
BusID "PCI:2:0:0" # G200 card has its two outputs appearing as separate devices, each with their own PCI address
VideoRam 16384 # Card does not detect its RAM correctly. This card has 16MB of RAM per output
Option "HWCursor" "off" # Added on advice in and to keep mouse cursor from disappearing

EndSection

Section "Device"
Identifier "MGA G200 Output 2"
Driver "mga"
BusID "PCI:2:4:0" # G200 card has its two outputs appearing as separate devices, each with their own PCI address
VideoRam 16384 # Card does not detect its RAM correctly. This card has 16MB of RAM per output
Option "HWCursor" "off" # Added on advice in and to keep mouse cursor from disappearing
EndSection

Section "Monitor"
Identifier "Samtron 94V"
Option "DPMS"
HorizSync 60-70 # You may not need to specify these as the card will attempt to read the available graphics modes
VertRefresh 58-65 # from the monitor when the card starts up. If you need them, get the figures from your monitor manual.
EndSection

Section "Monitor"
Identifier "Hewlett Packard L1800"
Option "DPMS"
HorizSync 60-70 # You may not need to specify these as the card will attempt to read the available graphics modes
VertRefresh 58-65 # from the monitor when the card starts up. If you need them, get the figures from your monitor manual.

EndSection

Section "Screen"
Identifier "Left Screen"
Device "MGA G200 Output 1"
Monitor "Hewlett Packard L1800"
DefaultDepth 24

SubSection "Display"
Depth 24
Modes "1280x1024"
EndSubSection
EndSection

Section "Screen"
Identifier "Right Screen"
Device "MGA G200 Output 2"
Monitor "Samtron 94V"
DefaultDepth 24

SubSection "Display"
Depth 24
Modes "1280x1024"
EndSubSection
EndSection

Section "ServerLayout"
Identifier "Default Layout"
Screen "Left Screen"
Screen "Right Screen" RightOf "Left Screen"
EndSection

Section "ServerFlags"
Option "IgnoreABI" "True" # This is a workaround to tell the X server to ignore the Module ABI version mismatches introduced by the unoffical MGA driver from
Option "Xinerama" "True" # Turn on twin screens display using the Xinerama option
EndSection

Установка HPVSA для работы B120i RAID:
Код:
sudo add-apt-repository ppa:hp-iss-team/hp-storage
sudo add-apt-repository ppa:hp-iss-team/hpvsa-update
sudo apt-get update
sudo apt-get install hpvsa

Далее делаем черный список для AHCI:
Код:
sudo nano /etc/modprobe.d/blacklist.conf
add and save:
blacklist = ahci
sudo update-initramfs –u
sudo reboot


После всей проделанной работы система готова для эксплуатации.
 
Последнее редактирование:
  • Мне нравится
Реакции: Halk
Назад
Верх Низ