On Tue, 06 Jun 2017 18:45:38 +0100 Rodolfo Medina via samba <samba at lists.samba.org> wrote:> Rodolfo Medina <rodolfo.medina at gmail.com> writes: > > > I'm new to use of Samba. I plugged a USB pendrive into router but > > don't know how to mount it. Please help whoevere can. > > > I did: > > $ smbclient -L 192.168.1.1 > WARNING: The "syslog" option is deprecated > Enter rodolfo's password:Just press enter here> Connection to 192.168.0.1 failed (Error NT_STATUS_IO_TIMEOUT) > > and also: > > # mount -t cifs //192.168.1.1/USB_Storage /mnt/public --verbose -o > guest mount.cifs kernel mount options: > ip=192.168.1.1,unc=\\192.168.1.1\USB_Storage,user=,pass=******** > mount error(115): Operation now in progress > Refer to the mount.cifs(8) manual page (e.g. man mount.cifs) > > Any suggestions?You could try doing what it says, run 'man mount.cifs', or you could try it like this: mkdir /mnt/cifs mount.cifs //192.168.1.1/USB_Storage /mnt/cifs Rowland
Rowland Penny via samba <samba at lists.samba.org> writes:> On Tue, 06 Jun 2017 18:45:38 +0100 > Rodolfo Medina via samba <samba at lists.samba.org> wrote: > >> Rodolfo Medina <rodolfo.medina at gmail.com> writes: >> >> > I'm new to use of Samba. I plugged a USB pendrive into router but >> > don't know how to mount it. Please help whoevere can. >> >> >> I did: >> >> $ smbclient -L 192.168.1.1 >> WARNING: The "syslog" option is deprecated >> Enter rodolfo's password: > > Just press enter here > >> Connection to 192.168.0.1 failed (Error NT_STATUS_IO_TIMEOUT) >> >> and also: >> >> # mount -t cifs //192.168.1.1/USB_Storage /mnt/public --verbose -o >> guest mount.cifs kernel mount options: >> ip=192.168.1.1,unc=\\192.168.1.1\USB_Storage,user=,pass=******** >> mount error(115): Operation now in progress >> Refer to the mount.cifs(8) manual page (e.g. man mount.cifs) >> >> Any suggestions? > > You could try doing what it says, run 'man mount.cifs', or you could > try it like this: > > mkdir /mnt/cifs > mount.cifs //192.168.1.1/USB_Storage /mnt/cifsThanks. I gave the latter command as root, but it asks for a password: it isn't the root's password, neither my normal user password and neither router's web GUI password. So I don't know what it may ever be: # mount.cifs //192.168.1.1/USB_Storage /mnt/public Password for root@//192.168.1.1/USB_Storage: mount error(115): Operation now in progress Refer to the mount.cifs(8) manual page (e.g. man mount.cifs) Rodolfo
On Tue, 06 Jun 2017 21:00:25 +0100 Rodolfo Medina <rodolfo.medina at gmail.com> wrote:> Thanks. I gave the latter command as root, but it asks for a > password: it isn't the root's password, neither my normal user > password and neither router's web GUI password. So I don't know what > it may ever be: > > # mount.cifs //192.168.1.1/USB_Storage /mnt/public > Password for root@//192.168.1.1/USB_Storage: > mount error(115): Operation now in progress > Refer to the mount.cifs(8) manual page (e.g. man mount.cifs)Do not enter ANY password, just press 'Enter' when prompted for a password. You are mounting the share as a 'guest' user This is with my router: rowland at devstation:~$ sudo mount.cifs //192.168.0.1/USB1 /mnt/cifs Password for root@//192.168.0.1/USB1: <-- I just pressed 'Enter' rowland at devstation:~$ ls /mnt/cifs home PVR RunSanDiskSecureAccess_Win.exe SanDiskSecureAccess Rowland