LinuxQuestions.org
Visit Jeremy's Blog.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 07-16-2004, 02:03 PM   #91
Wiz22
Member
 
Registered: Mar 2004
Location: {€urope}
Distribution: Linux Mint
Posts: 146

Original Poster
Rep: Reputation: 15

do i type my shared map or the directory included (like /home/me/mnt/sharedmap) ?? =\
 
Old 07-16-2004, 03:37 PM   #92
Peacedog
LQ Guru
 
Registered: Sep 2003
Location: Danville, VA
Distribution: Slackware, Windows, FreeBSD, OpenBSD, Mac OS X
Posts: 5,296

Rep: Reputation: 168Reputation: 168
smbclient -L windows ip address

should list any available shares, the share name that shows up is the share name you type in at this point //server/share.
 
Old 07-16-2004, 05:44 PM   #93
Wiz22
Member
 
Registered: Mar 2004
Location: {€urope}
Distribution: Linux Mint
Posts: 146

Original Poster
Rep: Reputation: 15
what do i type on /mnt/mntpoint ? "Could not resolve mount point /mnt/???/ =\
 
Old 07-16-2004, 06:12 PM   #94
Peacedog
LQ Guru
 
Registered: Sep 2003
Location: Danville, VA
Distribution: Slackware, Windows, FreeBSD, OpenBSD, Mac OS X
Posts: 5,296

Rep: Reputation: 168Reputation: 168
do this from the command line

mkdir /mnt/winshare

then do this

mount -t smbfs //server/share /mnt/winshare -o username=un,password=pass

i'm glad to help you, but you'd really do yourself some service w/a little reading here

http://www.tldp.org/HOWTO/Net-HOWTO/

http://us1.samba.org/samba/docs/

http://www.practicallynetworked.com/

i only say that because it seems like your not understanding the concepts behind the commands. once you get the understanding of what your trying to do, and how to do it, the commands are just a reference list. we'll get get you going yet. ;-)
 
Old 07-17-2004, 05:44 AM   #95
Wiz22
Member
 
Registered: Mar 2004
Location: {€urope}
Distribution: Linux Mint
Posts: 146

Original Poster
Rep: Reputation: 15
this will get long but this is a samba howto i got from a mate, ill try again, maby itll work maby not =)

COLLEGELINUX WINDOWS/LINUX FILE SHARING

This HOWTO is for people who want to be able to share files between Linux and Windows computers. This HOWTO tells one how to configure samba to do this from the command line with College.

There are two ways of looking at file sharing between the two systems. Both of which will be explained in this HOWTO.

Access to files on a Windows based system from Linux.
Access to files on a Linux based system from Windows.



ACCESS TO FILES ON A WINDOWS BASED SYSTEM FROM LINUX

This is probably the easiest to configure cross platform file sharing configuration. All that it requires is the correct access on the Windows machine and a few lines.

First of all it’s a good idea to have both machines running within the same workgroup for ease of use. By default both Windows and Samba’s workgroup are set to “WORKGROUP”. In the case of this being different on either machine we will need to change either machine so that they both run within the same workgroup.

----------- From Linux

We will first go to the samba configuration file.

cd /etc/samba

Then we will open the file called smb.conf

We will change the line which says

workgroup = WORKGROUP

To our desired workgroup, in this case FOOBAR so it will look like

workgroup = FOOBAR




----------- From Windows

Depending on which version of MS Windows you are running things will be slightly different, but what you need to do is tell your windows machine to join your new workgroup (in this case FOOBAR).

Usually it’s found under Start -> Settings -> Control Panel -> Network Settings

However this isn’t always the case so you could refer to your help files for additional information.


Now that we’re part of a workgroup we need to share the files on the Windows machine that we want.
In most cases to do this we would right click the directory -> properties -> sharing.
Set the permissions, give the share a name, apply and the directory will be shared.

Next we need to create a user on the Windows machine which will have access to the new share. In most cases this is done the following way.

Start -> Settings -> Control Panel -> Users and Passwords

Here we will add a new user with rights depending on what you want the user to be able to do. For this HOWO’s sake the user will be called “share” with the password being set to “share”.

Now that the Windows setting have been completed all that’s left to do is to mount the Windows drive from the Linux command line.

The first thing that we’ll need is a mount point. It’s usual for someone to mount to the /mnt directory for easy access. We will start by making a directory within the /mnt directory and call it “winshare”.

mkdir /mnt/winshare

To mount the drive we would issue the following command.

mount -t smbfs -o username=share,password=share //Onyx/share /mnt/winshare

username = specified username on Windows machine (i.e. user that was just created).
password = password for specified user.
Onyx = Windows Computer’s name.
share = the shared directory.
/mnt/winshare = the new mount point previously created.

And that’s about all there is to getting access to a Windows drive in Linux. There are several ways to automate the process, such as fstab, rc.local depending on preference. I tend to put my mount command in rc.local which resides in /etc/rc.d
But it depends on personal preference.




ACCESS TO FILES ON A LINUX BASED SYSTEM FROM WINDOWS

If the directions were followed to get the following only takes on line to get to work on the Linux side and then just the mapping of the drive on the Windows side.

Just a few things to note:

You will give a user on your system remote access to his/her /home directory
The user should already exist
I will not go into further directory access

Simply issue the following command with “user” being a valid user on your Linux box.

smbpasswd -a user

Enter a password, verify it, and it will be done.

To access the drive from Windows there’re two options.

One could map the drive for permanent access
One could browse to the drive every time access is required.

To browse to the drive open Internet Explorer/Windows Explorer and type

\\Onyx

Replacing Onyx with your Linux Box’s name. If you don’t know this just look at your command line it will say user@Onyx or whatever your computer name is. Enter the username of the user that you just created, enter the password -you have access to your home directory.

To get permanent access to the drive one would have to map the drive. This involves the following steps.

Right click My Computer and click Map Network Drive
Choose a drive letter and click browse
Go to My Network Places/Network Neighborhood and find the machine there.
Select the home directory of the created samba user
Enter username and password and you’ll have the drive mapped so that it is connected every time you start up your computer.


Please send all comments about how this could be improved or if something’s unclear to kinus@capeflats.org.za
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
college Linux drco Linux - Newbie 1 12-23-2004 03:00 AM
Control over IP adress in LAN via Linux Gateway pin_bk Linux - Networking 3 10-15-2004 03:41 AM
College Linux FileShare Samba Network? Wiz22 Linux - Newbie 5 05-20-2004 04:43 PM
College Linux pocketpal Linux - Laptop and Netbook 3 06-10-2003 08:13 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 08:55 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration