Chinaunix首页 | 论坛 | 博客
  • 博客访问: 716298
  • 博文数量: 235
  • 博客积分: 4309
  • 博客等级: 中校
  • 技术积分: 2325
  • 用 户 组: 普通用户
  • 注册时间: 2011-01-17 11:25
个人简介

If you don\\\\\\\\\\\\\\\'t wanna do it, you find an EXCUSE; if you do, you\\\\\\\\\\\\\\\'ll find a WAY :-)

文章分类

全部博文(235)

文章存档

2014年(3)

2013年(2)

2012年(31)

2011年(199)

分类: BSD

2011-02-15 17:55:03

 
Writing an IMG File to Flash media
From PC-BSD Wiki


If you selected to download a "Boot only USB for network & internet installs" .img file, you can write the image file to a flash card or removable USB drive using the built-in dd command line utility on a BSD or Linux command system. On a FreeBSD system, the superuser can use this command to write the specified image in the current directory to the first plugged in USB device:

dd if=PCBSD8.1-x86-USB-bootonly.img of=/dev/sdb bs=5k 81920+0 records in 81920+0 records out 419430400 bytes transferred in 194.226042 secs (2159496 bytes/sec)

Note that a full image will take much longer to transfer:

dd if=PCBSD8.2-RC2-x86-USB.img of=/dev/sdb bs=5k 778240+0 records in 778240+0 records out 3984588800 bytes transferred in 2106.545470 secs (1891528 bytes/sec)

When using the dd command:

  • if= refers to the input file; in our case, the name of the file to be written
  • of= refers to the output file; in our case, the device name of the flash card or removable USB drive. You may have to increment the number in the name if it is not the first USB device. On Linux, use "/dev/sda" to refer to the first USB device. On a MAC OSX system, insert the USB device, use df to see the name of the device, unmount it, and use the raw name of the device. For example, if it shows as /dev/disk1s1, refer to /dev/rdisk1".
  • bs= refers to the block size

To burn the .img file on a Windows system, you can use --simply select the .img file as the source and the USB drive as the destination.

Once the image is written, you can boot from the removable device and proceed with the . If you are using the boot-only img file, you will also need to refer to the section on as this image requires an Internet connection to download the rest of the files needed to complete the installation of PC-BSD.

Note: if the system does not boot from the removable device, check the boot order in your system BIOS.

阅读(685) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~