博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
阿里云扩充云盘遇到的坑
阅读量:5255 次
发布时间:2019-06-14

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

阿里云官方文档:https://help.aliyun.com/document_detail/25452.html?spm=5176.2020520101.0.0.19ac4df5vlFqjH

解决 umount /dev/vdb1 报错的问题

(In some cases useful info about processes that use         the device is found by lsof(8) or fuser(1))

  fuser -m /dev/vdb1

/dev/vdb1:          26086c
没有想到还真的有个进程在使用。
只能查查是和什么程序了:
   ps -ef |grep 26086c

root      7347  4480  0 15:29 pts/2    00:00:00 grep 26086c[root@pan Desktop]# ps -ef |grep 26086root      7457  4480  0 15:29 pts/2    00:00:00 grep 26086root     26086     1  0 13:40 pts/1    00:00:09 konqueror http://www.vmware.com/info?id=520

杀死全部进程

  kill -9 26086
嘻嘻~再umount的时候可以了。
  umount /dev/vdb1
按文档执行挂载操作

最后设置开机自动挂载

编辑/etc/fstab文件,再最后面添加

转载于:https://www.cnblogs.com/mr-amazing/p/9755887.html

你可能感兴趣的文章
Visual Studio Code 打开.py代码报Linter pylint is not installed解决办法
查看>>
Python 数据类型
查看>>
S5PV210根文件系统的制作(一)
查看>>
centos下同时启动多个tomcat
查看>>
slab分配器
查看>>
数据清洗
查看>>
【读书笔记】C#高级编程 第三章 对象和类型
查看>>
针对sl的ICSharpCode.SharpZipLib,只保留zip,gzip的流压缩、解压缩功能
查看>>
【转】代码中特殊的注释技术——TODO、FIXME和XXX的用处
查看>>
【SVM】libsvm-python
查看>>
C++循环单链表删除连续相邻重复值
查看>>
Jmeter接口压力测试,Java.net.BindException: Address already in use: connect
查看>>
ASP.NET使网页弹出窗口不再困难
查看>>
Leetcode Balanced Binary Tree
查看>>
Leetcode 92. Reverse Linked List II
查看>>
windown快速安装xgboost
查看>>
Linux上安装Libssh2
查看>>
九.python面向对象(双下方法内置方法)
查看>>
go:channel(未完)
查看>>
[JS]递归对象或数组
查看>>