pastebin - collaborative debugging tool
rovema.kpaste.net RSS


msnfs41client: Enable UNC path support in ksh93, doc libnfs, docs, 2024-03-25
Posted by Anonymous on Mon 25th Mar 2024 15:31
raw | new post

  1. From 82a3b7ad801682d3d29726c45d7c3caebb6668c2 Mon Sep 17 00:00:00 2001
  2. From: Roland Mainz <roland.mainz@nrubsig.org>
  3. Date: Mon, 25 Mar 2024 12:04:26 +0100
  4. Subject: [PATCH 1/3] cygwin, testing: Add ksh93 patch to enable UNC
  5.  support+Cygwin ast-ksh package
  6.  
  7. Add ksh93 patch to enable UNC support+Cygwin ast-ksh/ksh93 package
  8.  
  9. Signed-off-by: Cedric Blancher <cedric.blancher@gmail.com>
  10. ---
  11. cygwin/cygwin_ksh93/cygwin_ksh93.readme       |  11 +
  12.  cygwin/cygwin_ksh93/ksh93.cygport             | 300 ++++++++++++++++++
  13.  ...t_PATH_LEADING_SLASHES_for_UNC_paths.patch |  29 ++
  14.  tests/manual_testing.txt                      |  11 +-
  15.  4 files changed, 350 insertions(+), 1 deletion(-)
  16.  create mode 100644 cygwin/cygwin_ksh93/cygwin_ksh93.readme
  17.  create mode 100644 cygwin/cygwin_ksh93/ksh93.cygport
  18.  create mode 100644 cygwin/cygwin_ksh93/ksh_1_0_8_libast_Cygwin_set_PATH_LEADING_SLASHES_for_UNC_paths.patch
  19.  
  20. diff --git a/cygwin/cygwin_ksh93/cygwin_ksh93.readme b/cygwin/cygwin_ksh93/cygwin_ksh93.readme
  21. new file mode 100644
  22. index 0000000..d0ca429
  23. --- /dev/null
  24. +++ b/cygwin/cygwin_ksh93/cygwin_ksh93.readme
  25. @@ -0,0 +1,11 @@
  26. +#
  27. +# Cygwin ast-ksh/ksh93 README
  28. +#
  29. +
  30. +# Build sequence
  31. +cygport --64 ksh93.cygport download
  32. +cygport --64 ksh93.cygport prep
  33. +cygport --64 ksh93.cygport compile
  34. +cygport --64 ksh93.cygport install
  35. +cygport --64 ksh93.cygport package
  36. +# EOF.
  37. diff --git a/cygwin/cygwin_ksh93/ksh93.cygport b/cygwin/cygwin_ksh93/ksh93.cygport
  38. new file mode 100644
  39. index 0000000..a052035
  40. --- /dev/null
  41. +++ b/cygwin/cygwin_ksh93/ksh93.cygport
  42. @@ -0,0 +1,300 @@
  43. +#
  44. +# ksh93.cygport
  45. +#
  46. +# Copyright (C) 2024 Roland Mainz <roland.mainz@nrubsig.org>
  47. +#
  48. +# This file is free software; I give unlimited permission to copy and/or
  49. +# distribute it, with or without modifications, as long as this notice is
  50. +# preserved.
  51. +#
  52. +
  53. +NAME=astksh
  54. +LICENSE="Eclipse Public License - v 2.0"
  55. +HOMEPAGE="https://github.com/ksh93/ksh"
  56. +VERSION=1.0.8
  57. +RELEASE=0
  58. +
  59. +PKG_NAMES="astksh astksh_devel"
  60. +
  61. +astksh_SUMMARY="The AT&T Korn Shell"
  62. +astksh_DESCRIPTION="Original version of the AT&T AST Korn Shell 93."
  63. +astksh_CATEGORY="Base Shells"
  64. +astksh_CONTENTS=" \
  65. +       bin/ksh.exe \
  66. +       bin/ksh93.exe \
  67. +       bin/rksh.exe \
  68. +       bin/rksh93.exe \
  69. +       etc/ksh.kshrc \
  70. +       usr/share/doc/astksh \
  71. +       usr/share/man/man1 \
  72. +"
  73. +
  74. +astksh_devel_SUMMARY="Development files for AT&T ksh"
  75. +astksh_devel_DESCRIPTION="This package contains development tools and scripts for AT&T ksh"
  76. +astksh_devel_CATEGORY="Devel"
  77. +astksh_devel_CONTENTS="usr/share/ksh \
  78. +       bin/shcomp.exe \
  79. +"
  80. +
  81. +SRC_URI="https://github.com/ksh93/ksh/archive/refs/tags/v1.0.8.zip"
  82. +SRC_DIR='./ksh-1.0.8/'
  83. +PATCH_URI="ksh_1_0_8_libast_Cygwin_set_PATH_LEADING_SLASHES_for_UNC_paths.patch"
  84. +
  85. +BUILD_REQUIRES=" \
  86. +    bash \
  87. +    coreutils \
  88. +    bison \
  89. +    gcc-g++ \
  90. +    libiconv-devel \
  91. +    libintl-devel \
  92. +    libncurses-devel \
  93. +    make \
  94. +    sed \
  95. +    texinfo \
  96. +"
  97. +
  98. +CPPFLAGS=
  99. +CYGCONF_ARGS=
  100. +DIFF_EXCLUDES=
  101. +DOCS=
  102. +
  103. +function print_gnulinux_builtin_header
  104. +{
  105. +# Make sure to use \\ instead of \ for continuations
  106. +cat <<ENDOFTEXT
  107. +
  108. +#ifndef _GNULINUX_KSH_CMDLIST_H
  109. +#define        _GNULINUX_KSH_CMDLIST_H
  110. +
  111. +#ifdef __cplusplus
  112. +extern "C" {
  113. +#endif
  114. +
  115. +/*
  116. + * List builtins for Linux.
  117. + * The list here is partially autogenerated and partially hand-picked
  118. + * based on compatibility with the native GNU coreutils versions of
  119. + * these tools
  120. + */
  121. +
  122. +/* GNU coreutils compatible commands.
  123. + * Be careful, some are in /bin while others are in /usr/bin
  124. + */
  125. +#define        ASTCMDLIST(f) \
  126. +       { "/usr/ast/bin/"       #f,     NV_BLTIN|NV_BLTINOPT|NV_NOFREE, bltin(f) },
  127. +#define        BINCMDLIST(f)   \
  128. +       { "/bin/"               #f,     NV_BLTIN|NV_BLTINOPT|NV_NOFREE, bltin(f) }, \
  129. +       { "/usr/bin/"           #f,     NV_BLTIN|NV_BLTINOPT|NV_NOFREE, bltin(f) },
  130. +/* undo ast_map.h #defines to avoid collision */
  131. +#undef basename
  132. +#undef chmod
  133. +#undef chown
  134. +#undef dirname
  135. +#undef mkdir
  136. +#undef mkfifo
  137. +#undef mktemp
  138. +#undef readlink
  139. +#undef realpath
  140. +#undef rmdir
  141. +
  142. +
  143. +/* Generated data, do not edit. */
  144. +BINCMDLIST(basename)
  145. +BINCMDLIST(cksum)
  146. +BINCMDLIST(comm)
  147. +BINCMDLIST(cut)
  148. +BINCMDLIST(dirname)
  149. +BINCMDLIST(expr)
  150. +BINCMDLIST(fold)
  151. +BINCMDLIST(join)
  152. +BINCMDLIST(logname)
  153. +BINCMDLIST(mkdir)
  154. +BINCMDLIST(mkfifo)
  155. +BINCMDLIST(mktemp)
  156. +BINCMDLIST(paste)
  157. +BINCMDLIST(pathchk)
  158. +BINCMDLIST(rev)
  159. +BINCMDLIST(rmdir)
  160. +BINCMDLIST(sleep)
  161. +BINCMDLIST(sync)
  162. +BINCMDLIST(tee)
  163. +BINCMDLIST(tty)
  164. +BINCMDLIST(uniq)
  165. +BINCMDLIST(wc)
  166. +
  167. +/* Mandatory for ksh93 test suite and AST scripts */
  168. +BINCMDLIST(getconf)
  169. +
  170. +ASTCMDLIST(basename)
  171. +ASTCMDLIST(cat)
  172. +ASTCMDLIST(chgrp)
  173. +ASTCMDLIST(chmod)
  174. +ASTCMDLIST(chown)
  175. +ASTCMDLIST(cksum)
  176. +ASTCMDLIST(cmp)
  177. +ASTCMDLIST(comm)
  178. +ASTCMDLIST(cp)
  179. +ASTCMDLIST(cut)
  180. +ASTCMDLIST(date)
  181. +ASTCMDLIST(dirname)
  182. +//BINCMDLIST(egrep)
  183. +//ASTCMDLIST(egrep)
  184. +ASTCMDLIST(expr)
  185. +ASTCMDLIST(fds)
  186. +//BINCMDLIST(fgrep)
  187. +//ASTCMDLIST(fgrep)
  188. +ASTCMDLIST(fmt)
  189. +ASTCMDLIST(fold)
  190. +//BINCMDLIST(grep)
  191. +//ASTCMDLIST(grep)
  192. +ASTCMDLIST(head)
  193. +ASTCMDLIST(id)
  194. +//BINCMDLIST(iconv)
  195. +//ASTCMDLIST(iconv)
  196. +ASTCMDLIST(join)
  197. +ASTCMDLIST(ln)
  198. +ASTCMDLIST(logname)
  199. +//ASTCMDLIST(ls)
  200. +ASTCMDLIST(md5sum)
  201. +BINCMDLIST(md5sum)
  202. +ASTCMDLIST(mkdir)
  203. +ASTCMDLIST(mkfifo)
  204. +ASTCMDLIST(mktemp)
  205. +ASTCMDLIST(mv)
  206. +ASTCMDLIST(paste)
  207. +ASTCMDLIST(pathchk)
  208. +ASTCMDLIST(pids)
  209. +//BINCMDLIST(od)
  210. +//ASTCMDLIST(od)
  211. +//BINCMDLIST(readlink)
  212. +//ASTCMDLIST(readlink)
  213. +//BINCMDLIST(realpath)
  214. +//ASTCMDLIST(realpath)
  215. +ASTCMDLIST(rev)
  216. +ASTCMDLIST(rm)
  217. +ASTCMDLIST(rmdir)
  218. +ASTCMDLIST(stty)
  219. +//ASTCMDLIST(sha1sum)
  220. +//BINCMDLIST(sha1sum)
  221. +//ASTCMDLIST(sha256sum)
  222. +//BINCMDLIST(sha256sum)
  223. +//ASTCMDLIST(sha384sum)
  224. +//BINCMDLIST(sha384sum)
  225. +//ASTCMDLIST(sha512sum)
  226. +//BINCMDLIST(sha512sum)
  227. +ASTCMDLIST(sum)
  228. +ASTCMDLIST(sync)
  229. +ASTCMDLIST(tail)
  230. +ASTCMDLIST(tee)
  231. +//BINCMDLIST(tr)
  232. +//ASTCMDLIST(tr)
  233. +ASTCMDLIST(tty)
  234. +ASTCMDLIST(uname)
  235. +ASTCMDLIST(uniq)
  236. +//ASTCMDLIST(vmstate)
  237. +ASTCMDLIST(wc)
  238. +// ASTCMDLIST(xgrep)
  239. +//BINCMDLIST(xargs)
  240. +//ASTCMDLIST(xargs)
  241. +
  242. +#ifdef __cplusplus
  243. +}
  244. +#endif
  245. +
  246. +#endif /* !_GNULINUX_KSH_CMDLIST_H */
  247. +ENDOFTEXT
  248. +       return 0
  249. +}
  250. +
  251. +src_compile()
  252. +{
  253. +       cd ${S}
  254. +
  255. +       #
  256. +       # prepare build
  257. +       #
  258. +
  259. +       # translate cygport ARCH to AST hosttype
  260. +       if [[ "$ARCH" == 'i686' ]] ; then
  261. +               ast_hosttype='cygwin.i386'
  262. +       elif [[ "$ARCH" == 'x86_64' ]] ; then
  263. +               ast_hosttype='cygwin.i386-64'
  264. +       else
  265. +               false
  266. +       fi
  267. +
  268. +       gnulinux_builtin_header="${PWD}/tmp_gnulinux_builtin_header.h"
  269. +       print_gnulinux_builtin_header >"${gnulinux_builtin_header}"
  270. +
  271. +       # ksh93+AST config flags
  272. +       bast_flags="-DSHOPT_CMDLIB_BLTIN=0 -DSH_CMDLIB_DIR=\\\"/usr/ast/bin\\\" -DSHOPT_CMDLIB_HDR=\\\"${gnulinux_builtin_header}\\\" -DSHOPT_SYSRC"
  273. +
  274. +       # build debug
  275. +       #export IFFEFLAGS=-d1
  276. +
  277. +       # fix build issues with mkfifo
  278. +       sed -i -r 's/mkfifo.+?(-m [[:digit:]]+)/mkfifo /g' ./src/cmd/INIT/package.sh ./bin/package
  279. +      
  280. +      
  281. +       #      
  282. +       # build AT&T AST ksh
  283. +       #
  284. +       if [[ "$ARCH" == 'i686' ]] ; then
  285. +                    export SHELL=/bin/bash HOSTTYPE="${ast_hosttype}"; \
  286. +                       /bin/bash ./bin/package make \
  287. +                               CC="/usr/bin/gcc -m32 -std=gnu17" CCFLAGS="-Os -g ${bast_flags}" SHELL="$SHELL" HOSTTYPE="$HOSTTYPE"
  288. +       elif [[ "$ARCH" == 'x86_64' ]] ; then
  289. +               export SHELL=/bin/bash HOSTTYPE="${ast_hosttype}"; \
  290. +                       /bin/bash ./bin/package make \
  291. +                               CC="/usr/bin/gcc -m64 -std=gnu17" CCFLAGS="-Os -g ${bast_flags}" SHELL="$SHELL" HOSTTYPE="$HOSTTYPE"
  292. +       else
  293. +               # unsupported arch!
  294. +               false
  295. +       fi
  296. +
  297. +
  298. +       #
  299. +       # create ksh.kshrc
  300. +       #
  301. +       {
  302. +               printf '#\n# /etc/ksh.kshrc+~/.kshrc are sourced only for interactive shells\n#\n\n'
  303. +               printf '# default prompt\n'
  304. +               printf 'PS1=%q\n' $'\E[32m$(/usr/bin/logname)@$(/usr/bin/hostname) \E[33m${PWD/~(Sl-r)$HOME/"~"}\E[0m\n$ '
  305. +               printf '# default editor mode\n'
  306. +               printf 'set -o gmacs\n'
  307. +       } >${S}/etc_ksh_kshrc
  308. +}
  309. +
  310. +#
  311. +# install ksh, rksh, shcomp
  312. +#
  313. +src_install()
  314. +{
  315. +       if [[ "$ARCH" == 'i686' ]] ; then
  316. +               ast_hosttype='cygwin.i386'
  317. +       elif [[ "$ARCH" == 'x86_64' ]] ; then
  318. +               ast_hosttype='cygwin.i386-64'
  319. +       else
  320. +               false
  321. +       fi
  322. +
  323. +       /usr/bin/install -D -m0755 ${S}/arch/${ast_hosttype}/bin/ksh.exe ${D}/bin/ksh.exe
  324. +       ln ${D}/bin/ksh.exe ${D}/bin/rksh.exe
  325. +       ln ${D}/bin/ksh.exe ${D}/bin/ksh93.exe
  326. +       ln ${D}/bin/ksh.exe ${D}/bin/rksh93.exe
  327. +       /usr/bin/install -D -m0755 ${S}/arch/${ast_hosttype}/bin/ksh.exe ${D}/bin/shcomp.exe
  328. +       /usr/bin/install -D -m0644 ${S}/arch/${ast_hosttype}/man/man1/sh.1 ${D}/usr/share/man/man1/ksh.1
  329. +       /usr/bin/install -D -m0644 ${S}/etc_ksh_kshrc ${D}/etc/ksh.kshrc
  330. +
  331. +       for i in ${S}/src/cmd/ksh93/tests/* ; do
  332. +               /usr/bin/install -D -m0644 $i ${D}/usr/share/ksh/tests/$(basename "$i")
  333. +       done
  334. +}
  335. +
  336. +CYGWIN_MAINTAINER=Roland%20Mainz
  337. +CYGWIN_MAINTAINER_EMAIL=roland.mainz@nrubsig.org
  338. +
  339. +CYGWIN_CO_MAINTAINER=Cedric%20Blancher
  340. +CYGWIN_CO_MAINTAINER_EMAIL=cedric.blancher@gmail.com
  341. +
  342. +# EOF.
  343. diff --git a/cygwin/cygwin_ksh93/ksh_1_0_8_libast_Cygwin_set_PATH_LEADING_SLASHES_for_UNC_paths.patch b/cygwin/cygwin_ksh93/ksh_1_0_8_libast_Cygwin_set_PATH_LEADING_SLASHES_for_UNC_paths.patch
  344. new file mode 100644
  345. index 0000000..bdadb8d
  346. --- /dev/null
  347. +++ b/cygwin/cygwin_ksh93/ksh_1_0_8_libast_Cygwin_set_PATH_LEADING_SLASHES_for_UNC_paths.patch
  348. @@ -0,0 +1,29 @@
  349. +diff --git a/src/lib/libast/port/astconf.c b/src/lib/libast/port/astconf.c
  350. +index b6b58027..396cd46d 100644
  351. +--- a/src/lib/libast/port/astconf.c
  352. ++++ b/src/lib/libast/port/astconf.c
  353. +@@ -1355,6 +1355,24 @@ astgetconf(const char* name, const char* path, const char* value, int flags, Err
  354. +       Lookup_t        look;
  355. +       Sfio_t*         tmp;
  356. +
  357. ++#ifdef __CYGWIN__
  358. ++      /*
  359. ++       * hack for Cygwin to make Cygwin UNC paths (with leading
  360. ++       * two slashes) work.
  361. ++       *
  362. ++       * Testcase:
  363. ++       * cd into UNC path, print "pwd -P", result must start with
  364. ++       * "//<hostname>/<path>"
  365. ++       * ---- snip ----
  366. ++       * $ bash -c 'cd "//derfw1fs10.global.loc/rfw" ; path_to_kshdir/ksh.exe -c "pwd -P ; true" ; true'
  367. ++       * //derfw1fs10.global.loc/rfw
  368. ++       * ---- snip ----
  369. ++       *
  370. ++       */
  371. ++      if (name && (!strcmp(name, "PATH_LEADING_SLASHES"))) {
  372. ++              return "1";
  373. ++      }
  374. ++#endif /* __CYGWIN__ */
  375. +       if (!name)
  376. +       {
  377. +               if (path)
  378. diff --git a/tests/manual_testing.txt b/tests/manual_testing.txt
  379. index f8fc3b8..bda1cd5 100644
  380. --- a/tests/manual_testing.txt
  381. +++ b/tests/manual_testing.txt
  382. @@ -138,16 +138,25 @@ ksh93 -c 'rm -f test1.txt ; touch test1.txt ; icacls test1.txt /grant:r "cygwing
  383.  # ./nfs_mount -p -o sec=sys R derfwnb4966_ipv6:/net_tmpfs2/test2
  384.  #
  385.  
  386. +
  387.  #
  388.  # ksh93 (ast-ksh)
  389.  #
  390. +
  391. +#
  392. +# build ast-ksh ksh93 1.0.8 with UNC support enabled
  393. +# (see ms-nfs41-client/cygwin/cygwin_ksh93/cygwin_ksh93.readme for
  394. +# instructions how to build a Cygwin package)
  395. +#
  396.  git clone -b 'v1.0.8' https://github.com/ksh93/ksh.git
  397.  cd ksh
  398.  git config --global --add safe.directory "$PWD"
  399. +# add patch so UNC path support is enabled (e.g. "cd cd //derfwnb4966_ipv6linklocal@2049/nfs4/net_tmpfs")
  400. +patch -p1 <'../cygwin/cygwin_ksh93/ksh_1_0_8_libast_Cygwin_set_PATH_LEADING_SLASHES_for_UNC_paths.patch'
  401.  sed -i -r 's/mkfifo.+?(-m [[:digit:]]+)/mkfifo /g' ./src/cmd/INIT/package.sh ./bin/package
  402.  # repeat:
  403.  rm -Rf arch
  404. -time ksh93 -c 'export SHELL=/bin/bash HOSTTYPE="cygwin.i386-64"; /bin/bash ./bin/package make CC="/usr/bin/cc -std=gnu17" CCFLAGS="-Os -g" SHELL="$SHELL" HOSTTYPE="$HOSTTYPE"' 2>&1 | tee buildlog.log
  405. +time bash -c 'export SHELL=/bin/bash HOSTTYPE="cygwin.i386-64"; /bin/bash ./bin/package make CC="/usr/bin/cc -std=gnu17" CCFLAGS="-Os -g" SHELL="$SHELL" HOSTTYPE="$HOSTTYPE"' 2>&1 | tee buildlog.log
  406.  
  407.  
  408.  #
  409. --
  410. 2.43.0
  411.  
  412. From cfc4c7b1a33dfa75abf571c0630ef30c5864eb00 Mon Sep 17 00:00:00 2001
  413. From: Roland Mainz <roland.mainz@nrubsig.org>
  414. Date: Mon, 25 Mar 2024 12:15:56 +0100
  415. Subject: [PATCH 2/3] cygwin, tests: Add libnfs (for /usr/bin/nfs-ls) to
  416.  recommended pkg+manual tests
  417.  
  418. Add libnfs (for /usr/bin/nfs-ls) to recommended Cygwin packages
  419. and manual test instructions.
  420.  
  421. Signed-off-by: Cedric Blancher <cedric.blancher@gmail.com>
  422. ---
  423. cygwin/README.bintarball.txt |  1 +
  424.  tests/manual_testing.txt     | 21 +++++++++++++++++++++
  425.  2 files changed, 22 insertions(+)
  426.  
  427. diff --git a/cygwin/README.bintarball.txt b/cygwin/README.bintarball.txt
  428. index a5ea187..39a9560 100644
  429. --- a/cygwin/README.bintarball.txt
  430. +++ b/cygwin/README.bintarball.txt
  431. @@ -88,6 +88,7 @@ NFSv4.1 client and filesystem driver for Windows 10/11
  432.          util-linux
  433.          wget
  434.      - Packages (recommended):
  435. +        libnfs (for /usr/bin/nfs-ls)
  436.          make
  437.          git
  438.          dos2unix
  439. diff --git a/tests/manual_testing.txt b/tests/manual_testing.txt
  440. index bda1cd5..473fad7 100644
  441. --- a/tests/manual_testing.txt
  442. +++ b/tests/manual_testing.txt
  443. @@ -229,4 +229,25 @@ cd gcc/
  444.  make -j4 clean
  445.  (yes | make -j32 all)
  446.  
  447. +
  448. +#
  449. +# libnfs
  450. +#
  451. +
  452. +# get sources and patch them
  453. +git clone https://github.com/sahlberg/libnfs.git
  454. +# fix "nfs_v4.c:436:29: error: array subscript has type 'char' [-Werror=char-subscripts]"
  455. +sed -i -E 's/if \(isdigit\(\*buf\)\) \{/if (isdigit((int)*buf)) {/' libnfs/lib/nfs_v4.c
  456. +
  457. +cd libnfs
  458. +git config --global --add safe.directory "$PWD"
  459. +autoupdate
  460. +ln -s /usr/share/libtool/build-aux/ltmain.sh .
  461. +autoreconf || true
  462. +automake --add-missing
  463. +autoreconf
  464. +./configure --without-libkrb5 --enable-utils
  465. +make -j8 all
  466. +
  467. +
  468.  # EOF.
  469. --
  470. 2.43.0
  471.  
  472. From 2e1d5e90b6f5cb203c19d080ef88ee01bcd7cabc Mon Sep 17 00:00:00 2001
  473. From: Roland Mainz <roland.mainz@nrubsig.org>
  474. Date: Mon, 25 Mar 2024 15:20:56 +0100
  475. Subject: [PATCH 3/3] cygwin: Add "Source code" section to
  476.  README.bintarball.txt
  477.  
  478. Add "Source code" section to README.bintarball.txt
  479.  
  480. Signed-off-by: Cedric Blancher <cedric.blancher@gmail.com>
  481. ---
  482. cygwin/README.bintarball.txt | 10 ++++++++++
  483.  1 file changed, 10 insertions(+)
  484.  
  485. diff --git a/cygwin/README.bintarball.txt b/cygwin/README.bintarball.txt
  486. index 39a9560..b1b66e0 100644
  487. --- a/cygwin/README.bintarball.txt
  488. +++ b/cygwin/README.bintarball.txt
  489. @@ -322,4 +322,14 @@ $ /sbin/nfs_mount
  490.    might require $ chmod a+rw /dev/vmnet0 # on VMware host, so that
  491.    the VM can use "Promiscuous Mode".
  492.  
  493. +
  494. +#
  495. +# 11. Source code:
  496. +#
  497. +- Source code can be obtained from https://github.com/kofemann/ms-nfs41-client
  498. +
  499. +- Build instructions can be found at
  500. +https://github.com/kofemann/ms-nfs41-client/tree/master/cygwin
  501. +
  502. +
  503.  # EOF.
  504. --
  505. 2.43.0

Submit a correction or amendment below (click here to make a fresh posting)
After submitting an amendment, you'll be able to view the differences between the old and new posts easily.

Syntax highlighting:

To highlight particular lines, prefix each line with {%HIGHLIGHT}




All content is user-submitted.
The administrators of this site (kpaste.net) are not responsible for their content.
Abuse reports should be emailed to us at