Add Packages OpenBSD

After instalation, almost everyone want to add extra packages Just simple step: Choose nearest mirror #export PKG_PATH=http://ftp.itb.ac.id/pub/OpenBSD/4.8/packages/i386/ #pkg_add -r mc The process will run automagic.  Now i have Midnight Commander stuff in my box.  

Alias in .bashrc

Maybe time consuming when using long long command like this #qemu-system-x86_64 -smp 2 -hda /home/mic/slack13.1.img -cdrom /home/mic/ISO/slackware-13.1-install-dvd.iso -m 1024 One way to shorten the command... with alias in .bashrc and .bash_profile ------------------- alias qemu=qemu-system-x86_64 ------------------- the next day I'll use #qemu -smp 2 -hda /home/mic/slack13.1.img -cdrom /home/mic/ISO/slackware-13.1-install-dvd.iso -m 1024 Still to long ? ------------------ alias … Lanjutkan membaca Alias in .bashrc