May 17, 2007
Several cities have a “community colocation project”, such as the San Francisco Community Colocation Project. I feel that Atlanta is in a perfect place to join this movement.
Community colocation projects (CCPs) are a non-profit datacenter for non-profity entities and individuals. This would be a great opportunity for an advancement of Open source projects and for the community in Atlanta and the metro area. Atlanta is the center of high-tech development for the Southeastern United States, and as such, should become a leader in the Open Source arena.
Thoughts and comments are appreciated.
1 Comment |
Administration, Computer, Linux |
Permalink
Posted by David
May 1, 2007
My desktop has a fair amount of storage (~700GB) and a lot of that is in use with multimedia and the like. For example, many of my favorite IPTV shows (Hak.5, DL.TV, etc.) find their home on my desktop computer.
In order to manage this flood of multimedia, I have a jfs filesystem mounted as /multimedia. Today I wanted to import about 10GB of music that “escaped” iTunes on my windows laptop. In doing so, I completely filled my existing /multimedia partition. Ordinarily, that would be a problem, wouldn’t it? Not with LVM
LVM, or Logical Volume Management, divides hard drive space up into a number of chunks (extents) that can be allocated (on-demand) to given virtual partition. The only downside is that the filesystem on the partition must support resizing. Most filesystems (well, most Linux filesystems) take to resizing larger very well. Some do not shrink as well.
So, to give myself another 20G of multimedia was a simple:
umount /multimedia
lvextend -L220G /dev/MainVG/VideoLV
mount -o resize /multimedia
Imagine trying to expand space on a 200G partition without LVM. I think most people would have just symlinked in more data, or split the data onto two partitions.
No Comments » |
Administration, Linux, Ubuntu |
Permalink
Posted by David