Vimal Sudhan
A PHP developer's weblog
A PHP developer's weblog
Dec 12th
Development version of CodeIgniter 2.0 is now available in BitBucket (no stable or RC yet!). Last week, I tested all my apps and found out what are changes to be done for your app to work in CI 2.0
Read the rest of this entry »
Dec 11th
Want to create bootable usb sticks or pen drives? There is an easy way to do it, by using dd command.
dd stands for Data Description which is a low level copying command that does copying through raw data. By means of raw data, it has the power to clone the boot tables found in your iso cd/dvd images.
Syntax:
dd if=[source_iso] of=[device]
Just be careful while specifying input and output parameters! if is INPUT and of is OUTPUT. This command is nicknamed ‘Data Destroyer’, reversing the parameters will result in loss of some or all data in disk.
Example
dd if=~/Download/boot.iso of=/dev/sdc
You can use findfs command to know your usb device name
findfs LABEL="DEVICE_LABEL"
I have already cautioned you. Please be careful while using this dd command. Be feared of ‘Data Destroyer’
Dec 7th
Recent Comments