Linux安全弹出设备的小程序(c++)

由于使用了Ubuntu17 版本,发现有一些小问题,其中一个让我很诧异,当移动硬盘连接之后,只有Unmount的选项,没有Safe Remove的选项,这可真是可怕,于是自己动手写了一个小程序,有兴趣的可以看一下,过两天上github。

程序简介:

运行之后,列出已挂载的设备并输出名称,然后等待用户输入想要移除的设备名(部分即可,但是不要出现重的),输入之后,如果没有找到这个设备名,则输出错误信息。找到这个设备之后,调用udisksctl命令,首先unmount这个设备,等待三秒,(以防万一)然后给这个设备断电。程序中的who.log文件目录希望用户可以自己调整。更加细致的优化,等我有时间再说。

下面是源码

额#include 
#include 
#include
#include 
using namespace std;
char str[256];
string Mount_on;
string name;
int main() {
    remove("/home/allen/files/log/who.log");
    system("df >>/home/allen/files/log/who.log");
    cout<<"List the mounted devices :"<>name;
    while(fs1.getline(str,256))
    {
        string tmp=str;
        //cout< 
 

你可能感兴趣的:(linux,c++,弹出设备,shell)