moving space from one partition to another


 
Thread Tools Search this Thread
Top Forums UNIX for Advanced & Expert Users moving space from one partition to another
# 1  
Old 09-23-2001
moving space from one partition to another

How can I move some space allocated to one partition to another,
i.e. from "/var" to "/" .

Thanks!
# 2  
Old 09-23-2001
Do you mean your /var is growing bigger and you want to mount it on another larger partition? If yes, you just need to change /etc/fstab.

For example, you currently have,

mount /dev/sda1 /var

and /dev/sda1 doesn't have enough space. So you just change like this, (if /dev/sdb1 is a larger partition)

mount /dev/sda1 /var
mount /dev/sdb1 /mnt
cp /var /mnt -r

then change /etc/fstab to,

/dev/sdb1 /var

then reboot. Hope this helps.

Or you want to cut out some space from a mounted partition and give it to another partition? Is this possible?

Last edited by eddie; 09-23-2001 at 10:59 PM..
# 3  
Old 09-23-2001
Eddie,

"Or you want to cut out some space from a mounted partition and give it to another partition? Is this possible? "

This is exactly what i want!!!

Any ideas?

Thanks.
# 4  
Old 09-24-2001
I don't think it is possible. One partition can only be mounted to one directory. But one directory and its sub-dir can mount on several partitions. For example,

we can do this,

mount /dev/sda1 /
mount /dev/sdb1 /usr
mount /dev/sdb2 /usr/database
mount /dev/sdb3 /usr/programs
mount /dev/sdb4 /usr/other_programs
mount /dev/sdc8 /usr/programs/eddie
etc....

but we can not do following,

mount /dev/sda1 /
mount /dev/sda2 /

nor,

mount /dev/sdb2 /usr/database
mount /dev/sdb2 /usr/programs

You perhaps have allocated too much space to a partition, right? So you may have to re-partition the disk.Smilie

Last edited by eddie; 09-30-2001 at 05:52 PM..
# 5  
Old 10-08-2001
Resizing

Well I think its not easy as it seems I think you should umount filesystems you want to resize then use the "mkfs" command with several options for both filesystems and give the appropiate size each one, then use "newfs" to create as filesystem and finally modify the /etc/fstab to the new mount points and remount the filesystems.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

How Much Space Before 1st Partition?

Hello All, I'm having trouble finding info on how to convert sector size (*if that's really what i want to do?) to something easier to understand. I'm trying to copy the MBR from a bootable SD Card to another SD Card or image file, but I'm not sure what I should use in my dd command since I'm... (17 Replies)
Discussion started by: mrm5102
17 Replies

2. Shell Programming and Scripting

How to consume all available space on partition?

Hi I'm doing some resilience testing and need to write a script to consume all of the available disk space on a partition and then to free it up again. This would need to be - Safe Dynamic, in that it calculates the free space prior to consuming it. I might want to go on to consume a... (7 Replies)
Discussion started by: bbq
7 Replies

3. Solaris

Moving disk partition from Solaris sparc to x86

Hello Gurus, Im trying to migrate some SAN disks from sparc server to X86 one, and having issues with disks not getting mounted on the X86 server with " not this fstyp error" due to the different partitions lay out between the two OS. I have tried it from sparc to sparc server and it worked,... (10 Replies)
Discussion started by: aladdin
10 Replies

4. Solaris

Increase root partition by moving starting cylinder

I am trying to expand the root partition on Solaris 10. I can expand root partition using format/partition command, but usually increasing cylinders on partition is done on back end. In this case I would have to expand from the front end following the table below, meaning I would have to move the... (12 Replies)
Discussion started by: mjaminal
12 Replies

5. AIX

Moving free space from one LV to another LV

in the same VG? Is there a way we can do this? We basically have a test server that used to be a production server. Now the newly created test directories have run out of space and the old production directories have alot of free space. Can we transfer that free space over? If so how? Have... (2 Replies)
Discussion started by: NycUnxer
2 Replies

6. UNIX for Dummies Questions & Answers

shifting space from one partition to other

hi My System is Sun Microsystems Inc. SunOS 5.10 Solaris Partition Info is /dev/vx/dsk/bootdg/var 27G 25G 1.2G 96% /var /dev/vx/dsk/bootdg/oravol 110G 54G 56G 49% /export/home I want to shift space 20G from /export/home to /var What should be the command ?? (2 Replies)
Discussion started by: kaushik02018
2 Replies

7. BSD

Moving /var partition to USB stick

I am currently running DesktopBSD as a live-CD and need to have a large /var partition because it is currently too small. I have a USB stick which is BSD formatted, and would like to have the /var partition moved over to it. How can this be done? Could I for instance use a symlink? (1 Reply)
Discussion started by: figaro
1 Replies

8. Solaris

Moving a file system to a new partition

Hi everybody. My task today is to move my file system that's 98% full to a new partition slice. I think I'm pretty sure how to do it, but I just wanted to make sure, plus it's been a while since I last did one. The Let's say I have 2 disks c0t0d0 & c0t1d0 ...the file Iwant to move is in c0t0d0s5... (7 Replies)
Discussion started by: Remi
7 Replies

9. Solaris

copying/moving partition

I have a slice on a 72GB hard drive like this (example): /dev/dsk/c0t1d0s0 51424287 51009 50859036 1% /usr/stuff that I need to copy or move to a slice on a MUCH larger slice like this: /dev/dsk/c0t2d0s6 70592505 570236 69316344 1% /usr/newstuff What is the... (4 Replies)
Discussion started by: antalexi
4 Replies

10. UNIX for Dummies Questions & Answers

Swap Partition Space

first of all, sorry about my english...I´m a spanish newbie to this marvelous OS and i have just a couple of doubts...u know? :-) 1) how big should my swap partition be if i installed debian 2.2r3 or FreeBSD 4.x on a AMD k7 1400Mhz with 512Mb of Random Access Memory? i heard that those OS... (1 Reply)
Discussion started by: I[X]ION
1 Replies
Login or Register to Ask a Question