help installing suse 9.1
i just finished downloading suse 9.1 personal. when i come to install it on my server, it says there isnt enough memory to run Yast, it then asks me if i want to create swap space. it then comes up with a box asking me to type in a mount point or something like that. with eg "dev/hda1"
anyone know how to progress with this?? cos im a linux newbie
anyone know how to progress with this?? cos im a linux newbie
Comments
-Q
-Q
If you want to make a Swap partitiion or a swap drive just use the "mkswap" command. So the command should look like this.
mkswap /dev/hda2
Then run this command.
swapon /dev/hda2
For the swap to be turned on at boot time add in the file called fstab in the /etc directory
/dev/hda2 swap swap defaults 0 0
Center things up so it looks even with the rest of the listings in the fstab.
http://www.grape-info.com/doc/linux/root/swap.html
Heres a example on makeing a swap file.
Run in the command prompt or the X-Term the following
dd if=/dev/zero of=/swapfile bs=1024 count=65536
mkswap /swapfile
swapon /swapfile
In the file called fstab in the /etc directory to enable the swap file on boot time just add the following.
/swapfile swap swap defaults 0 0
Very simple.
http://www.redhat.com/docs/manuals/linu ... dding.html
-Q
-Q
And I'm not gonna reply to whatever you claim as this is a support thread ::oops:
-Q