Droll Posted May 4 Posted May 4 Hello everyone. I’m attempting to mount a Windows network share on Armbian, but something seems off—both smb://10.10.2.101 and sftp://10.10.2.101 show up in red. The same addresses work perfectly on Rocky Linux; any thoughts on what I might be overlooking? 0 Quote
Sergioclr Posted May 4 Posted May 4 (edited) What kind of device (hardware) are you using? Edited May 6 by Sergioclr reformulate 0 Quote
CryBaby Posted May 4 Posted May 4 You aren't telling us much, like what software you are using. I would expect you to need to give it something like smb://10.10.2.101/NAME_OF_SHARE/ or sftp://10.10.2.101:/path/to/folder You will also need to give it a username and password somehow. But first; have you checked you can reach it on the network? 0 Quote
Vinicius Guastala Posted 1 hour ago Posted 1 hour ago @Droll, something worth to check out is the SMB version your server is running... They have slightly different authentication, so the mount command differs a bit: SMBV1: sudo mount -t cifs -o vers=1.0,username=your_username,password=your_password //server_ip/share_name /mnt/myshare SMBV2: sudo mount -t cifs -o vers=2.0,username=your_username,password=your_password //server_ip/share_name /mnt/myshare 0 Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.