LVM Reference

/

There are already some LVM tutorials out there and I don’t want to write another one. Most of the time you just need a reference for the most common commands. create Physical Volume (PV) pvcreate /dev/sdb Volume Group (LV) vgcreate vg_data /dev/sdb Logical Volume (LV) lvcreate –L 10G –n lv_data01 vg_data mkfs.ext3 /dev/vg_data/lv_data01 mount /dev/vg_data/lv_data01 Read More

Mac OS settings

/

Some settings can only be changed with the GUI. There are already some sites which are listing a lot of them. Here is another collection from useful commands that I’ve collected Mac OS X # Enable full keyboard access for all controls (e.g. enable Tab in modal dialogs) defaults write NSGlobalDomain AppleKeyboardUIMode -int 3 # Disable Read More