LinuxQuestions.org
Review your favorite Linux distribution.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - General
User Name
Password
Linux - General This Linux forum is for general Linux questions and discussion.
If it is Linux Related and doesn't seem to fit in any other forum then this is the place.

Notices


Reply
  Search this Thread
Old 06-10-2004, 11:38 PM   #1
EndoEarth
LQ Newbie
 
Registered: Jun 2004
Posts: 14

Rep: Reputation: 0
Resizing partition Question.


I am thinking of increasing the size of my current partition.

my current partition information is as follows
start -end
/dev/hda 1-5815 Fat32 <--around 40gb where my windows OS is
>hda2 5437-5815 Extended
>hda5 5437-5815 Ext3 <-where my Linux OS is

the reason for this post is that i read that if i change the starting point
of my partitiong i would have a hard time getting my filesystem to come
again.

what basicaly i want to do is make my partition bigger.. but i cant increase
the ending point because the partition is located at the end of the hard drive
therefore, in order to achieve this i have to decrease the starting point to gain
more space..

with that in mind..

my question is.
what kind of trouble would i run into by decreasing the start point of my linux
partition. and how can i resolve them?

Thank for taking the time on reading my post =D
 
Old 06-11-2004, 08:09 AM   #2
homey
Senior Member
 
Registered: Oct 2003
Posts: 3,057

Rep: Reputation: 61
Quote:
my question is.
what kind of trouble would i run into by decreasing the start point of my linux
partition. and how can i resolve them?
Never tried it myself but from what I've read, if you resize the starting section of a partition, linux or windows, you will not be happy! It will trash that partition.
Your best option would be to make an image of the linux system and the windows system also . Then restore the windows system using a smaller partition size, then restore the linux system using a larger partition size.
 
Old 06-11-2004, 09:16 AM   #3
perry
Member
 
Registered: Sep 2003
Location: USA & Canada
Distribution: Slackware 12.0
Posts: 978

Rep: Reputation: 30
have you looked into System Commander (v-com.com)

it'll give you a heads up on what you are doing. anther product is bootitng and then there is acronis.

- perry
 
Old 06-11-2004, 12:42 PM   #4
EndoEarth
LQ Newbie
 
Registered: Jun 2004
Posts: 14

Original Poster
Rep: Reputation: 0
is there any way of doing it it without paying for software?

I read I would have a hard time. but it never said it was impossible.

how would it trash the partition I change the starting point for?.
 
Old 06-11-2004, 01:17 PM   #5
GlobShim
Member
 
Registered: Aug 2003
Posts: 32

Rep: Reputation: 15
First let me say that I have never actually tried resizing partitions.

Ok, with that out of the way, homey, you said that you heard moving the beginning of the partition will trash it? That might well be the case, but I think I remember seeing an option to move the beginning of the partition in fdisk, probably in the expert options. I don't know if it works or not, but perhaps you could combine that with parted if it actually exists.

Good luck
 
Old 06-11-2004, 01:17 PM   #6
EndoEarth
LQ Newbie
 
Registered: Jun 2004
Posts: 14

Original Poster
Rep: Reputation: 0
I also have another idea. that might work.

what if I were to make another partition before my current linux partition
then mount the partition to be used as free space in my current Linux, is that possible?

Im not all that familiar with Linux but would that be possible. or only way is to resize my current partition like I originally planned?
 
Old 06-11-2004, 01:19 PM   #7
motub
Senior Member
 
Registered: Sep 2003
Location: The Netherlands
Distribution: Gentoo (main); SuSE 9.3 (fallback)
Posts: 1,607

Rep: Reputation: 46
The OS would no longer be able to read the partition, since the starting point is no longer where the OS is looking for it (it writes itself a note to tell itself where it is, and now that note is wrong).

Trust me, if you want to do something like this with software (or even backup a partition so it can be restored pristine to a new partition), you don't want to complain about paying for the software that will do it for you.

This is a very delicate and dangerous series of operations, that risks losing your irreplaceble data or making it inaccessible. If you want to do that on a running system, the software that is going to accomplish that is not going to come free, because it took a lot of skill and man-hours to create.

If you want to do it for free, backup all your data manually, reformat and repartition the drive, reinstall whatever OS you're going to use, and restore your data manually.

However, I would suggest an alternative: shrink the Windows partition (under Windows), create a Linux partition and mount it under Linux as either an extra partition which you can use for whatever you want, or move some part of the Linux install's root filetree's mount points to that new partition (such as /opt/ or /tmp or /var).

That's a lot less dangerous, overall.

Last edited by motub; 06-11-2004 at 01:20 PM.
 
Old 06-11-2004, 01:31 PM   #8
EndoEarth
LQ Newbie
 
Registered: Jun 2004
Posts: 14

Original Poster
Rep: Reputation: 0
I think we are somewhere in the same page with the making of a separate partitions..

but i lake the knowledge to do what you have just put on the table.

I think i might be able to shrink the partition under windows.. that is the least of my problems..

how would i go about mounting the /tmp /var or /opt and will that make it so that linux actually uses that space as free space. or something of the sort?

any info would be greatly appreciated, Thanx
 
Old 06-11-2004, 01:45 PM   #9
motub
Senior Member
 
Registered: Sep 2003
Location: The Netherlands
Distribution: Gentoo (main); SuSE 9.3 (fallback)
Posts: 1,607

Rep: Reputation: 46
If you want to use the newly-created partition as "free space" (for downloads, or installed Wine games, or media files or whatever), all you have to do is create a mount point for it (I would suggest in your $HOME$ directory, for the convenience, although you should read man mount to set your mount options for the fs correctly in /etc/fstab) and then stick the files in there.

