博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
使用USB设备安装Linux系统的方法(制作U盘启动安装Linux)
阅读量:5883 次
发布时间:2019-06-19

本文共 1234 字,大约阅读时间需要 4 分钟。

hot3.png

Create a bootable USB stick on Linux

  1. Download Witsbits ISO image (as described in the previous step) and save it to your hard drive.

  2. Insert an USB stick with at least 1GB of space.

  3. Identify the device name of your USB stick. In a terminal, execute:

    dmesg | tail -n 20

    Your terminal will print a bunch of information, you should find a row similar to:

    [621674.412655] sd 9:0:0:0: [sdX] 7821312 512-byte logical blocks: (4.00 GB/3.72 GiB)

    Look for three letters in brackets (sdXin this example), that's the device name of your USB stick.

    Please be careful when you identify the device name, any data on the device will be completely overwritten in the next steps.

  4. Unmount the USB stick. In a terminal, execute (replacesdXwith the device name of your USB stick):

    sudo umount /dev/sdX

    Note: This step is important, it disables the write buffer so the USB stick can be safely unplugged after you have completed the next step.

  5. Finally, write the ISO image to the USB stick. In a terminal, execute (replacesdXwith the device name of your USB stick):

    sudo dd if=/path/to/witsbits_worker_os.iso of=/dev/sdX bs=1M

    Wait for this step to finish, it takes 1-3 minutes, and then unplug the USB stick.

转载于:https://my.oschina.net/lionel45/blog/174377

你可能感兴趣的文章
HTML 字符实体
查看>>
质数因子
查看>>
在NVIDIA Quadro NVS 295 显卡上装redhat 黑屏 无信号输入
查看>>
Announcing the new Office 365 admin center
查看>>
小白经营网站的前前后后
查看>>
Spring MVC 教程,快速入门,深入分析——如何实现全局的异常处理
查看>>
单用户模式修改密码
查看>>
微信小程序帮你赚到第一桶金
查看>>
mac下安卓开发环境搭建
查看>>
学习之华丽的注册按钮➕倒计时
查看>>
Vim 中使用 OmniComplete 为 C/C++ 自动补全(部分增加)
查看>>
初识Hadoop
查看>>
Oracle之内存结构(SGA、PGA)
查看>>
Binary Search Tree IN C
查看>>
jquery之trigger()
查看>>
Spring源码浅析之事务(四)
查看>>
我的友情链接
查看>>
[APM] 2个实例+5个维度解读APM技术
查看>>
Jndi配置数据源
查看>>
华为交换机端口链路类型简析——access、trunk、hybrid
查看>>