Sponsored Content
Operating Systems Linux Red Hat Increasing size of root partition Post 302965876 by saurabh84g on Thursday 4th of February 2016 02:06:18 AM
Old 02-04-2016
suppose if ever need to increase
add additional space in root volume group
and increase the respective LV size
This User Gave Thanks to saurabh84g For This Post:
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Increasing a directory size

Hello all Can someone tell me I am running a script and the outputs directory is too small to contain the newly created file as a result of this script. How can I increase the directory size? Thanks (9 Replies)
Discussion started by: jonest
9 Replies

2. HP-UX

Help on increasing fs size

Hi Experts, I am not sure whether my question should be in this thread or some other one. I am using HP Tru64 system. Currently one of my filesystem /others is almost full. I need to know the exact commands to increase this filesystem. Please show me how to check for free partitions and add... (5 Replies)
Discussion started by: kingsto88
5 Replies

3. Solaris

Increasing size of Root Partition

Dear all, How can we increase the space for the root partition, ensuring that there is no loss of data in Solaris 9. How can the growfs command be utilized in this case. Thanks. (7 Replies)
Discussion started by: asadlone
7 Replies

4. 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

5. UNIX for Dummies Questions & Answers

Increasing the Size of the Samba Partition

Hi, Is there any command to increase the size of the samba partition when the samba share is online?? Regards Arun (1 Reply)
Discussion started by: Arun.Kakarla
1 Replies

6. Solaris

how to increase size of the root partition

Hi we have a sunfire v880 server . we have a problem with root partion it showing 90% full. so anyone can help me how to increase the size of that partion. NOTE: It is not in veritas & SVM control. Regards prakash (6 Replies)
Discussion started by: pshelke
6 Replies

7. Solaris

how to expand root partition size?

Dear All For installing an application that will seat under /opt , I need to increase my root partition size (/c0t0d0s0) . Can you please let me know how can I increase this partition size? Thank you (10 Replies)
Discussion started by: hadimotamedi
10 Replies

8. Solaris

increasing interlace size

Hi All, I have got a RAID 5 SVM in my Solaris Box. Recently we had performance issues with it. So SUN has told us to increase the interlace size to 128k. how can we do it so that we have to recreate the RAID 5. ALso guide what are all the pre cautions that we need to take before doing... (1 Reply)
Discussion started by: jegaraman
1 Replies

9. Solaris

increasing root / partition

Dear all, I have a root partition which is 20 G in size. I have var and /tmp as seperate file systems. But this 20 G of root is not sufficeint. I want to increase the size of the / partition. Is there any way to increase with out down time. my df -k output is Filesystem ... (4 Replies)
Discussion started by: jegaraman
4 Replies

10. Red Hat

Increasing Root File Partition

Dear all , We have a root partition ( / ) in linux which has a very less space . And we need to increase the size of the root partition . There are no space in other file systems , so that i can take it from there and increase it. Just wanted to know if we get some SAN space , can we... (2 Replies)
Discussion started by: jegaraman
2 Replies
NEWFS_APFS(8)						    BSD System Manager's Manual 					     NEWFS_APFS(8)

NAME
newfs_apfs -- construct a new APFS volume SYNOPSIS
newfs_apfs [-o options] [-i] [-b block-size] [-s volume-size | -q volume-quota -r volume-reserve] [-v volume-name] [-E | -P] [-R role] special newfs_apfs -C [-o options] [-i] [-b block-size] special newfs_apfs -A [-o options] [-i] [-s volume-size | -q volume-quota -r volume-reserve] [-v volume-name] [-E | -P] [-R role] special newfs_apfs [-o options] [-i] [-s volume-size | -q volume-quota -r volume-reserve] [-v volume-name] [-E | -P] [-R role] special DESCRIPTION
The newfs_apfs command creates a new APFS container on the device and/or adds a new APFS volume to a container. The first, more traditional, form of newfs_apfs formats the given special as a container with a single volume inside it. The second form creates a container only, with no volumes. The third form is used to non-destructively add additional volumes inside an existing container. The fourth form reformats an existing volume by effectively deleting and re-creating it; in this usage (only) special indicates a volume inside the container. The special parameter should be the path to a disk device node, such as /dev/disk1s2, although can be specified as simply disk1s2. The options are as follows: -b block-size The block size of the container. All volumes within this container will use this block size. The default is 4096 bytes. -o options Additional (undocumented) formatting options. -i Creates a case-insensitive volume. This is the default on macOS. -e Creates a case-sensitive volume. -U uid The UID of the root volume. Defaults to current UID. -G uid The GID of the root volume. Defaults to current GID. -q volume-quota Places a quota, or upper limit, on the size of the volume. If specified then no more than this much space will be used for its content, even if there is additional free space in the container; however it is not guaranteed that the entire quota will always be available. By default a volume has no assigned quota. -r volume-reserve Reserves an amount of space for this volume. If specified it is guaranteed that at least this much space will be available for its content; the volume may also grow beyond this size (up to its quota limit, if any) if additional free space in the container. By default a volume has no assigned reserve. -s volume-size The fixed size of the volume. If specified then the volume is guaranteed that exactly this much space will be available for its content. Setting -s is equivalant to setting both -q and -r to that same value. If not specified then the available space is dynamic and determined by the usage of other volumes within the same container (space-sharing). -v volume-name The name of the volume. The default is "untitled". -A Add a volume to an existing container. There is a limit to the number of volumes that may reside inside a container. -C Create a container only, with no volume. newfs_apfs -A may be used later to format volumes inside that container. -E Enable volume encryption. The volume metadata is also encrypted. -F special Format as a Fusion device (with the secondary device specified here). -R role Set the OS "role" of the volume within the container. The role may be one of the following characters: b PreBoot - will contain information used to help boot System volumes r Recovery - will contain the RecoveryOS v VM - will contain swapfiles and hibernate image DIAGNOSTICS
The newfs_apfs utility exits 0 on success, and >0 if an error occurs. EXAMPLES
The following formats a new container and a volume named "Macintosh" on the /dev/disk1s2 device: newfs_apfs -v Macintosh disk1s2 And then this adds another volume, named "Data" with a fixed size of 100 GB, to that container: newfs_apfs -v Data -s 100g -A disk1s2 SEE ALSO
mount_apfs(8) HISTORY
The newfs_apfs utility first appeared in OS X 10.12. Mac OS X September 15, 2015 Mac OS X
All times are GMT -4. The time now is 04:39 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy