Skip to content

Instantly share code, notes, and snippets.

@shimarin
Created January 18, 2009 13:30
Show Gist options
  • Save shimarin/48654 to your computer and use it in GitHub Desktop.
Save shimarin/48654 to your computer and use it in GitHub Desktop.
debootstrapで Ubuntu 8.04の日本語環境を作る
debootstrap --arch amd64 hardy /mnt/floppy http://jp.archive.ubuntu.com/ubuntu/
mount -t proc proc /mnt/floppy/proc
chroot /mnt/floppy
apt-get install wget
wget -q http://www.ubuntulinux.jp/ubuntu-ja-archive-keyring.gpg -O- | apt-key add -
wget http://www.ubuntulinux.jp/sources.list.d/hardy.list -O /etc/apt/sources.list.d/ubuntu-ja.list
apt-get update
apt-get upgrade
apt-get install ubuntu-desktop ipamonafont language-pack-gnome-ja language-pack-ja language-support-ja scim-bridge-client-gtk tomoe-l10n ubuntu-ja-keyring ubuntu-ja-setup-helper
vi /etc/fstab
vi /etc/network/interfaces (auto lo<LF>iface lo inet loopback<LF>
vi /etc/hostname
vi /etc/apt/sources.list
vi /etc/event.d/tty1
rm /etc/init.d/klogd
apt-get update
dpkg-reconfigure tzdata
adduser
passwd
apt-get install ssh
apt-get install xserver-xorg-video-dummy
apt-get install vnc4server
vi /etc/gdm/gdm.conf
rcconfはuniverse
Section "Module"
Load "vnc"
EndSection
Section "Device"
Identifier "dummy"
Driver "dummy"
EndSection
Section "Screen"
Identifier "Screen"
Device "dummy"
Monitor "Monitor"
Option "SecurityTypes" "none"
DefaultDepth 16
SubSection "Display"
Depth 16
Modes "1024x768"
EndSubsection
EndSection
Section "Monitor"
Identifier "Monitor"
HorizSync 31.50-75.5
VertRefresh 50.00-60.5
EndSection
ftp://linvinus.ru/forum/vnc/libvnc.so
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment