For the things in life which make me glad I'm not dead yet.
Linux – Partitions & Filesystems
Creating a new partition
/sbin/fdisk /dev/hda
In fdisk, to create a new partition, type n and follow the prompts, use the w command to write the changes to the partition table when complete.
Restart the virtual machine & create a file system on the new partition:
/sbin/mkfs -t ext3 /dev/hda3 mkdir /mnt/data mount /dev/hda3 /mnt/data
Edit: /etc/fstab:
/dev/hda3 /mnt/data ext3 defaults 0 0
Source: download.parrallels.com
Moving a directory into a new partition
mkdir /mnt/newhome mount -t ext3 /dev/hda5 /mnt/newhome cd /home/ find . -depth -print0 | cpio --null --sparse -pvd /mnt/newhome/ umount /mnt/newhome mv /home /old_home mkdir /home mount /dev/hda5 /home
Source: embraceubuntu.com
Expand the filesystem
lvextend -L +2G /dev/basevg/opt resize2fs /dev/basevg/opt df -m
| Print article | This entry was posted by Dave on September 13, 2011 at 4:46 pm, and is filed under Snippets. Follow any responses to this post through RSS 2.0. You can leave a response or trackback from your own site. |