Linux ns8.secondary29.go.th 2.6.32-754.28.1.el6.x86_64 #1 SMP Wed Mar 11 18:38:45 UTC 2020 x86_64
Apache/2.2.15 (CentOS)
: 122.154.134.11 | : 122.154.134.9
Cant Read [ /etc/named.conf ]
5.6.40
apache
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
share /
doc /
autofs-5.0.5 /
[ HOME SHELL ]
Name
Size
Permission
Action
COPYING
17.58
KB
-rw-r--r--
COPYRIGHT
778
B
-rw-r--r--
CREDITS
319
B
-rw-r--r--
INSTALL
6.48
KB
-rw-r--r--
README
1.75
KB
-rw-r--r--
README.active-restart
4.79
KB
-rw-r--r--
README.amd-maps
4.09
KB
-rw-r--r--
README.autofs-schema
681
B
-rw-r--r--
README.changer
1.2
KB
-rw-r--r--
README.ncpfs
3.26
KB
-rw-r--r--
README.replicated-server
1.67
KB
-rw-r--r--
README.smbfs
547
B
-rw-r--r--
README.v5.release
2.89
KB
-rw-r--r--
autofs.schema
830
B
-rw-r--r--
autofs.schema.new
771
B
-rw-r--r--
autofs4-2.6.18-v5-update-20090...
109.89
KB
-rw-r--r--
autofs4-2.6.19-v5-update-20090...
103.75
KB
-rw-r--r--
autofs4-2.6.20-v5-update-20090...
102.72
KB
-rw-r--r--
autofs4-2.6.21-v5-update-20090...
101.85
KB
-rw-r--r--
autofs4-2.6.22-v5-update-20090...
101.83
KB
-rw-r--r--
autofs4-2.6.22.17-v5-update-20...
101.9
KB
-rw-r--r--
autofs4-2.6.23-v5-update-20090...
100.79
KB
-rw-r--r--
autofs4-2.6.24-v5-update-20090...
100.78
KB
-rw-r--r--
autofs4-2.6.24.4-v5-update-200...
100.43
KB
-rw-r--r--
autofs4-2.6.25-v5-update-20090...
100.97
KB
-rw-r--r--
autofs4-2.6.26-v5-update-20090...
100.73
KB
-rw-r--r--
autofs4-2.6.27-v5-update-20090...
60.28
KB
-rw-r--r--
autofs4-2.6.28-v5-update-20090...
28.46
KB
-rw-r--r--
autofs4-2.6.29-v5-update-20090...
7.03
KB
-rw-r--r--
ldap-automount-auto.direct
1.14
KB
-rw-r--r--
ldap-automount-auto.indirect
544
B
-rw-r--r--
ldap-automount-auto.master
348
B
-rw-r--r--
ldap-automount-rfc2307-bis-aut...
1.5
KB
-rw-r--r--
ldap-automount-rfc2307-bis-aut...
816
B
-rw-r--r--
ldap-automount-rfc2307-bis-aut...
482
B
-rw-r--r--
ldap-automount-rfc2307-bis-old...
570
B
-rw-r--r--
ldap-nis-auto.direct
1.33
KB
-rw-r--r--
ldap-nis-auto.indirect
654
B
-rw-r--r--
ldap-nis-auto.master
420
B
-rw-r--r--
util-linux-2.12a-flock.patch
641
B
-rw-r--r--
util-linux-2.12q-flock.patch
554
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : README.ncpfs
Hi all, Below is the contents of a mail from Mike Fleetwood which describes how he managed to get ncpfs to work with autofs. It's included verbatium. I've applied the patch below and hope that this will help those who need to use ncpfs. Ian ================== Below is a very small fix to autofs to mount ncpfs. It just removes the exclusion preventing mount_generic from being used to mount ncpfs. This fix worked for me on Suse 9.1 with kernel 2.6.5 and ncpfs 2.2.4 for both autofs 3.1.7 and 4.0.0. I suspect it will work almost anywhere provided that all the required ncpfs mount options can be passed as -o options to /bin/mount. ncpmount(8) is very informative in this respect. Patch: ----8<--------8<---- diff -urN autofs-4.0.0.orig/daemon/mount.c autofs-4.0.0/daemon/mount.c --- autofs-4.0.0.orig/daemon/mount.c 2003-09-10 15:27:41.000000000 +0100 +++ autofs-4.0.0/daemon/mount.c 2004-08-05 10:36:51.813852608 +0100 @@ -26,7 +26,7 @@ /* These filesystems are known not to work with the "generic" module */ /* Note: starting with Samba 2.0.6, smbfs is handled generically. */ -static char *not_generic[] = { "nfs", "ncpfs", "userfs", "afs", +static char *not_generic[] = { "nfs", "userfs", "afs", "autofs", "changer", "bind", NULL }; int do_mount(const char *root, const char *name, int name_len, ----8<--------8<---- Searching this list's archive and googling found nothing useful so I am including extra hints of how I worked out how to configure automounting of ncpfs. (The ncpfs options you require will very likely be different to those shown here. See ncpmount(8) for the possible options). 1) Get cmd line mounting working using ncpmount working first: ncpmount -S novellservername -U username -A dnsname -V volname /mnt (Enter Novell password for username when prompted) umount /mnt 2) Switch to using /bin/mount with -o options: mount -t ncpfs -o ipserver=dnsname,volume=volname,passwd=XXXXXX \ novellservername/username /mnt umount /mnt (Note that there are other ways of supplying a password to ncpmount besides specifying it on the cmd line). 3) Use /etc/fstab entry to provide all the options to mount. Add /etc/fstab entry like: # Device Mount Dir FS Type Options FSCK Dump novellservername/username /mnt ncpfs ipserver=dnsname,volume=volname,passwd=XXXXXX 0 0 mount /mnt umount /mnt 4) Switch to using autofs. Add /etc/auto.master entry: # Mount Dir Map File /novell /etc/auto.ncpfs Create /etc/auto.ncpfs as: # Key -Options Location dir -fstype=ncpfs,ipserver=dnsname,volume=volname,passwd=XXXXXX :novellservername/username ls /novell/dir All the best, Mike -- __ __ _ _ ___ ____ _ ___ ___ _ ___ ___ _ | \/ (_| | _ / _ \ | ___| | / _ \/ _ \| |_ _ _ _/ \/ \ _| | | |\/| | | |/ | ___| | _| | |_| __| ___| __| \/ \/| O | O / _ | |_| |_|_|_|\_\\___| |_| |____\___|\___||____\_/^\_/\___/\___/\___| _______________________________________________ autofs mailing list autofs@linux.kernel.org http://linux.kernel.org/mailman/listinfo/autofs
Close