Last active
July 23, 2023 17:42
-
-
Save pecavalheiro/44e5823e36c9785770ae7ffb45fb5d96 to your computer and use it in GitHub Desktop.
Revisions
-
pecavalheiro revised this gist
Jul 23, 2023 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -8,4 +8,4 @@ sudo chmod 777 /my/shared/dir sudo exportfs -a && sudo systemctl restart nfs-kernel-server # in Mac, open Finder and press cmd + k. Type nfs://<host>/my/shared/dir/ -
pecavalheiro revised this gist
Jul 23, 2023 . 1 changed file with 3 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -6,4 +6,6 @@ sudo chmod 777 /my/shared/dir # edit /etc/exports and add: /my/shared/dir <client ip address>(rw,sync,all_squash,subtree_check,insecure,anonuid=0,anongid=100,crossmnt,fsid=0) sudo exportfs -a && sudo systemctl restart nfs-kernel-server # in mac, open Finder and press cmd + k. Type nfs://<host>/my/shared/dir/ -
pecavalheiro revised this gist
Jul 23, 2023 . No changes.There are no files selected for viewing
-
pecavalheiro created this gist
Jul 23, 2023 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,9 @@ # some tips: https://wiki.archlinux.org/title/NFS/Troubleshooting#Unable_to_connect_from_OS_X_clients sudo apt install nfs-kernel-server sudo chmod 777 /my/shared/dir # edit /etc/exports and add: /my/shared/dir <client ip address>(rw,sync,all_squash,subtree_check,insecure,anonuid=0,anongid=100,crossmnt,fsid=0) sudo exportfs -a && sudo systemctl restart nfs-kernel-server