回答編集履歴

1

追記: vesa ドライバへの変更方法

2017/05/23 01:53

投稿

TaichiYanagiya
TaichiYanagiya

スコア12146

test CHANGED
@@ -5,3 +5,41 @@
5
5
 
6
6
 
7
7
  一旦、runlevel 3 で起動して、root でログインし、`apt-get install xorg-x11-drv-nvidia` でインストールします。
8
+
9
+
10
+
11
+ もし、すでに xorg-x11-drv-nvidia がインストール済みならば、Vine Linux 6.3 が Geforce 750Ti に対応していない可能性が考えられます。
12
+
13
+ グラフィックカードの性能は出ませんが、汎用の `vesa` ドライバに切り替える方法もあります。
14
+
15
+ ```
16
+
17
+ (/etc/X11/xorg.conf の下記箇所を変更)
18
+
19
+
20
+
21
+ Section "Device"
22
+
23
+ Identifier "Videocard0"
24
+
25
+ Driver "nvidia"
26
+
27
+ EndSection
28
+
29
+
30
+
31
+
32
+
33
+
34
+
35
+ Section "Device"
36
+
37
+ Identifier "Videocard0"
38
+
39
+ Driver "vesa"
40
+
41
+ EndSection
42
+
43
+ ```
44
+
45
+