Re-Partition filesystem -Linux vmware environment [closed]
My problem in other words is that ( I am using Vmware Vsphere environment ,I have created a new Linux machine "testdb" that should be similar to "preprod machine shows below" in filesystem structure only with different FS size, how can I modify/resize the FS layout to look like "preprod".
I need to re-structure newley created machine to be like
/ --> 40G
/dev/shm -->10G
/OraBackup --> 20G
/OraDBF --> 80G
[root@testDB ~]# df -h
Filesystem Size Used Avail Use% Mounted on
/dev/mapper/vg_testdb-lv_root
50G 2.1G 45G 5% /
tmpfs 8.7G 0 8.7G 0% /dev/shm
/dev/sda1 477M 78M 370M 18% /boot
/dev/mapper/vg_testdb-lv_home
90G 56M 85G 1% /home
and I want it to look like:
[oracle@preprod ~]$ df -h
Filesystem Size Used Avail Use% Mounted on
/dev/sda2 89G 21G 64G 25% /
tmpfs 8.9G 7.0G 1.9G 79% /dev/shm
/dev/sdc1 148G 37G 104G 27% /OraBackup
/dev/sdb1 118G 55G 58G 49% /OraDBF
filesystems
closed as unclear what you're asking by Rui F Ribeiro, Mr Shunz, Christopher, Jeff Schaller, roaima Jan 18 at 16:35
Please clarify your specific problem or add additional details to highlight exactly what you need. As it's currently written, it’s hard to tell exactly what you're asking. See the How to Ask page for help clarifying this question. If this question can be reworded to fit the rules in the help center, please edit the question.
add a comment |
My problem in other words is that ( I am using Vmware Vsphere environment ,I have created a new Linux machine "testdb" that should be similar to "preprod machine shows below" in filesystem structure only with different FS size, how can I modify/resize the FS layout to look like "preprod".
I need to re-structure newley created machine to be like
/ --> 40G
/dev/shm -->10G
/OraBackup --> 20G
/OraDBF --> 80G
[root@testDB ~]# df -h
Filesystem Size Used Avail Use% Mounted on
/dev/mapper/vg_testdb-lv_root
50G 2.1G 45G 5% /
tmpfs 8.7G 0 8.7G 0% /dev/shm
/dev/sda1 477M 78M 370M 18% /boot
/dev/mapper/vg_testdb-lv_home
90G 56M 85G 1% /home
and I want it to look like:
[oracle@preprod ~]$ df -h
Filesystem Size Used Avail Use% Mounted on
/dev/sda2 89G 21G 64G 25% /
tmpfs 8.9G 7.0G 1.9G 79% /dev/shm
/dev/sdc1 148G 37G 104G 27% /OraBackup
/dev/sdb1 118G 55G 58G 49% /OraDBF
filesystems
closed as unclear what you're asking by Rui F Ribeiro, Mr Shunz, Christopher, Jeff Schaller, roaima Jan 18 at 16:35
Please clarify your specific problem or add additional details to highlight exactly what you need. As it's currently written, it’s hard to tell exactly what you're asking. See the How to Ask page for help clarifying this question. If this question can be reworded to fit the rules in the help center, please edit the question.
1
I don't think it's directly possible to make a virtual machine look like a non-virtual machine. Usually you don't have direct access to the drives/dev/sdband/dev/sdc. You might be able to add partitions but the way to do that would partly depend on which type of virtual machine your using.
– couling
Jan 17 at 14:19
That's the difference between traditional partitions and LVM.
– Christopher
Jan 17 at 15:55
I typically don't use partitions in virtual machines, they see a full/dev/sdaas their single and only hard disk.
– peterh
Jan 20 at 8:12
add a comment |
My problem in other words is that ( I am using Vmware Vsphere environment ,I have created a new Linux machine "testdb" that should be similar to "preprod machine shows below" in filesystem structure only with different FS size, how can I modify/resize the FS layout to look like "preprod".
I need to re-structure newley created machine to be like
/ --> 40G
/dev/shm -->10G
/OraBackup --> 20G
/OraDBF --> 80G
[root@testDB ~]# df -h
Filesystem Size Used Avail Use% Mounted on
/dev/mapper/vg_testdb-lv_root
50G 2.1G 45G 5% /
tmpfs 8.7G 0 8.7G 0% /dev/shm
/dev/sda1 477M 78M 370M 18% /boot
/dev/mapper/vg_testdb-lv_home
90G 56M 85G 1% /home
and I want it to look like:
[oracle@preprod ~]$ df -h
Filesystem Size Used Avail Use% Mounted on
/dev/sda2 89G 21G 64G 25% /
tmpfs 8.9G 7.0G 1.9G 79% /dev/shm
/dev/sdc1 148G 37G 104G 27% /OraBackup
/dev/sdb1 118G 55G 58G 49% /OraDBF
filesystems
My problem in other words is that ( I am using Vmware Vsphere environment ,I have created a new Linux machine "testdb" that should be similar to "preprod machine shows below" in filesystem structure only with different FS size, how can I modify/resize the FS layout to look like "preprod".
I need to re-structure newley created machine to be like
/ --> 40G
/dev/shm -->10G
/OraBackup --> 20G
/OraDBF --> 80G
[root@testDB ~]# df -h
Filesystem Size Used Avail Use% Mounted on
/dev/mapper/vg_testdb-lv_root
50G 2.1G 45G 5% /
tmpfs 8.7G 0 8.7G 0% /dev/shm
/dev/sda1 477M 78M 370M 18% /boot
/dev/mapper/vg_testdb-lv_home
90G 56M 85G 1% /home
and I want it to look like:
[oracle@preprod ~]$ df -h
Filesystem Size Used Avail Use% Mounted on
/dev/sda2 89G 21G 64G 25% /
tmpfs 8.9G 7.0G 1.9G 79% /dev/shm
/dev/sdc1 148G 37G 104G 27% /OraBackup
/dev/sdb1 118G 55G 58G 49% /OraDBF
filesystems
filesystems
edited Jan 20 at 7:19
Hashim M.
asked Jan 17 at 14:04
Hashim M.Hashim M.
62
62
closed as unclear what you're asking by Rui F Ribeiro, Mr Shunz, Christopher, Jeff Schaller, roaima Jan 18 at 16:35
Please clarify your specific problem or add additional details to highlight exactly what you need. As it's currently written, it’s hard to tell exactly what you're asking. See the How to Ask page for help clarifying this question. If this question can be reworded to fit the rules in the help center, please edit the question.
closed as unclear what you're asking by Rui F Ribeiro, Mr Shunz, Christopher, Jeff Schaller, roaima Jan 18 at 16:35
Please clarify your specific problem or add additional details to highlight exactly what you need. As it's currently written, it’s hard to tell exactly what you're asking. See the How to Ask page for help clarifying this question. If this question can be reworded to fit the rules in the help center, please edit the question.
1
I don't think it's directly possible to make a virtual machine look like a non-virtual machine. Usually you don't have direct access to the drives/dev/sdband/dev/sdc. You might be able to add partitions but the way to do that would partly depend on which type of virtual machine your using.
– couling
Jan 17 at 14:19
That's the difference between traditional partitions and LVM.
– Christopher
Jan 17 at 15:55
I typically don't use partitions in virtual machines, they see a full/dev/sdaas their single and only hard disk.
– peterh
Jan 20 at 8:12
add a comment |
1
I don't think it's directly possible to make a virtual machine look like a non-virtual machine. Usually you don't have direct access to the drives/dev/sdband/dev/sdc. You might be able to add partitions but the way to do that would partly depend on which type of virtual machine your using.
– couling
Jan 17 at 14:19
That's the difference between traditional partitions and LVM.
– Christopher
Jan 17 at 15:55
I typically don't use partitions in virtual machines, they see a full/dev/sdaas their single and only hard disk.
– peterh
Jan 20 at 8:12
1
1
I don't think it's directly possible to make a virtual machine look like a non-virtual machine. Usually you don't have direct access to the drives
/dev/sdb and /dev/sdc. You might be able to add partitions but the way to do that would partly depend on which type of virtual machine your using.– couling
Jan 17 at 14:19
I don't think it's directly possible to make a virtual machine look like a non-virtual machine. Usually you don't have direct access to the drives
/dev/sdb and /dev/sdc. You might be able to add partitions but the way to do that would partly depend on which type of virtual machine your using.– couling
Jan 17 at 14:19
That's the difference between traditional partitions and LVM.
– Christopher
Jan 17 at 15:55
That's the difference between traditional partitions and LVM.
– Christopher
Jan 17 at 15:55
I typically don't use partitions in virtual machines, they see a full
/dev/sda as their single and only hard disk.– peterh
Jan 20 at 8:12
I typically don't use partitions in virtual machines, they see a full
/dev/sda as their single and only hard disk.– peterh
Jan 20 at 8:12
add a comment |
0
active
oldest
votes
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
1
I don't think it's directly possible to make a virtual machine look like a non-virtual machine. Usually you don't have direct access to the drives
/dev/sdband/dev/sdc. You might be able to add partitions but the way to do that would partly depend on which type of virtual machine your using.– couling
Jan 17 at 14:19
That's the difference between traditional partitions and LVM.
– Christopher
Jan 17 at 15:55
I typically don't use partitions in virtual machines, they see a full
/dev/sdaas their single and only hard disk.– peterh
Jan 20 at 8:12