Sponsored Content
Operating Systems HP-UX Increasing space in file system Post 302843025 by vbe on Sunday 11th of August 2013 05:56:23 PM
Old 08-11-2013
Since we dont know your version and architecture, the answer will be general:
In order to be able to reduce file systems easily (online that is ..) you would have to have onlineJFS installed, and reducing a filesystem so you can increase size of another can be done only if both filesystems are in the same volume group.
 

10 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

Increasing filesystem space

Now, i know a ufs file system can be increased using mkfs but hwo do I take space from a file system and add it to another file system? at my job here, that seems to be possible because I see request on it almost every day. what is the exact command to do this and does the system need to be... (1 Reply)
Discussion started by: TRUEST
1 Replies

2. UNIX for Advanced & Expert Users

increasing file system

Hi, on /dev1 I have 50Gb, on /dev2 I have 5Gb. How can I give the 50Gb to /dev2 and give back 5Gb to /dev1. Many thanks. PS : OS is AIX (1 Reply)
Discussion started by: big123456
1 Replies

3. UNIX for Dummies Questions & Answers

increasing ufs file system size in solaris

How do i increase the filesystem size on a root partition? There is a slice with root on it, its like 2 gigs and nothing else is broken out except home. I want to increase root filesystem (and slice) and break out /usr and /var. This is solaris 9, only has solaris volume manager on it. ... (6 Replies)
Discussion started by: BG_JrAdmin
6 Replies

4. Solaris

Increasing File system

Dear all.... I want to increase the file system /u01 from 5 GB to 8GB. So what would be the command... Thanx in Advance.... (1 Reply)
Discussion started by: rosyblue
1 Replies

5. UNIX for Dummies Questions & Answers

Best ways of increasing space on a partition

Hi, On one of our solaris servers, the root partition has filled up,(it was poorly sized in the first place), Does anyone have any advice about the best way to add space to a partition. I'm sure I've read how to do this somewhere before but just can't remember...:( A colleague has suggested... (1 Reply)
Discussion started by: kenny123m
1 Replies

6. UNIX for Dummies Questions & Answers

Increasing swap space

I searched the archives first, but found that there are alot of mixed answers on whether swap space can or can not be increased. Some postings said swap space can be increased using the swap or growfs commands while other postings said you can not increase the permanent size of the swap space. ... (1 Reply)
Discussion started by: Kevin1166
1 Replies

7. Solaris

increasing file system size

Hi Can anyone explain me how to increase the filesystem size. We can do it when the system is running? It needs an reboot? (8 Replies)
Discussion started by: rogerben
8 Replies

8. Solaris

Increasing allocated space to a mount - possible?

Hey guys, I am somewhat new to Solaris - and very new when it comes to mounts. My problem is that when I installed Solaris, I allocated way too little diskspace to my / mount (it first became obvious now, however, because of new needs). bash-3.00# df -h Filesystem size ... (25 Replies)
Discussion started by: brightstorm
25 Replies

9. Linux

Increasing total data size per file system request for block drivers

Hi All, I am writing a block driver for a 2GB SD card where i get the total amount of data per request as follows: struct request *req; uint card_addr,total_bytes; struct request_queue *rq = BlkDev->queue; req = elv_next_request(rq); .. .. card_addr = req->sector*512;... (1 Reply)
Discussion started by: amio
1 Replies

10. Solaris

Help with increasing file system size in Sun OS 5.9

Hi, I have recently taken up to support these SunOS 5.9 sun4u sparc SUNW,Sun-Fire-V240 boxes and got a request to increase the size of /backup01 as its getting filled up quickly and can't play much on it as these are production servers. As I have no idea about how to do this, can anyone let me... (0 Replies)
Discussion started by: phanidhar6039
0 Replies
E2FSADM(8)						      System Manager's Manual							E2FSADM(8)

NAME
e2fsadm - ext2 filesystem / LVM administration SYNOPSIS
e2fsadm [-d|--debug] [-h|--help] {[-l|--extents] [+|-]LogicalExtentsNumber|" [-L|--size] [+|-]LogicalVolumeSize[kKmMgGtT]} [-n|--nofsck] [-v|--verbose] [--version] LogicalVolumePath DESCRIPTION
e2fsadm allows resizing of a logical volume containing a mounted or unmounted ext2 filesystem. For unmounted filesystems it can extend the logical volume and grow the filesystem using resize2fs(8) or ext2resize(8), or shrink the filesystem and then reduce the logical volume afterwards. For mounted filesystems it can extend the logical volume and grow the filesystem using ext2online(8). OPTIONS -d, --debug Enables additional debugging output (if compiled with DEBUG). -h, --help Print a usage message on standard output and exit successfully. -l, --extents [+|-]LogicalExtentsNumber Resize the filesystem/logical volume to or by the number of logical extents. If you use + or - then the number will be relative the th current size of the logical volume, otherwise the volume will be resized to LogicalExtentsNumber extents. -L, --size [+|-]LogicalVolumeSize[kKmMgGtT] Resize the filesystem/logical volume to or by the given size. If you use + or - then the number will be relative the the current size of the logical volume, otherwise the volume will be resized to LogicalVolumeSize. A size suffix of K for kilobytes, M for megabytes, G for gigabytes or T for terabytes can be used. -n, --nofsck Avoid the filesystem check before the resize operation. A filesystem check is mandatory before resize2fs(8), but is optional for ext2resize(8), and is not allowed for ext2online(8) because the filesystem is mounted. Useful if a check has been done before starting e2fsadm. -t, --test Test run without real resizing. -v , --verbose Gives verbose runtime information about e2fsadm's activities. --version Print version number and exit successfully. DIAGNOSTICS
e2fsadm calls e2fsck(8), lvextend(8), lvreduce(8), and resize2fs(8), ext2resize(8), or ext2online(8) internally. By default, for mounted filesystems e2fsadm will look for resize2fs first, and failing that it will look for ext2resize. For mounted filesystems it will try to run ext2online. It returns an exit code of 0 for success or > 0 for error: 1 the filesystem size is invalid 2 the logical volume name is missing 3 the logical volume name is invalid 4 the logical volume doesn't exist 5 an error occured while reading the VGDA 6 an error occured while resizing the filesystem 7 /proc/mounts is not available 8 the filesystem is mounted 9 the filesystem type is not ext2 10 the e2fsck(8) command is missing or was not found 11 resize2fs(8) is missing or was not found 12 unable to run e2fsck(8) 13 unable to run resize2fs(8) 14 an error occured while reading the logical volume 15 logical volume size error 16 lvextend(8) is missing or was not found 17 unable to run lvextend(8) 18 lvreduce(8) is missing or was not found 19 unable to run lvreduce(8) 95 driver/module not in kernel 96 invalid I/O protocol version 97 error locking logical volume manager 98 invalid lvmtab (run vgscan(8)) 99 invalid command line ENVIRONMENT VARIABLES
E2FSADM_RESIZE_CMD Command to call instead of resize2fs(8). E2FSADM_RESIZE_OPTS Options for the EXT2_RESIZE_CMD. E2FSADM_ONLINE_CMD Command to call instead of ext2online(8). E2FSADM_ONLINE_OPTS Options for the EXT2_ONLINE_CMD. SEE ALSO
lvm(8), lvcreate(8), lvextend(8), lvreduce(8), resize2fs(8), ext2resize(8), ext2online(8) AUTHOR
Heinz Mauelshagen <Linux-LVM@Sistina.com> Heinz Mauelshagen LVM TOOLS E2FSADM(8)
All times are GMT -4. The time now is 04:34 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy