Installing Steps:
1. Make sure all the prerequisites have been installed; if not, issue:
- 代碼: 選擇全部
sudo aptitude install libgtk2.0-0 ia32-libs-gtk (huge inter-dependencies)
(libgtk2.0-0 might be replaced by libgtk-3-0. ia32-libs-gtk could be installed after finishing the OALD8 installation in step 3.)
2. Insert OALD8 CD-ROM into CD/DVD drive (/dev/sr0) and mount it with:
- 代碼: 選擇全部
sudo mount -t iso9660 -o ro,exec /dev/sr0 /media/cdrom0
or
sudo mount -t iso9660 -o loop,ro,exec /path/to/OALD8_iso_image /media/cdrom0
(There is no copy-protection mechanism under Linux)
3. Start the OALD8 installation (that would take a few min.):
- 代碼: 選擇全部
linux32 /media/cdrom0/linux/setup.sh
4. Launch OALD8:
- 代碼: 選擇全部
cd ~/oald8
./run-oald8.sh
Troubleshooting:
1. libc6-i386 package is required to resolve the error message:
- 代碼: 選擇全部
./run-oald8.sh: 424: ./oald8-bin: not found
2. ia32-libs-gtk package is required to resolve the error message:
- 代碼: 選擇全部
./oald8-bin: error while loading shared libraries: libgtk-x11-2.0.so.0: cannot open shared object file: No such file or directory
3. If there is no sound while running OALD8, load kernel module snd-pcm-oss:
- 代碼: 選擇全部
sudo modprobe snd-pcm-oss
4. To auto-load snd-pcm-oss during kernel bootstrapping, append this line "snd-pcm-oss" to /etc/modules:
- 代碼: 選擇全部
su
Enter root password
echo snd-pcm-oss >> /etc/modules (requiring root privilege to modify /etc/modules)