VMware for Windows に Vine Linux2.5をインストールする手順
1:仮想環境を作成する。
仮想環境は、下記の仕様で行う
デバイス 全般 メモリ 64MB 仮想ディスク(IDE or SCSI) 取り消し可能(2.0GB) DVD/CD-ROM 使用ドライブ(自動検出) フロッピーディスク 使用ドライブ A: ネットワークアダプタ ブリッジモード
2:VineLinux2.5をインストール
インストールは、GUIで行わずにテキストモードで行ってください。
3:SVGAを追加する
vmware-toolboxを追加します (rootで実行)
- # cd /usr/local/src
- # tar zxvf vmware-linux-tools.tar.gz
- # cd vmware-linux-tools
- # ./install.pl redhat
よくは解りませんが、/mnt/cdromに.vmware-linux-tools.tar.gzがあったりもします。(@_@)
4:Vine Linux のアップデートを行う (rootで実行)
- # atp-get update
- # apt-get dist-upgrade
アップグレードするときに前に「dist-」を付けているのは依存関係も見て、必要なファイルを
自動的にインストールしてくれる。
5:X11を設定する (rootで実行)
- # cd /etc/X11
- # vi XF86Config-4
- Section "Files" を変更する (日本語表示の手直し)
FontPathを全てコメントアウトし、 FontPath "unix/:7100"を追加
<sample>
Section "Files"
RgbPath "/usr/X11R6/lib/X11/rgb"
# FontPath "/usr/X11R6/lib/X11/fonts/local/"
# FontPath "/usr/X11R6/lib/X11/fonts/misc/"
# FontPath "/usr/X11R6/lib/X11/fonts/75dpi/:unscaled"
# FontPath "/usr/X11R6/lib/X11/fonts/100dpi/:unscaled"
# FontPath "/usr/X11R6/lib/X11/fonts/Type1/"
# FontPath "/usr/X11R6/lib/X11/fonts/Speedo/"
# FontPath "/usr/X11R6/lib/X11/fonts/75dpi/"
# FontPath "/usr/X11R6/lib/X11/fonts/100dpi/"
FontPath "unix/:7100"
# ModulePath "/usr/X11R6/lib/modules"
EndSection
- Section "InputDevice" を変更する (キーボードの手直し)
XkbModel と XkbLayout を変更する
<sample>
Section "InputDevice"
Identifier "Keyboard1"
Driver "Keyboard"
Option "AutoRepeat" "500 30"
Option "XkbRules" "xfree86"
# Option "XkbModel" "pc104"
# Option "XkbLayout" "us"
Option "XkbModel" "jp106"
Option "XkbLayout" "jp"
Option "XkbCompat" ""
EndSection
- Subsection "Display" を変更する (フル画面の調整)
インストールした画面サイズで設定されるのでワンサイズ小さくする(好み)
<sample>
Section "Screen"
Identifier "Screen 1"
Device "VMware SVGA"
Monitor "vmware"
# Don't specify DefaultColorDepth unless you know what you're
# doing. It will override the driver's preferences which can
# cause the X server not to run if the host doesn't support the
# depth.
Subsection "Display"
# VGA mode: better left untouched
Depth 4
Modes "640x480"
ViewPort 0 0
EndSubsection
Subsection "Display"
Depth 8
# Modes "1280x1024"
Modes "1024x768"
ViewPort 0 0
EndSubsection
Subsection "Display"
Depth 15
# Modes "1280x1024"
Modes "1024x768"
ViewPort 0 0
EndSubsection
Subsection "Display"
Depth 16
# Modes "1280x1024"
Modes "1024x768"
ViewPort 0 0
EndSubsection
Subsection "Display"
Depth 24
# Modes "1280x1024"
Modes "1024x768"
ViewPort 0 0
EndSubsection
EndSection
- Xをスタートさせる
# startx
以上で、Xウィンドウが起動します。
6:ランレベルを変更する
/etc/inittabを編修する。
befor
id:3:initdefault:
after
id:5:initdefault:
これにより起動からXウィンドウが起動します。