I have an "extra" ext3 partition that I use for big downloads and also to install Wine games, and hold Neverwinter Nights (which is over 2GB before save games. I definitely don't want it expanding and taking up all the space in my / filetree). I mount it to my ~/ as "lindata". It's easy enough to then set a download manager/FTP client/IRC client to use that as its download folder, to set Wine to use a folder created there as its 'fake_windows" (which allows me to install games under Wine to "C:\Program Files" as they prefer by default and have them on that partition), and to store data files cut or copied from other partitions.

If you want to move your entire /home folder to the new partiton, or /usr, or /var, that is also possible, but a little more complex. If you want to do something like that, give me a few minutes; I can find a HOW-TO easily enough, but I'm in the middle of a couple of things atm .
 
Old 06-11-2004, 01:51 PM   #10
EndoEarth
LQ Newbie
 
Registered: Jun 2004
Posts: 14

Original Poster
Rep: Reputation: 0
that would be great. Thank you.. I will start making the partition to be used.

hopefully I wont encounter problems there. =D
 
Old 06-11-2004, 02:58 PM   #11
motub
Senior Member
 
Registered: Sep 2003
Location: The Netherlands
Distribution: Gentoo (main); SuSE 9.3 (fallback)
Posts: 1,607

Rep: Reputation: 46
Adding a New Hard Disk/Partition

Linux Magazine | March 2000 | TECH SUPPORT | Top Tech Support Questions

Partitioning in action: Moving /home

LinuxQuestions.org - Move an existing partition to a new hard drive? - where Linux users come for help

lubox.com - HOW-TO Linux - HOW-TO move your home directory [ /home ] to another partition

Knoppix Linux Documentation - Home Partition How To

They basically all say the same thing:

1. Make the new partition.

2. Make a mount point in /mnt for the new partiton.

3. Mount the new partition to the new mount point.

4. Copy the contents of the folder in question (/home is most often used, but you can move the mount point of pretty much any folder in the / filetree, depending on your needs-- for example, if you ran a lot of servers for web, mail and/or ftp, which create big log files, you might want to move /var to its own partition, or even /var/log, as that's where the log files are created by default) to the new partition. Use tar to copy the files, so that the permissions and symlinks are preserved.

5. Add a line to /etc/fstab telling it that /home (or /var or /opt or /usr-- whatever you are moving) is now going to be located in the new partition.

6. Rename the folder currently in use to /*_old ("*" being replaced by whatever the folder name was before; home, var, opt, whatever) using mv, to preserve your existing data in case this whole thing goes south.

7. Reboot, and the new partition should be mounted as /home or /opt or /var or whatever you moved. Use dk -f to confirm that the system has mounted and is using the partition as expected. Check for any other problems (is your data there, can you write to the folder normally, etc).

8. If everything's OK, you can delete the original folder (/*_old) and reclaim that space for the root filetree. If everything is not OK for some reason, you can always rename the original folder back, remove the line from /etc/fstab so that the new partition does not mount, reboot, and all should be as it was, so that you can go over what you did again and see what went wrong.

But again, you don't necessarily have to do it this way, depending on what kind of files are taking up all your space. If they are data files (and not system files or programs), you can simply mount the new partition, move the data to it, and then use it from there-- if the data currently lives in your $HOME$, moving it to its own space will also increase the available space on your root filetree, and is somewhat simpler and less alarming than moving part of the root filetree itself.

Hope this helps explain things for you .
 
Old 06-11-2004, 05:36 PM   #12
hamza11050
Member
 
Registered: Jun 2004
Location: NY, USA
Distribution: RHEL 4
Posts: 54

Rep: Reputation: 15
ok..hello . my best advice is to use partition magic.. the gui is really greatand it comes with a good manual
 
Old 06-11-2004, 07:10 PM   #13
motub
Senior Member
 
Registered: Sep 2003
Location: The Netherlands
Distribution: Gentoo (main); SuSE 9.3 (fallback)
Posts: 1,607

Rep: Reputation: 46
hamza11050, you must mean for resizing the Windows partition. You can't resize an installed Linux partition using that tool. However, it is a good tool for Windows, and definitely should be considered for use to manage the Windows partition. It is very touchy, though, when dealing with Linux partitions (it can't do everything it claims), and plus, it costs money, so it might not be worth it for EndoEarth to pay for a tool for an OS that s/he is using less often that doesn't work well with the OS s/he's using more often.
 
Old 06-12-2004, 05:57 AM   #14
kinasz
Member
 
Registered: Mar 2004
Location: Brisbane, Australia
Distribution: FreeBSD, Suse
Posts: 103

Rep: Reputation: 15
>>If you want to do that on a running system, the software that is going to accomplish that is not going to come free, because it took a lot of skill and man-hours to create.

What is this www.windowsquestions.org ???

Last edited by kinasz; 06-12-2004 at 06:00 AM.
 
Old 06-12-2004, 03:15 PM   #15
EndoEarth
LQ Newbie
 
Registered: Jun 2004
Posts: 14

Original Poster
Rep: Reputation: 0
I got Partition Magic8.0.... and
I made my Windows Paritions Smaller by 7GIGs and i made my current linux Partition
Bigger by that 7GiGs it all works and runs.

Thank you all for the good advice..
I learned quite a few things.
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
QTParted resizing Windows partition question Enil8 Linux - Software 3 10-26-2005 04:11 PM
Problem Resizing Linux Partition From Partition magic John_Emad SUSE / openSUSE 5 02-16-2005 12:42 PM
need help resizing an ext3 partition with an underlying partition... spiroth10 Linux - Software 1 07-30-2004 12:21 PM
Partition resizing campo Linux - General 1 05-27-2003 09:28 AM
resizing partition help nuttyvishal4u Linux - Newbie 2 03-13-2003 05:11 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - General

All times are GMT -5. The time now is 11:57 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration