similar to: Best way to manage file/dir permissions: samba or *nix perms

Displaying 20 results from an estimated 20000 matches similar to: "Best way to manage file/dir permissions: samba or *nix perms"

1999 Oct 21
6
Corrupted Excel files, oplock_break(905) errors
Hi there everyone! I'm using Samba 2.0.5a-19990721 on a RedHat 6.0 machine with Linux kernel 2.2.12. My system generally works fine, however recently I've had some complaints about some files being corrupted. The latest and best-handled to enable a debugging happened at around the same time. Both clients were using Windows95 OSR2 machines with Excel 97 SP-2. Two users reported the problem
2006 May 12
0
How to manage e-mail addresses on a *nix box?
Hello, People, how can I manage (add/remove/change pass, etc) my e-mail addresses through my rails application? I''m on a *nix box with cPanel for managing the web hosting package, is there an API out there for managing e-mail addresses? Any pointer to articles, books, blog entry, etc appreciated. Thank you all in advance, - Dunnil
2006 Apr 01
1
Samba perms vs. fs perms
The subject's a little misleading really, but I was looking for some clarification of my thoughts... In Windows, one can use both share permissions and NTFS permissions to control access to files. I would normally use share permissions to control a connection (allow/deny), and use NTFS to control access. I would never use share permissions to control access whilst NTFS was capable of
2008 Feb 13
5
Wrong perms on new files/dirs using smbmount
Greetings- I am working through coming up with a Linux client integration to Samba PDC's. I mount several shares with this sort of syntax: /bin/mount -t cifs -o credentials=/home/userid/.smbcredentials,uid=userid,gid=userid,dmask=0777,fmask=0666 //ldslnx01/data /mnt/ldslnx01/data/ However when I create new files/dirs on the Samba share from the Linux workstation, the perms are not 0666/0777
2009 Jul 27
4
DO NOT REPLY [Bug 6578] New: put out skipped dirs files w/ perms and ownership
https://bugzilla.samba.org/show_bug.cgi?id=6578 Summary: put out skipped dirs files w/ perms and ownership Product: rsync Version: 3.0.5 Platform: All OS/Version: Linux Status: NEW Severity: enhancement Priority: P3 Component: core AssignedTo: wayned at samba.org ReportedBy: toralf.foerster
2008 Feb 15
3
Wrong perms on new files/dirs using `mount -t cifs`
My original thread had the incorrect subject line. The original trouble / question remains open and unsolved. Greetings- I am working through coming up with a Linux client integration to Samba PDC's. I mount several shares with this sort of syntax: /bin/mount -t cifs -o credentials=/home/userid/.smbcredentials,uid=userid,gid=userid,dmask=0777,fmask=0666 //ldslnx01/data /mnt/ldslnx01/data/
2007 Feb 16
2
Permissions of the top-level destination directory without --perms
I noticed that rsync sometimes miscalculates the permissions of the top-level destination directory when --perms is off. For example, run these commands in an area free of default ACLs: umask 0000 mkdir -p src/foo chmod 700 src src/foo rsync -r src/ dest/ find . -ls 763054 0 drwx------ 4 matt matt 96 Feb 16 17:57 . 763158 0 drwx------ 3 matt matt 72 Feb 16
2007 Mar 11
0
rsync permissions question - different perms set for some files on initial run
Hi. I've been searching around for answers on this one and experimenting a fair amount, but I seem to be stuck. I hope this is an appropriate place for my question and if not, apologies. I am running Samba v3 on a Linksys NSLU2 (Network Storage Link -- a NAS). (It runs GNU/Linux.) I have a share set up with these options: force directory mode=000 force create mode=000 create mask=777
2006 Mar 22
2
Asterisk perms in manager.conf
Hi, can someone sched a light what exactly mean the read write permissions in manager.conf? [public] secret = private deny=0.0.0.0/0.0.0.0 permit=10.0.0.0/255.255.0.0 read = system,call,log,verbose,command,agent,user write = system,call,log,verbose,command,agent,user Lets say I want some users to use dial through manager interface. But don't want to allow them to run asterisk commands?
2006 Apr 21
0
Seeking entry level BSD/*nix position in DFW area
I am a Windows admin looking to make the switch to the BSD/*nix side of the house. I am currently working nights (Sun-Thu, 10PM-6AM) but am looking for an enty level BSD/*nix position during the day. I am able to work both jobs(already have done so for over 9 months), as long as there is no night or on-call responsibility. Goal is to get feet wet and prove myself and then make the switch to
2007 Apr 18
0
Networking: VoIP Goes MainstreamOperating Systems: In the Slow LaneOperating Systems: Linux Goes GlobalOperating Systems: Should You Nix Unix?
Skipped content of type multipart/alternative-------------- next part -----= --------- A non-text attachment was scrubbed... Name: not available Type: image/gif Size: 11907 bytes Desc: not available Url : http://lists.linux-foundation.org/pipermail/virtualization/attachment= s/20070328/b4f7d6f3/attachment.gif
2007 Apr 18
0
Networking: VoIP Goes MainstreamOperating Systems: In the Slow LaneOperating Systems: Linux Goes GlobalOperating Systems: Should You Nix Unix?
Skipped content of type multipart/alternative-------------- next part -----= --------- A non-text attachment was scrubbed... Name: not available Type: image/gif Size: 11907 bytes Desc: not available Url : http://lists.linux-foundation.org/pipermail/virtualization/attachment= s/20070328/b4f7d6f3/attachment.gif
2009 Sep 12
2
[LLVMdev] IDE on *nix
Hi all, Is anyone using any flavour of Unix to develop LLVM? I suppose the Apple guys are using Mac, right? ;) I've seen some docs on the website to set-up Visual Studio but I haven't seen anything related to cross-platform IDEs (such as Eclipse) and how to attach the tests to them. So far I'm not doing any modifications to the LLVM and my project is still too small to become a
2009 Sep 15
0
[LLVMdev] IDE on *nix
Hi Renato, I've been using LLVM with Eclipse for a while now. The way to do it is to build LLVM with CMake and tell CMake to generate an Eclipse project file, like so: cmake -G "Eclipse CDT4 - Unix Makefiles" -DCMAKE_BUILD_TYPE="Debug" -DBUILD_SHARED_LIBS=ON -DLLVM_TARGETS_TO_BUILD="X86;PowerPC;CBackend" /home/renato/llvm-sources You'll need to modify
2009 Sep 15
3
[LLVMdev] IDE on *nix
2009/9/15 Patrick Simmons <simmon12 at illinois.edu>: > cmake -G "Eclipse CDT4 - Unix Makefiles" -DCMAKE_BUILD_TYPE="Debug" > -DBUILD_SHARED_LIBS=ON -DLLVM_TARGETS_TO_BUILD="X86;PowerPC;CBackend" > /home/renato/llvm-sources Thanks Patrick, I'll give it a try. At least now I know that it can be done. My previous attempts all ended up in memory
2009 Sep 15
0
[LLVMdev] IDE on *nix
On 2009-09-15 12:22, Renato Golin wrote: > 2009/9/15 Patrick Simmons <simmon12 at illinois.edu>: > >> cmake -G "Eclipse CDT4 - Unix Makefiles" -DCMAKE_BUILD_TYPE="Debug" >> -DBUILD_SHARED_LIBS=ON -DLLVM_TARGETS_TO_BUILD="X86;PowerPC;CBackend" >> /home/renato/llvm-sources >> > > Thanks Patrick, I'll give it a try.
2002 Oct 28
0
FW: Access Problem connecting from windows 2000 client to Samba U NIX server Share
-----Original Message----- From: Rend, Jon (Jon) % Sent: Monday, October 28, 2002 4:23 PM To: 'samba@lists.samba.org' Subject: Access Problem connecting from windows 2000 client to Samba UNIX server Share On friday we changed our smb.conf file to test the security model that uses DOMAIN authenticacion. It worked fine testing two seperate usernames from Multiple Workstations connecting
2003 Feb 07
0
browse ntfs files from *nix
I am not quite clear on how to browse windows files from FreeBSD. I have found two possibilities - sharity-lite and smbclient for Win32. However, I have no idea of how to use smbclient for Windows. My setup is FreeBSD 4.7 with Samba installed and working well. I can access kFBSD from WinXP & other machines with no problem. But how do I read files on Windows? Google wasn't much help...
2003 Feb 08
3
Win files from *nix?
How can I browse Windows from Unix? I'm using FreeBSD 4.7, Samba, and KDE3. I'd like to be able to browse also from command line. I have not found instructions on use of smbclient-win32 and do not want to use sharity. smbclien-win32 comes with and exe file and cygwin dll's - but what are you supposed to do with them, copy the dll's to system or system32 foler and just run the
2000 Apr 03
2
PC Virus scanning on *nix side?
Date: Fri, 31 Mar 2000 10:49:21 +0900 (JST) From: Steve Frampton <frampton@j-com.co.jp> To: Multiple recipients of list SAMBA <samba@samba.org> Subject: PC Virus scanning on *nix side? Message-ID: <Pine.LNX.4.21.0003311046390.7302-100000@firewall.j-com.co.jp> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hi: