2. Can I unmount both and redistribute the sizes within the GUI?
3. Would using the terminal be better? and how would I word the commands so
as not to FUBAR my system?
4. Could the SuSE 9.0 Pro Installation CD 1 be booted and redistribute
partitions that way without doing a clean install?
5. Will the new 5 Gig swap partition be in the center of the hard drive
disk?
Please help,
Thanx
Stacy
Well, It sounds like you wanna have a reassurance that you wont loose data
while trying to resize your partitions without having a backup.
Nobody will give you this.
My advice: Go to ebay and buy a 3 or more GB disk for some pennies,
put it into your computer and fdisk it as another swap then add the new
swap space with another entry in your fstab.
Having two swap partitions on two independent harddrives will almost certaintly
give you a much better performance while swapping. Especially if you have
SCSI or the disks are on differend IDE channels.
--
Frank Schruefer
> My advice: Go to ebay and buy a 3 or more GB disk for some pennies,
> put it into your computer and fdisk it as another swap then add the new
> swap space with another entry in your fstab.
That is certainly good advice as I have done this for my desktop. BUT for my
laptop I would need external HDs by USB and this just starts to increase
the complexity.
Thanx though,
Stacy
Why not use a swap _file_ instead?
Something like:
dd if=/dev/zero of=/swapfile bs=1024 count=`echo $[1024*1024*4]'
chmod 0600 /swapfile
mkswap /swapfile
echo "/swapfile swap swap defaults 0 0" >>/etc/fstab
swapon -a
Then have a look with "swapon -s" to see if it worked.
HTH.
--
-Menno.
> Something like:
>
> dd if=/dev/zero of=/swapfile bs=1024 count=`echo $[1024*1024*4]'
Oops. Make that:
dd if=/dev/zero of=/swapfile bs=1024 count=$[1024*1024*4]
Sorry 'bout that.
--
-Menno.
> I have 1 Gig ram and a 1 Gig swap partition in the center of my hard drive
> and only 1 other partition at 59 Gigs running SuSE 9.0 Pro. I have been
> trying to edit some LARGE photos and Gimp is running out of memory. I would
> like to increase my swap partition from 1 Gigabyte to 5.
>
As I understand it, your partition size is fine wrt to the RAM on your
system.
Have you checked the settings in Gimp? File|Preferences Environment for
memory-related settings, or Directories for disk-related settings.
It uses its own temporary and swap directories, which on my setup are
located in my home directory and /tmp respectively.
Out of interest, what sort of size is the large photo you're trying to
use? I've managed with 30-40MB images Ok.
B.
--
Bus Error (passengers dumped)
>Why not use a swap _file_ instead?
I agree, using a swapfile rather than a partition is a very painless
way to get more swap space. There's a bit of file system overhead but
you probably won't notice it. However, 1 gig is a very big swap
partition already for a single user system, even if you do lots of
graphical work. If you really are swapping 1Gb of stuff in and out of
physical memory, your system will run like a dog.
Best regards, Paul
--
Paul Sherwin Consulting http://paulsherwin.co.uk
> 2. Can I unmount both and redistribute the sizes within the GUI?
Possibly. Depends exactly how the gui works.
>
> 3. Would using the terminal be better? and how would I word the commands
> so as not to FUBAR my system?
>
> 4. Could the SuSE 9.0 Pro Installation CD 1 be booted and redistribute
> partitions that way without doing a clean install?
Might do, I don't know about SUSE, but the slackware boot cd could.
>
> 5. Will the new 5 Gig swap partition be in the center of the hard drive
> disk?
Probably depends how you configure it.
My advice: Ignore the gui, get a bootdisk version of GNU Parted, boot from
floppy with that and use that to resize your partitions. Just read the
manual and you should be fine with parted, I was anyway. Use parted to
shrink the main partition, then delete your existing swap partition and
replace it with a bigger one. (IIRC you do all that from parted, however
you might need to use fdisk. Again, bootdisk.)
> Out of interest, what sort of size is the large photo you're trying to
> use? I've managed with 30-40MB images Ok.
>
> B.
Just trying to scan color @ 2400
Gimp is using the xsane interface and when I put in the selections for
color,flatbed,2400 dpi the message on the bottom window says:
14328*27983*24 (1147.1MG)
I know this seems like alot but I just reinstalled SuSE 9.0 Pro with a 9.1
GB Swap partition and I have 1 GB of Ram. Even after this I still get the
error message for the EPSON Perfection 2400 Photo saying: Failed to start
scanner: Out of memory
Stacy
Arithmetic expansion allows the evaluation of an arithmetic expression and
the substitution of the result. The format for arithmetic expansion is:
$((expression))
The old format $[expression] is deprecated and will be removed in
upcoming
versions of bash.
--
Absurd Procrustean Egghead Cornstarch Variant Bill Marcum