Networking Forums

Networking Forums > Computer Networking > Linux Networking > Linux workstation to Linux Server file access???

Reply
Thread Tools Display Modes

Linux workstation to Linux Server file access???

 
 
bobmct
Guest
Posts: n/a

 
      06-11-2006, 01:29 AM
Gentlemen;

Previously I've run Samba on my linux servers to allow access from my
Windoze desktops. This worked with limitations but was usable.

Now I've replaced many of my desktops with Linux workstations and I have
tried mounting the same samba shares successfully but I'm experiencing
quite some difficulties with ownerships and permissions (especially
permissions).

My research and other groups are telling me that I should rely on *nix
native network sharing (nsf?) to accomplish this.

So, to attest to my ignorance on this issue, please explain if nsf is the
preferred way to go AND how it should normally be mounted?

I have servers and a nas device and I have been playing with variations of
the mount -t nsf blah blah without any success.

Please provide some mount examples or preferably how I could make an entry
into my fstab file to automount these shares?

Thanks millions.

Bob
 
Reply With Quote
 
 
 
 
Bit Twister
Guest
Posts: n/a

 
      06-11-2006, 01:36 AM
On Sat, 10 Jun 2006 21:29:02 -0400, bobmct wrote:
> Gentlemen;
>
> Previously I've run Samba on my linux servers to allow access from my
> Windoze desktops. This worked with limitations but was usable.
>
> Now I've replaced many of my desktops with Linux workstations and I have
> tried mounting the same samba shares successfully but I'm experiencing
> quite some difficulties with ownerships and permissions (especially
> permissions).
>
> My research and other groups are telling me that I should rely on *nix
> native network sharing (nsf?) to accomplish this.
>
> So, to attest to my ignorance on this issue, please explain if nsf is the
> preferred way to go AND how it should normally be mounted?
>
> I have servers and a nas device and I have been playing with variations of
> the mount -t nsf blah blah without any success.




Please bookmark the following, very large,
Frequently Asked Questions (faq) Search engine:

put (E-Mail Removed)lid in the Message Id box at
http://groups.google.com/advanced_group_search


then there is
http://tldp.org/

put nfs in the search box.
 
Reply With Quote
 
CJT
Guest
Posts: n/a

 
      06-11-2006, 01:43 AM
bobmct wrote:

> Gentlemen;
>
> Previously I've run Samba on my linux servers to allow access from my
> Windoze desktops. This worked with limitations but was usable.
>
> Now I've replaced many of my desktops with Linux workstations and I have
> tried mounting the same samba shares successfully but I'm experiencing
> quite some difficulties with ownerships and permissions (especially
> permissions).
>
> My research and other groups are telling me that I should rely on *nix
> native network sharing (nsf?) to accomplish this.
>
> So, to attest to my ignorance on this issue, please explain if nsf is the
> preferred way to go AND how it should normally be mounted?
>
> I have servers and a nas device and I have been playing with variations of
> the mount -t nsf blah blah without any success.
>
> Please provide some mount examples or preferably how I could make an entry
> into my fstab file to automount these shares?
>
> Thanks millions.
>
> Bob


It's nfs, not nsf, and is very well documented.

--
The e-mail address in our reply-to line is reversed in an attempt to
minimize spam. Our true address is of the form che...@prodigy.net.
 
Reply With Quote
 
Unruh
Guest
Posts: n/a

 
      06-11-2006, 01:55 AM
bobmct <(E-Mail Removed)> writes:

>Gentlemen;


>Previously I've run Samba on my linux servers to allow access from my
>Windoze desktops. This worked with limitations but was usable.


>Now I've replaced many of my desktops with Linux workstations and I have
>tried mounting the same samba shares successfully but I'm experiencing
>quite some difficulties with ownerships and permissions (especially
>permissions).


>My research and other groups are telling me that I should rely on *nix
>native network sharing (nsf?) to accomplish this.


