- 论坛徽章:
- 381
|
rhel官方的u盘制作方法:
1. Plug in your USB flash drive.
2. Find the device name for your USB flash drive. If the flash drive has a volume name, look up the
name in /dev/disk/by-label, or use findfs:
su -c 'findfs LABEL="MyLabel"' If the media does not have a volume name, or you do not know it, run dmesg after you connect
the USB flash drive. The device name, similar to /dev/sdc, appears in several lines towards the
end of the output.
3. Use the dd command to transfer the ISO image to the USB device:
dd if=path/image_name.iso of=device where path/image_name.iso is the ISO image file of the installation DVD that you downloaded
from the Red Hat Customer Portal and device is the USB flash drive. For example:
dd if=~/Download/RHEL6-Server-i386-DVD.iso of=/dev/sdc |
|