LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   smbmount help (https://www.linuxquestions.org/questions/linux-newbie-8/smbmount-help-13757/)

StorMaZ 02-07-2002 12:51 PM

smbmount help
 
When Im going to mount a network device on with samba on my linux mandrake machine it says that Coult not resolve mount point. And Im not so sure how Im going to write the mount "code".
This is what i write: smbmount //Arbetsgrupp/Stormaz/save

I don`t know what Im doing wrong and Im a terrible newbie on Linux so please help!

wbheinkel 02-08-2002 05:15 PM

I am also new. I installed LinNeighhood. It is something like Network Places in Windows. Useing it is very easy to Mount Files. I hope this will help you until someone who knows what they are doing helps you.

:newbie:

StorMaZ 02-08-2002 05:56 PM

Well... i asked another friend and he knewd =D

Lazarus 02-09-2002 07:52 AM

I have a script mountsmb I use for this :-

#!bin/sh
#
if [ -z $1 ]; then
echo " "
echo "type something like:-"
echo " "
echo "mountsmb work/cdrom /cdrom"
echo " "
echo " work is the machine name and /cdrom the mount point"
echo " "
exit
fi
# use below for kernel 2.2
#smbmount //$1 -N -c "mount $2"
#
mount -t smbfs //$1 $2 -o guest
#

You need to heve your kernel enabled for smbfs and also file sharing set up on your windows machine.
If this does not solve your problem at least it should point you in the right direction


All times are GMT -5. The time now is 03:22 AM.