Linux - NewbieThis Linux forum is for members that are new to Linux.
Just starting out and have a question?
If it is not in the man pages or the how-to's this is the place!
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
I am a newbie for Linux. I 'd like to know is that how could I check the unformated partition in Linux? What is the advantages of using LVM? Please kindly give me some knowledge or advice. Thanks and appreciated for you responses.
The advantage to LVM is it allows you to combine multiple disks or partitions into one Volume Group (VG) which you can break up into multiple Logical Volumes (LVs). This helps eliminate the size of a single disk or the relatively low number of partitions on a single disk from being an issue. Also LVs can have extents anywhere in the VG so it allows for easy resizing as compared to partitions. In the latter you'd typically have to readjust partitions beyond the one you're attempting to change in order to make room for it and allow it to remain continguous. In LVM you simply lvextend the LV to use up additional space (if available) from the VG. Also you don't have to reboot for LVM changes to take effect whereas often with partitioning you do.
to see all the disks you have on your linux system and paritions, use
#fdisk -l
if you have LVM setup then
#lvdisplay : displays logical volumes on your system
#pvdisplay : displays physical volumes on your system
#vgdisplay : displays volume groups on your system
You can check the unpartioned space in Unix through fdisk- l command. It will display with the complete details of the HD. If you want to make the unpartioned space into a drive use fdisk and then option M to create a new partion.
Thanks,
Chetan
Last edited by chetan_linux; 10-30-2009 at 06:40 AM.
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.