Difference between revisions of "Mounting windows share from Ubuntu"
From MyWiki
(7 intermediate revisions by the same user not shown) | |||
Line 4: | Line 4: | ||
mount -t cifs //192.168.0.65/root /mnt -o rw,user=root,pass=xxxxxxxx ( this worked ) | mount -t cifs //192.168.0.65/root /mnt -o rw,user=root,pass=xxxxxxxx ( this worked ) | ||
mount -t cifs //158.223.0.156/george /mnt -o sec=none,rw,credentials=/root/.creds ( had to use sec at work ) | mount -t cifs //158.223.0.156/george /mnt -o sec=none,rw,credentials=/root/.creds ( had to use sec at work ) | ||
− | mount -t cifs // | + | <span style="background:#00FF00"> mount -t cifs //haries.gold.ac.uk/l-drive /drives/l-drive -o sec=ntlm,rw,user=css01gt,uid=1000 ( for haries need to change the security ) <--- this one</span> |
+ | mount -t cifs //192.168.34.2/shared /home/george2/drives/phy1 -o sec=ntlm,rw,user=Administrator,uid=1000 |
Latest revision as of 09:26, 2 October 2014
mount -t cifs //192.168.0.65/root /mnt -o rw
It will ask for the password for root
mount -t cifs //192.168.0.42/mysharename /mnt -o rw,user=george2 ( this worked )
mount -t cifs //192.168.0.65/root /mnt -o rw,user=root,pass=xxxxxxxx ( this worked )
mount -t cifs //158.223.0.156/george /mnt -o sec=none,rw,credentials=/root/.creds ( had to use sec at work )
mount -t cifs //haries.gold.ac.uk/l-drive /drives/l-drive -o sec=ntlm,rw,user=css01gt,uid=1000 ( for haries need to change the security ) <--- this one
mount -t cifs //192.168.34.2/shared /home/george2/drives/phy1 -o sec=ntlm,rw,user=Administrator,uid=1000