Difference between revisions of "Mounting windows share from Ubuntu"
From MyWiki
Line 3: | Line 3: | ||
mount -t cifs //192.168.0.42/mysharename /mnt -o rw,user=george2 ( this worked ) | 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 //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 ) |
Revision as of 10:40, 20 May 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 )