Mounting the SD Card of a multi functional Network printer

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Hi,

I have a HP 7500A MFC that I use to scan a lot of documents on the local SD
Card. Once in a while I want to move all the scans from the SD Card to my
computer. For this I've wrote a bash script which worked perfectly on my
Mac:



#!/bin/bash
#this is a comment-the first line sets bash as the shell script
cd ~
mkdir sharescan
mount -t smbfs smb://192.168.1.35/MEMORY_CARD/HPSCANS/ sharescan
cd sharescan
mydate=`date +%Y%m%d%H%M%S;`
for filename in scan*; do mv "$filename" "${filename//scan/$mydate _}";
done
mv *.* /Users/Mac/Dropbox/Scans
cd ..
umount ./sharescan
rmdir sharescan
exit;



Now I tried to adapt this script to my Linux Mint 16 Petra (MATE 32 bit)
machine without success.
I am unable to mount the SD Card. I can ping to it but can not mount it.



user-DQ155A-B14-T335-BE user # mount -t cifs
//192.168.1.35/MEMORY_CARD/HPSCANS/ sharescan -o guest
mount error(13): Permission denied
Refer to the mount.cifs(8) manual page (e.g. man mount.cifs)



I don't know what else I can try, do you guys have any idea?

regards,
Milan
--
To unsubscribe from this list: send the line "unsubscribe linux-cifs" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html




[Linux USB Devel]     [Video for Linux]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux