• images/carousel/car_1.png
  • images/carousel/car_2.png
  • images/carousel/car_3.png
  • images/carousel/car_4.png
  • images/carousel/car_5.png
  • images/carousel/car_6.png
  • images/carousel/car_7.png
  • images/carousel/car_8.png
jonesdykstra
Scammers are using Pintrest to direct users to promotional websites or even send premium texts from the cell phone. ow.ly/aX2jK

19 hours ago via HootSuite

jonesdykstra
A techo-legal article on the NY Court of Appeals ruling in People v. Kent that may create a loop-hole for pedophiles. ow.ly/aVJ8O

2 days ago via HootSuite

jonesdykstra
Apple is reaching out to Kaspersky Lab to get assistance on securing OS X against the recent surge in malware. ow.ly/aTEH4

3 days ago via HootSuite

 
Facebook Image

The 12 Days of dd: Day Two

On the second day of dd, we learn about floppies and dd!

Here are the basics for copying a floppy disk. Floppy disks are great for practicing on. No chance of hurting your system.

The basic command is:

# dd if=/dev/fd0 of=/storage/floppy.img

The example assumes that your floppy drive is /dev/fd0 and that you have a directory on your system named /storage that is suitable for copy an image into. Now for the specifics of what just happened.

if - Specifies the input file to be read

of - Specifies the output file to be written

Writing the image back to another floppy disk goes like this:

# dd if=/storage/floppy.img of=/mnt/floppy

Doesn't get much simpler than that.

On the third day of dd, how to copy data from a hard drive with dd.