Yes. do not use samba for Linux to linux.


>So, to attest to my ignorance on this issue, please explain if nsf is the
>preferred way to go AND how it should normally be mounted?


Go onto the server (ie the machine whose files are to mounted on another
machine).
edit /etc/exports
Let us say it is the subdirectory /home/donald that is to be mounted on the
remote machine

/home/donald 192.168.0.5(rw,async) 192.168.0.6(rw,async)

where 192.169.0.5 and 192.168.0.6 are the two machine that will mount this
directory on their own system.

Then do
exportfs -a

Make sure that nfs is working
service nfs start

Make sure that the other machine are in /etc/hosts.allow
portmap:192.168.0.5 192.168.0.6



Now go to the machives on which this directory is to be mounted. Edit
/etc/fstab
192.168.0.2:/home/donald /home/duck nfs rw,rsize=8192,wsize=8192,soft,bg,intr 0 0
(all one line)

Make sure nfs is working
service nfs start

Then do
mount -a
and the directory /home/donald on the server will now be identical to the
directory /home/duck on your machine.






>I have servers and a nas device and I have been playing with variations of
>the mount -t nsf blah blah without any success.


>Please provide some mount examples or preferably how I could make an entry
>into my fstab file to automount these shares?


>Thanks millions.


>Bob

 
Reply With Quote
 
AZ Nomad
Guest
Posts: n/a

 
      06-11-2006, 02:01 AM
On Sat, 10 Jun 2006 21:29:02 -0400, bobmct <(E-Mail Removed)> wrote:


>Gentlemen;


>Previously I've run Samba on my linux servers to allow access from my
>Windoze desktops. This worked with limitations but was usable.


>Now I've replaced many of my desktops with Linux workstations and I have
>tried mounting the same samba shares successfully but I'm experiencing
>quite some difficulties with ownerships and permissions (especially
>permissions).


>My research and other groups are telling me that I should rely on *nix
>native network sharing (nsf?) to accomplish this.


>So, to attest to my ignorance on this issue, please explain if nsf is the
>preferred way to go AND how it should normally be mounted?


>I have servers and a nas device and I have been playing with variations of
>the mount -t nsf blah blah without any success.


go to google; search for "nfs howto"

use /etc/exports on the serving system and
an entry in /etc/fstab on the client system.
 
Reply With Quote
 
Constant Meiring
Guest
Posts: n/a

 
      06-11-2006, 11:39 AM
> >Now I've replaced many of my desktops with Linux workstations and I have
> >tried mounting the same samba shares successfully but I'm experiencing
> >quite some difficulties with ownerships and permissions (especially
> >permissions).


Samba and CIFS on Linux has the same and maybe more features than the
NT version of SMB so I don't know what limited usability you had...

The problem with the permissions are likely that cause of users putting
shared files onto their shared dir as root, and then things get
screwed, as samba, which runs as nobody or samba doesn't have control
over those files anymore. So make shure all your users, groups and
permissions are correct on all the machines otherwise NFS might give
the same permission problems.

Constant Meiring

 
Reply With Quote
 
 
 
Reply

Thread Tools
Display Modes

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 On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Advice on Linux and internal web server and file server jrcs22@gmail.com Linux Networking 1 02-12-2007 06:34 PM
Windows file server RST (reset) packet disconnecting Linux & Mac u pj_servadmin Windows Networking 0 11-07-2006 06:54 PM
Trying to connect a Linux workstation to a NetWare6 server CasperGG Linux Networking 2 09-11-2003 08:30 PM
Linksys BEFVP41, linux redhat 7.3 server remote windows xp pro workstation Paul Kraus Linux Networking 1 07-31-2003 03:03 PM
Cannot access Linux Web Page or ping linux server from different subnet. Paul Graves Linux Networking 2 07-20-2003 08:39 AM



1 2 3 4 5 6 7 8 9 10 11