search for: ahidden

Displaying 8 results from an estimated 8 matches for "ahidden".

Did you mean: hidden
2009 Mar 25
2
Dotfiles with multiple dots not marked as hidden
I have "hide dot files" on, but I have noticed that while files with a single dot are hidden, files with multiple dots are not: ".foo" - hidden "...foo" - not hidden Is this by design? *nix certainly hide such files by default... -- Barry -- http://barrkel.blogspot.com/
1999 Dec 28
2
Directory rename problem with smbclient
I am trying to use smbclient to migrate data from OS/2 LanServers to a filesystem on an AIX 4.3.1 machine. Everything works great except renaming directories on the OS/2 LanServer. I get the error ERRDOS - ERRbadfile (File not found.) renaming files when I do a "rename <existing_dir_name> <new_dir_name>" at the prompt, but <existing_dir_name> exists. I connected to a
2000 Mar 20
0
smbfs patch - listing large direcories from an OS/2 server
...int ff_searchcount = 0; int ff_eos = 0; + int ff_lastname = 0; int ff_dir_handle = 0; int loop_count = 0; int mask_len, i, result; @@ -1597,16 +1601,11 @@ command = TRANSACT2_FINDFIRST; WSET(param, 0, aSYSTEM | aHIDDEN | aDIR); WSET(param, 2, max_matches); /* max count */ - WSET(param, 4, - SMB_CONTINUE_BIT|SMB_CLOSE_IF_END); + WSET(param, 4, SMB_CLOSE_IF_END); WSET(param, 6, info_level);...
1999 Oct 23
0
smbfs: patch for directory listing
...------- next part -------------- diff -ur linux-2.2.12-clean/fs/smbfs/proc.c linux/fs/smbfs/proc.c --- linux-2.2.12-clean/fs/smbfs/proc.c Sat Oct 23 17:44:54 1999 +++ linux/fs/smbfs/proc.c Sat Oct 23 22:25:49 1999 @@ -1599,8 +1599,7 @@ command = TRANSACT2_FINDFIRST; WSET(param, 0, aSYSTEM | aHIDDEN | aDIR); WSET(param, 2, max_matches); /* max count */ - WSET(param, 4, 8 + 4 + 2); /* resume required + - close on end + + WSET(param, 4, 4 + 2); /* close on end + continue */ WSET(param, 6, info_level); DSET(param, 8, 0); @@ -1615,8 +1614,7 @@ WSET(param, 2...
2000 Jun 28
1
[Patch] Shorter patch for smbfs 2.2.16
...t don't do 260 + */ + if (server->opt.protocol < SMB_PROTOCOL_NT1) + info_level = 1; + smb_lock_server(server); retry: @@ -1416,16 +1653,11 @@ command = TRANSACT2_FINDFIRST; WSET(param, 0, aSYSTEM | aHIDDEN | aDIR); WSET(param, 2, max_matches); /* max count */ - WSET(param, 4, - SMB_CONTINUE_BIT|SMB_CLOSE_IF_END); + WSET(param, 4, SMB_CLOSE_IF_END); WSET(param, 6, info_level);...
2002 Sep 10
2
Who may delete a file ?
Hi All, I was checking the access rights and a problem (hence a question) appeared: Who can delete a file through Samba ? Suppose we have the following situation: drwxrwxrwx john finance directory -rw-r--r-- jack finance directory/file Under unix everyone can delete the file. Under Samba, the documentation says (due to the Windows sementic) you also need the write access to the
1999 Apr 08
0
Keep-timestamp-in-`get'-patch for smbclient in samba-2.0.3
...ect here ? ) + printf("a:%ld m:%ld\n", a_time, m_time); + printf("a:%s m:%s\n", ctime(&a_time), ctime(&m_time)); */ + utb.actime = mktime(gmtime(&a_time)); + utb.modtime = mktime(gmtime(&m_time)); +#else + uint16 attribute = aDIR | aSYSTEM | aHIDDEN; + + /* Use cmd_dir() type of interface here. */ + cli_list(cli, rname, attribute, do_get_an_finfo); + + /* Now rname's finfo is copied in an_finfo */ + utb.actime = mktime(LocalTime(&(an_finfo.atime))); + utb.modtime = mktime(LocalTime(&(an_finfo.mtime))); +#endif + /...
2000 Jun 25
2
Login script
Is there a file I can place in the netlogin directory (or anywhere else for that matter) that will represnet a logon script? I want to have my workstations auto-mount particular shares on the samba server, without the user having to make the mount. This way when I add new users, the shares are automatically present. If there is a script I can place somwehre, please tell me what it's name is