PDA

View Full Version : create a permanent swap



thomas_remkus
03-11-2005, 04:57 AM
I am running Knoppix 3.7 en with the 2.4 kernel. Two drives. hda is format with nothing. hdb1 has my network save settings. hdb2 is a place where I can save my settings when I am testing new stuff. hdb3 is my perm home dir and I am using the entire part. works perfectly.

I would like to take hda1 and part some space dedicated for swap and use the rest for whatever comes up. My problem is that I have no idea how to tell knoppix that I have a perm swap dev during boot. I would like to dedicate like 1024 to swap at least, but if there is no way to have knoppix use this then it's pointless.

Is this possible, and if so, then how?

ghaze
03-11-2005, 11:07 PM
Knoppix will automatically mount any swap partition it finds while booting.
In fact, you have to tell it not to mount swap partitions
if you are doing forensics or disk imaging with knoppix.

Use your partioning software of choice to partition hda.
As root
"mkswap /dev/hda1"
"swapon /dev/hda1"
Knoppix will use your swap partition now. If you reboot,
knoppix will automatically mount it as swap.

gazelle
03-12-2005, 05:58 AM
Knoppix will automatically mount any swap partition it finds while booting.
In fact, you have to tell it not to mount swap partitions
if you are doing forensics or disk imaging with knoppix.


Why do you not want to be running swap if you are doing "disk imaging"?

(I.e., what exactly are you referring to when you say "disk imaging"?)

ghaze
03-12-2005, 06:37 AM
Why do you not want to be running swap if you are doing "disk imaging"?

(I.e., what exactly are you referring to when you say "disk imaging"?)

You might want to copy one hard drive to another.
dd if=/dev/hda of=/dev/hdb
or
dd if=/dev/hda of=/dev/hdb1/hda.img

You can restore the image by reversing the command.
dd if=/dev/hdb1/hda.img of=/dev/hda

It wouldn't work very well with the swap on hda mounted and active.
If you are creating the image to preserve evidence of a crime, or for forensic
work, you don't want knoppix to make any changes at all to the disk.

Generally, when playing with partitions, it is better not to have any mounted on that disk.

YMMV

gazelle
03-12-2005, 01:50 PM
Why do you not want to be running swap if you are doing "disk imaging"?

(I.e., what exactly are you referring to when you say "disk imaging"?)

(A bunch of "Unix 101 stuff" - snipped)

It wouldn't work very well with the swap on hda mounted and active.
If you are creating the image to preserve evidence of a crime, or for forensic
work, you don't want knoppix to make any changes at all to the disk.

Generally, when playing with partitions, it is better not to have any mounted on that disk.

YMMV

Of course. But that doesn't have anything to do with swap partitions, per se. I.e., of course, you don't want anything active on the partition you are working on, but you could certainly have swap partitions active in other areas while you are working there.

ghaze
03-12-2005, 02:47 PM
Gazelle,

You've certainly ot'd this thread. I mentioned the fact that you had to
tell knoppix not to mount swap partitions if they were available so the
other poster would understand that knoppix mounts swap automatically.

To answer your point, if you are making a direct disk to disk copy, or
creating a hard drive image, you don't want swap active and mounted,
on that drive.
If your box swaps out while running dd, the imaging will take awhile,
to say the least.

As far as forensics goes, type
forensics noswap knoppix
into a google search box to find out why mounting a swap partition on a drive
you are trying to preserve might not be a good idea.

If you are using qtparted on your disk, you might have a hard time resizing
your partitions if a swap partition on that drive is mounted. Maybe not, depending
on what you are trying do.

unix 101, huh? Might not be a bad idea for some of us.

Have a Nice Day
:D