authentications is required to run gvfsd-admin
时间: 2024-05-01 16:19:48 浏览: 100
Laravel开发-roleable .zip.zip
`gvfsd-admin` is a command-line tool in Linux that allows users to perform administrative tasks on remote file systems. To run `gvfsd-admin`, you need to have administrative privileges on your system.
To run `gvfsd-admin`, you can open a terminal and run it with `sudo` command, which will ask for your password:
```
sudo gvfsd-admin
```
Alternatively, you can add your user to the `fuse` group which allows users to run `gvfsd-admin` without `sudo`:
```
sudo usermod -a -G fuse username
```
After adding your user to the `fuse` group, you need to log out and log back in for the changes to take effect.
阅读全文