I have this command in Windows. I want to change it to a Linux command.
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"
How do I write this code as a Linux command?
mount.cifs //10.2.6.72/aaa_bbb_1 ~/drive-o -o username=domain\username,password=password
Note that the directory "drive-o" (the mount point) in your home has to exist. You might have to prepend sudo
.
Which Linux is it?