Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 Windows 中有这个命令。我想将其更改为 Linux 命令。
net use O: \\10.2.6.72\aaa_bbb_1 /USER:corp\first.last "secret"
net use
O: \\10.2.6.72\aaa_bbb_1
corp\first.last
"secret"
如何将此代码编写为 Linux 命令?
mount.cifs //10.2.6.72/aaa_bbb_1 ~/drive-o -o username=domain\username,password=password
请注意,您家中的目录“drive-o”(安装点)必须存在。您可能必须在前面加上sudo.
sudo
它是哪个Linux?