格式化为ext后无法安装可移动驱动器

时间:2016-06-10 21:58:34

标签: linux formatting mount

我正在尝试在适用于Chrome操作系统的USB记忆棒上安装Crouton。

  

程序

我做的第一件事就是卸下了:

#center-wrapper {
  margin: auto;
  width: 60%;
  padding-top: 50px;
}
#form-wrapper{
  border-right: 2px dashed gray;
}
#form-wrapper, #imgs {
  width: 49.5%;
  float: left;
  height: 200px;
  padding-top: 50px;
  text-align: center;
}
  #form-wrapper input{
  border: none;
}
#form-wrapper label{
  border-bottom: 1px solid;
}
button {
  border: none;
  background: none;
}

然后我格式化为ext:

sudo umount /dev/sda1

然后我尝试通过运行命令再次安装:

sudo mkfs.ext4 /dev/sda1
  

错误

sudo mount /dev/sda1

1 个答案:

答案 0 :(得分:1)

我不知道你正在使用的Linux风格。

Mount似乎失败了,并在fstab文件(/ etc / fstab)中查找了安装选项。

你可以试试。

~]# mkdir /mount/point
~]# mount -t ext4 /dev/device /mount/point

OR

永久挂载添加到fstab。参考 /etc/fstab overview

一切顺利