現在、以下を使用して共有ドライブをマウントしています。
cifs -o "username=${USER},password=${PASSWORD},uid=$(id -u),gid=$(id -g)" //server-address/folder /mount/path/on/ubuntu
これで、端末の代わりにデスクトップショートカットを使用してこのコマンドを実行しようとしているので、次のようにしました。
- デスクトップを右クリックして、connecttoshareddrive.desktopという空のファイルを作成します。
次のファイルに貼り付けます。
[Desktop Entry] Name=Connect to shared drive Exec=cifs -o "username=${USER},password=${PASSWORD},uid=$(id -u),gid=$(id -g)" //server-address/folder /mount/path/on/ubuntu Terminal=true Type=Application
しかし、うまくいかず、デバッグする方法がわからないので、私が何を見逃しているのか疑問に思います。