Tagged Questions
1
vote
1answer
196 views
Changing Home directory of a NIS user
I have a networked setup of 20 odd systems running ubuntu Linux where users are allowed to login using NIS+NFS.
I want to change a particular user's home directory. How can I do it (from any of the ...
0
votes
0answers
127 views
Copying From Windows to NFS: Can The Timestamps Be Preserved?
We have a Linux server that has NFS shares. Some Windows hosts (XP & 7) connect to it via Services for UNIX. I've been told the behavior is different from XP to 7 in terms of file creation dates ...
0
votes
0answers
384 views
Trying to mount NFS share on Windows Machine at startup with Z: letter for all users
Windows Server 2008
We are trying to mount a specific drive letter on a windows machine from a unix machine. We need the mount to be available to the server even if no users are logged in and to ...
0
votes
2answers
96 views
what do I need to do on a unix machine to allow some PC computer to mount (NFS)
I have a unix computer and a PC computer.
I want to mount a drive in the PC onto a unix directory.
What do I need to do in the unix side to allow this?
Thank you!
9
votes
5answers
710 views
Export NFS path containing “-” (dash)
I'm in a bit of a pinch with NFS exports file.
Specifically, I can't find a way to export a directory containing "-" in the path name.
Manual (exports(5)) states:
Also, each line may have one or ...
0
votes
1answer
254 views
Why does cpio say “WARNING! These file names were not selected” when copying a large number of files?
For over 10 years, I've been using this strategy to copy a large number of files between UNIX filesystems:
cd source_directory
find . -depth -print | cpio -pdm /path/to/destination_directory
It ...