Happy New Year!
Jan 01
Happy New Year to all!
Just another Borap weblog
Nov 14
After ranking #1 in 2011 Worst Airports and #5 in 10 of the world’s most hated airports, please renovate, not only the airport, but also the staff and employees.
Thank you very much!
Oct 15
Department of Education Helps Prepare Students for Workforce
Teaching students to be software-dependent means “providing them with skills they can use after graduation”? Last time I checked, not all workplaces use MS Office 2010.
Oct 11
Crap resolution by some honorable congressman.
What is happening to the Philippines?!
Aug 16
Due to foreseen circumstances, we couldn’t watch the rest of the films in UP anymore. Huhu.
On a whim, Aica and I decided to watch (hopefully) all the films in this year’s Eiga Sai. At first, I planned to write a review for each film but I realized that I don’t know how to do it. Hehe. Instead, we will just rank the films according to our preferences.
Ranking:
To Watch:
I will update this post as soon as we watch another film.
More information on Eiga Sai 2011 can be found here.
Original Date: July 4, 2011
Aug 12
Blood, sweat, tears win Pinoy Dragon Warriors glory – but not POC recognition
POC: Dragon boat team needs to retire
No need for words…
Aug 10
Recently, I bought an external hard disk formatted with NTFS. Not that there is something really wrong with NTFS but I prefer using ext4.
First, I deleted the existing partition and created a new Linux partition using fdisk:
# fdisk /dev/sdb
Assuming /dev/sdb is the external hard disk. Use d to delete the partition and use n to create a new partition. 83 is the ID of the native Linux partition.
Them, I use mkfs.ext4 to format the partition with ext4:
# mkfs.ext4 /dev/sdb1
Note that mkfs.ext4 expects a partition as its argument.
Finally, I use tune2fs to adjust some parameters:
# tune2fs -m 0 /dev/sdb1 # tune2fs -L bakap01 /dev/sdb1
The -m option is for adjusting the percentage of reserved blocks. The reserved blocks are used by privileged processes which is by default 5% of the hard disk size. Since I’m using the external hard disk solely as a storage, I set this to 0 so I can also use those 5% for storage. The -L option is for labeling the filesystem.
Recent Comments