安装单声道后在哪里可以找到单声道服务2?
Where to find mono-service2 after mono installed?
我已经在 ubuntu 16.04 上安装了单声道作为文档:
http://www.mono-project.com/download/#download-lin-ubuntu
但我不能运行 mono-service2
系统提示找不到
我运行
查找/-name mono-service2
得到error:find:./run/user/1000/gvfs:没有权限
那么我该如何使用 mono-service2
你得到这个错误是因为你没有 运行 找到具有 sudo 属性的命令
像这样尝试只搜索可执行文件
sudo find / -executable -name mono-service2
否则,您也可以尝试
whereis mono-service2
或
which mono-service2
我已经在 ubuntu 16.04 上安装了单声道作为文档:
http://www.mono-project.com/download/#download-lin-ubuntu
但我不能运行 mono-service2
系统提示找不到
我运行
查找/-name mono-service2
得到error:find:./run/user/1000/gvfs:没有权限
那么我该如何使用 mono-service2
你得到这个错误是因为你没有 运行 找到具有 sudo 属性的命令
像这样尝试只搜索可执行文件
sudo find / -executable -name mono-service2
否则,您也可以尝试
whereis mono-service2
或
which mono-service2