share path: smb://10.0.0.9/sharename/
mount point: /mnt/cifs/
username: guest
password:
options: none
I can see the cifs folder where it should be, but I doesn't work, I keep getting the error.
Any help will be appreciated.
#!/system/bin/sh # Make sure networking is up before mounting while : do check_if_up=($(netcfg | grep -e eth0 -e wlan0 | busybox awk '{print $2}')) if [[ (${check_if_up[0]} = UP) || (${check_if_up[1]} = UP) ]]; then break fi sleep 1 done sleep 1 # Switch rootfs to read / write # Be careful after this. Misplaced commands may # brick your system busybox mount -o rw,remount / # Create Mount Points mkdir /data/media/0/mov mkdir /data/media/0/e # Mount shares busybox mount -t cifs -o username=XXX,password=YYY,iocharset=utf8,noserverino,nounix,file_mode=0777,dir_mode=0777 //192.168.178.11/02_Movies /data/media/0/mov busybox mount -t cifs -o username=XXX,password=YYY,iocharset=utf8,noserverino,nounix,file_mode=0777,dir_mode=0777 //192.168.178.11/E /data/media/0/e # Switch rootfs to read only busybox mount -o ro,remount /
There are currently 2334 users online. 0 members and 2334 guests.
Most users ever online was 63,956 at 18:56 on 20 March 2025.
We process personal data about users of our site, through the use of cookies and other technologies, to deliver our services, personalize advertising, and to analyze site activity. We may share certain information about our users with our advertising and analytics partners. For additional details, refer to our Privacy Policy.
By clicking "I AGREE" below, you agree to our Privacy Policy and our personal data processing and cookie practices as described therein. You also acknowledge that this forum may be hosted outside your country and you consent to the collection, storage, and processing of your data in the country where this forum is hosted.
Comment