Arsip Blog

Menambah Harddisk Pada LVM Linux

LVM (Logical Volume Manager) is a software which uses physical devices abstract as PVs (Physical Volumes) in storage pools called VG (Volume Group). Whereas physical volumes could be a partition, whole SATA hard drives grouped as JBOD (Just a Bunch ODisks), RAID systems, iSCSI, Fibre Channel, eSATA etc.– http://wiki.gentoo.org/wiki/LVM

Artinya kira2 LVM memungkinkan kita mempunyai virtual harddisk yang dibangun dari beberapa harddisk atau partisi, yang mempunyai fleksibilitas dalam pengelolaan partisi. Dan hebatnya kita bisa melakukan ini on the fly dalam keadaan sistem sedang berjalan kecuali pada saat pemasangan fisik harddisk.

Jadi ceritanya kita sudah kehabisan space di partisi /opt dan ingin menambah space dengan harddisk baru.

Image

Dan berikut ini proses-prosesnya

Read the rest of this entry

Daftar “package group” di RedHat/CentOS/Fedora

Instalasi software dengan yum dilengkapi fasilitas untuk menginstall group software, misalnya yum groupinstall base.
Nah jika kita ada kebutuhan untuk menghapus package group misalnya Graphical Internet atau Applications/Multimedia. Kita perlu tahu daftar paket apa saja yang terinstall di system.

Untuk mengetahui packages group yang terinstall di system :

[root@fedoraku~]# yum grouplist
Loaded plugins: langpacks, presto, refresh-packagekit
Adding en_US to language list
Setting up Group Process
atomic | 1.9 kB 00:00
atomic/primary_db | 262 kB 00:03
dl2 | 3.7 kB 00:00
fedora/metalink | 9.6 kB 00:00
openvz-utils | 1.2 kB 00:00
openvz-utils/primary | 2.6 kB 00:00
updates/metalink | 6.4 kB 00:00
updates | 4.7 kB 00:00
updates/primary_db | 6.7 MB 00:08
dl2/group_gz | 406 kB 00:00
updates/group_gz | 420 kB 00:00
Installed Groups:
Administration Tools
Authoring and Publishing
Base
Chinese Support
Development Tools
Dial-up Networking Support
Directory Server
Editors
Educational Software
Electronic Lab
Engineering and Scientific
Ethiopic Support
FTP Server
Fonts
Games and Entertainment
Georgian Support
Graphical Internet
Graphics
Hardware Support
Input Methods
Java
KDE Software Compilation

Legacy Fonts
Mail Server
Milkymist
MySQL Database
Network Servers
Office/Productivity
Printing Support
Ruby
Server Configuration Tools
Sound and Video
System Tools
Text-based Internet
Web Server
Windows File Server
X Window System

Untuk menghapus paket group tersebut :

yum groupremove ‘Games and Entertainment’

Atau bisa juga bila menggunakan rpm

rpm -qa –qf “%-30{name} %-{group}\n” |sort -k2

Untuk menghapus paket group :

yum remove `rpm –group “Applications/Multimedia”`