Instalasi Oracle 10g di Ubuntu 8.04 (Hardy Heron)
Langkah-langkah nya sebagai berikut :
1. Install paket-paket yang dibutuhkan
sudo apt-get install build-essential libaio1 rpm lesstif2-dev alien
2. Buat user dan group untuk instalasi oracle :
sudo groupadd oinstall
sudo groupadd dba
sudo groupadd nobody
sudo useradd -g oinstall -G dba,nobody -m oracle -s /bin/bash
3. Set Password untuk user oracle yang baru saja dibuat
sudo passwd [...]
Restore GRUB
Now we need to tell grub where are the grub files:
If you know where they are, type something like:
root (hd0,1)
else if you have no idea, type:
find /boot/grub/stage1
and then the root command with the correct parameters:
setup (hd0)
to install it on hd0, that is MBR of the first HD.
type quit and reboot.
The menu will appear again.
If you [...]