diff options
| author | Mitja Felicijan <m@mitjafelicijan.com> | 2023-07-12 18:35:08 +0200 |
|---|---|---|
| committer | Mitja Felicijan <m@mitjafelicijan.com> | 2023-07-12 18:35:08 +0200 |
| commit | 23a56bd50b04211da3cab45f72c3390711b2416b (patch) | |
| tree | ab9a4a0136b4cce06dba7d853e296f682f807dbb /content/notes/mount-plan9-over-network.md | |
| parent | cecb4b48a39a3558979b9c4b50e45bf605a3684e (diff) | |
| download | mitjafelicijan.com-23a56bd50b04211da3cab45f72c3390711b2416b.tar.gz | |
Moved notes and posts into subfolders
Diffstat (limited to 'content/notes/mount-plan9-over-network.md')
| -rw-r--r-- | content/notes/mount-plan9-over-network.md | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/content/notes/mount-plan9-over-network.md b/content/notes/mount-plan9-over-network.md new file mode 100644 index 0000000..bb83202 --- /dev/null +++ b/content/notes/mount-plan9-over-network.md | |||
| @@ -0,0 +1,23 @@ | |||
| 1 | --- | ||
| 2 | title: Mount Plan9 over network | ||
| 3 | url: mount-plan9-over-network.html | ||
| 4 | date: 2023-05-07T12:00:00+02:00 | ||
| 5 | type: note | ||
| 6 | draft: false | ||
| 7 | tags: [plan9] | ||
| 8 | --- | ||
| 9 | |||
| 10 | - First install libfuse with sudo apt install libfuse-dev. | ||
| 11 | - Then clone https://github.com/ftrvxmtrx/9pfs and compile it with make. | ||
| 12 | - Copy 9pfs to your path. | ||
| 13 | |||
| 14 | ```sh | ||
| 15 | # On Plan9 side | ||
| 16 | ip/ipconfig # enables network | ||
| 17 | aux/listen1 -tv tcp!*!9999 /bin/exportfs -r tmp # export tmp folder | ||
| 18 | |||
| 19 | # On Linux side | ||
| 20 | 9pfs 172.18.0.1 -p 9999 local_folder # mount | ||
| 21 | umount local_folder # unmount | ||
| 22 | ``` | ||
| 23 | |||
