Contents
  1. 1. 双系统的安装
    1. 1.1. 系统现有环境:
    2. 1.2. 目标:
    3. 1.3. 可选方案
    4. 1.4. 最终方案
      1. 1.4.1. 分区情况
      2. 1.4.2. 如何引导系统启动
  2. 2. 显卡问题的解决
  3. 3. 关键在于显卡驱动
  4. 4. 其他有帮助的信息
    1. 4.1. 0
    2. 4.2. 1
    3. 4.3. 2
    4. 4.4. 3
    5. 4.5. 4
    6. 4.6. 5
    7. 4.7. 6
  • [x] 核心信息
  • [] 详细信息

双系统的安装

系统现有环境:

OS: windows server 2012
Hardware: 两块硬盘 hd0,hd1. hd0 大小 2.45T. 有两个逻辑分区 hd(0,0), hd(0,1)。hd1 为 500G 固态硬盘,为系统盘。
GPU: 三个独立显卡, NVIDIA Quadro K620, NVIDIA Tesla K20C 两块,无集成显卡

目标:

在其中一块硬盘(非系统盘所在硬盘)上的一个分区 hd(0,1)安装 unbuntu 14.04.1

可选方案

  1. 直接从现有系统下的硬盘安装
  2. 从 usb storage 安装
  3. 从光盘安装

最终方案

USB storage 安装(因为硬盘安装失败)

分区情况

/boot 200M, (win 引导 ubuntu,要放在 /boot 下,查到的帖子这么说,不过帖子最不可靠了,我也没工夫验证)
/home 200G
/swap 2G
/grup 99M
/ 所有剩下的空间

如何引导系统启动

easyBSD 引导 grup2 设置. 详见博客

http://blog.sciencenet.cn/blog-1583812-839793.html
and
http://blog.csdn.net/silleyj/article/details/39394709
and
http://www.linuxidc.com/Linux/2014-04/100369.htm
and
http://blog.csdn.net/lvanneo/article/details/16885121

以上帖子结合起来用。

此外,进系统的时候,硬盘 SAME 什么的 fail,最后也没啥影响,就没管,但是工作站并没有用 RAID 什么的备份技术啊

显卡问题的解决

  1. 修复模式
  2. ctrl+alt+F1(也可能是 F2, F3)进入 Terminal, 出现奇怪的信息,Ctrl+c 莫名其妙进入了低分辨率的桌面。
  3. 进入桌面以后,打开软件更新的其他驱动部分,选择 331.驱动
    安装 331.
    驱动(sudo apt-get nvidia-current)
  4. 列出设备信息 lspci
  5. 更新设备信息 sudo update-pciids
  6. 列出设备信息 lspci | grep nvidia
1
2
3
4
5
@cv-Precision-Tower-7910:~$ lspci | grep NVIDIA
03:00.0 VGA compatible controller: NVIDIA Corporation GM107GL [Quadro K620] (rev a2)
03:00.1 Audio device: NVIDIA Corporation Device 0fbc (rev a1)
04:00.0 3D controller: NVIDIA Corporation GK110GL [Tesla K20c] (rev a1)
81:00.0 3D controller: NVIDIA Corporation GK110GL [Tesla K20c] (rev a1)

关键在于显卡驱动

显卡驱动装好以后,除了看看上面的信息是否正确外,还要看看配置文件。
最后是这个帖子帮了忙,我在按照论坛的帖子修改的过程中,删掉了 /ect/X11/xorg.conf.

http://forum.ubuntu.org.cn/viewtopic.php?t=372512
刚刚碰到这问题了,看帖子来了灵感解决了~~~
ATI 显卡 驱动各种不好用,我的 ubuntu 只要一更新,显卡驱动肯定出事,各种因为驱动出的毛病,郁闷!
cd /etc/X11
sudo cp xorg.conf.failsafe xorg.conf
重启后就可以进入系统,然后终端
sudo apt-get install fglrx
重启,ok。

/etc/X11/xorg.conf and /etc/X11/xorg.conf.failsafe

