Partition Out Of Space? How to resize from another partition?
Linux - NewbieThis Linux forum is for members that are new to Linux.
Just starting out and have a question?
If it is not in the man pages or the how-to's this is the place!
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
Partition Out Of Space? How to resize from another partition?
Hi.
I'm on Mandrake 9.2 and i found out it has used all of its space! 4.8gigs.
I formated the partition in Reiser-FS.
I don't know how to use DiskDrake (Is that the partition manager for Mandrake?) that's why i use PartitionMagic 8 in XP.
However, it was then I realized PartitionMagic can't resize Reiser-FS.
So I resized my XP partition to have 1 gigabyte unallocated and I thought maybe i can merge these 2 partition (the unallocated and the current RFS) in DiskDrake but it seems that I can't. I can't even unmount because linux is using it!
You can create another parition and mount it at a cetain directory. For example, if you had a few gigs available, you can make a new partition there, and put all the stuff in /usr (the biggest directory of all) there. Then you rename your old /usr, and mount the new partition to /usr. If it works, you can delete the old /usr and free up several gigs of space on the / partition.
BTW, please put your snapshot in a webpage, your host won't let us access it directly.
Do it at a command-line. Rearranging stuff in /usr won't work with X running. Boot in runlevel 1 with the 'single' option at the boot menu.
*after creating & formatting new partition, say, hda7*
Code:
mv /usr /usr.old
mkdir /usr
mount /dev/hda7 /usr
umask 000
cp -a /usr.old/* /usr
*test it out by booting GUI. if all is well, delete old (in runlevel 1):*
rm -r /usr.old
To change mount points, edit /etc/fstab w/ text-editor as root. It is pretty straightforward. However, Mandrake might change it back. If that happens, I think there is something you should disable in the Mandrake Control Center.
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.