1
2
3
4
5
6
7
8
9
10
11
12
13
14
Section "Device"
Identifier "Configured Video Device"
Driver "vesa"
EndSection
Section "Monitor"
Identifier "Configured Monitor"
EndSection
Section "Screen"
Identifier "Default Screen"
Monitor "Configured Monitor"
Device "Configured Video Device"
EndSection

其他有帮助的信息

0

有个英文的问答帖子,也很有帮助,不过后来都没帮上忙。地址在 ipad 上。

1

此贴 2 楼的第七点有帮助 http://forum.ubuntu.org.cn/viewtopic.php?f=77&t=463907
我按照他说的删掉了这个东西,但是根本就找不到 xorg.conf 这个文件,看帖子应该是新的系统都没有这个文件,但是有 xorg.conf.failsafe 这个文件,就按照作者的指引道路上面提到的地址,解决了问题。

2

下面的命令可以查看当前的主要显卡

1
prime-select query

参考信息http://www.cnblogs.com/platero/p/4070756.html

3

后续安装 cuda(详见下一篇博客)

http://www.cnblogs.com/platero/p/3993877.html

4

针对 low graphic mode 问题的解决方案,网上的一个帖子,基本上来自上面提到的英文的帖子

http://www.linuxidc.com/Linux/2014-04/100599.htm

方法 1:在登录的文本界面重新安装下 fgirx 然后重启 (备注:试了没用,而且 fgirx 应该是 ATI 显卡的)

1
2
3
sudo apt-get install fglrx
sudo reboot

或者(备注:试了没用)

1
2
3
sudo apt-get install --reinstall ubuntu-desktop
sudo reboot

如果还没解决就使用方法 2:(试了,没用)

1
2
3
4
5
6
7
sudo chown lightdm:lightdm -R /var/lib/lightdm
sudo chown avahi-autoipd:avahi-autoipd -R /var/lib/avahi-autoipd
sudo chown colord:colord -R /var/lib/colord
sudo reboot

方法 3:可以重新安装下 nautilus(没试)

1
2
3
4
5
sudo apt-get install nautilus
sudo apt-get install Nautilus-Share-Message
sudo reboot

PS: 其他网上的方式(没试)

对于最新的 NVIDIA 二进制驱动:

1
2
3
4
5
sudo add-apt-repository ppa:ubuntu-x-swat/x-updates
sudo apt-get update
sudo apt-get install nvidia-current nvidia-current-modaliases nvidia-settings

对于最新的 ATI/AMD 二进制驱动:

1
2
3
4
5
sudo add-apt-repository ppa:ubuntu-x-swat/x-updates
sudo apt-get update
sudo apt-get install fglrx

如果你机器上之前有一个老版本,请按照下面这些命令来做。Nvidia 和 ATI/AMD 显卡的命令都一样。

1
2
3
4
5
sudo add-apt-repository ppa:ubuntu-x-swat/x-updates
sudo apt-get update
sudo apt-get upgrade

5

http://simpledeveloper.com/system-running-in-low-graphics-mode/
作者说的神乎其神,试了,没用。按照作者的说法,如果他的方法不成功,差不多就要重装系统。大家不要被他忽悠了。老外也有很多不靠谱的。

6

http://askubuntu.com/questions/534056/the-system-is-running-in-low-graphics-mode
Tried, failed.

如果觉得帮到了你,打赏一下吧!

Contents
  1. 1. 双系统的安装
    1. 1.1. 系统现有环境:
    2. 1.2. 目标:
    3. 1.3. 可选方案
    4. 1.4. 最终方案
      1. 1.4.1. 分区情况
      2. 1.4.2. 如何引导系统启动
  2. 2. 显卡问题的解决
  3. 3. 关键在于显卡驱动
  4. 4. 其他有帮助的信息
    1. 4.1. 0
    2. 4.2. 1
    3. 4.3. 2
    4. 4.4. 3
    5. 4.5. 4
    6. 4.6. 5
    7. 4.7. 6