From 5905f263091e137f321ba7f7b9c97cd84bd2392b Mon Sep 17 00:00:00 2001
From: Varac <varac@varac.net>
Date: Tue, 6 May 2025 21:48:54 +0200
Subject: [PATCH] clous/storage

---
 docs/cloud/storage/nfs.md                | 21 ++++++++
 docs/cloud/storage/opendal.md            |  3 ++
 docs/{network => cloud}/storage/samba.md | 62 ++++++++++++++++--------
 docs/etc/file-managers.md                | 10 ++--
 docs/network/storage/nfs.md              | 15 ------
 5 files changed, 72 insertions(+), 39 deletions(-)
 create mode 100644 docs/cloud/storage/nfs.md
 create mode 100644 docs/cloud/storage/opendal.md
 rename docs/{network => cloud}/storage/samba.md (63%)
 delete mode 100644 docs/network/storage/nfs.md

diff --git a/docs/cloud/storage/nfs.md b/docs/cloud/storage/nfs.md
new file mode 100644
index 0000000..3ba1891
--- /dev/null
+++ b/docs/cloud/storage/nfs.md
@@ -0,0 +1,21 @@
+# NFS
+
+## Client
+
+List available exports:
+
+```sh
+showmount -e varac-nas
+```
+
+Mount an export:
+
+```sh
+sudo mount -t nfs varac-nas:/Public /tmp/nfstest
+```
+
+NFS4:
+
+```sh
+sudo mount.nfs4 varac-pinenas.local.moewe-altonah.de:/ /mnt
+```
diff --git a/docs/cloud/storage/opendal.md b/docs/cloud/storage/opendal.md
new file mode 100644
index 0000000..2a1870d
--- /dev/null
+++ b/docs/cloud/storage/opendal.md
@@ -0,0 +1,3 @@
+# Opendal
+
+- [Website](https://opendal.apache.org/)
diff --git a/docs/network/storage/samba.md b/docs/cloud/storage/samba.md
similarity index 63%
rename from docs/network/storage/samba.md
rename to docs/cloud/storage/samba.md
index 995a689..db954d2 100644
--- a/docs/network/storage/samba.md
+++ b/docs/cloud/storage/samba.md
@@ -4,63 +4,81 @@
 
 All netbios shares:
 
-    nmblookup -S '*'
+```sh
+nmblookup -S '*'
+```
 
 Only ip addresses:
 
-    nmblookup '*'
+```sh
+nmblookup '*'
+```
 
 Only samba shares:
 
-    nmblookup __SAMBA__
-    nmblookup -S __SAMBA__
+```sh
+nmblookup __SAMBA__
+nmblookup -S __SAMBA__
+```
 
 ### gvfs
 
-<https://wiki.ubuntuusers.de/gvfs-mount>
+<https://en.wikipedia.org/wiki/GVfs>
 
 . über nautilus mounten, dann:
 
-    cd /run/user/1000/gvfs/smb-share:server=192.168.178.2,share=multimedia/
+```sh
+cd /run/user/1000/gvfs/smb-share:server=192.168.178.2,share=multimedia/
+```
 
 ### benchmark
 
-    rsync --progress --stats --human-readable --recursive \
-      --remove-source-files ~/Videos/Traffic $SMB_TARGET
+```sh
+rsync --progress --stats --human-readable --recursive \
+  --remove-source-files ~/Videos/Traffic $SMB_TARGET
+```
 
 ### smbclient
 
 <http://wiki.ubuntuusers.de/Samba_Client_smbclient>
 
-    apt install smbclient samba-common-bin
+```sh
+apt install smbclient samba-common-bin
+```
 
 - Browse Network: `findsmb`
 - `smbtree`
 
 #### Browse shares
 
-    smbclient -L //varac-pinenas/
+```sh
+smbclient -L //varac-pinenas/
+```
 
 #### Use specific share as user
 
-    smbclient -U varac //rocinante/vpn-sync
-    smbclient -U share%gibher //rocinante/vpn-sync
+```sh
+smbclient -U varac //rocinante/vpn-sync
+smbclient -U share%gibher //rocinante/vpn-sync
+```
 
 ### Net Usershare
 
 <https://wiki.ubuntuusers.de/Samba%20Server/net%20usershare/>
 
-    net usershare info
+```sh
+net usershare info
+```
 
 ### cifs
 
-    sudo mount -t cifs -o <Optionen> //<Server>/Freigabe <Mountpunkt>
-    sudo mount -t cifs -o credentials=~/.smbcredentials //192.168.1.100/Tausch /media/austausch
+```sh
+sudo mount -t cifs -o <Optionen> //<Server>/Freigabe <Mountpunkt>
+sudo mount -t cifs -o credentials=~/.smbcredentials //192.168.1.100/Tausch /media/austausch
+```
 
 ## Samba Server /LDAP
 
-<http://redmine.bitrigger.de/redmine/projects/verikom-eidelstedt/wiki/Admin/edit>
-
 ### SambaUser Backends
 
 ### tdbsam
@@ -69,12 +87,16 @@ in smb.conf: `passdb backend = tdbsam` (default)
 
 List users
 
-    pdbedit -L
+```sh
+pdbedit -L
+```
 
 Add user
 
-    adduser --shell /bin/false share
-    pdbedit -a -u share
+```sh
+adduser --shell /bin/false share
+pdbedit -a -u share
+```
 
 Create password entry for i.e. `servercontainers/samba`:
 
diff --git a/docs/etc/file-managers.md b/docs/etc/file-managers.md
index 82add0b..a7f7bd4 100644
--- a/docs/etc/file-managers.md
+++ b/docs/etc/file-managers.md
@@ -22,10 +22,9 @@ sudo pacman -R nautilus gvfs-smb
 - 23k stars, 127 contributors
 - Rust, fast !
 - Neovim plugin: [yazi.nvim](https://github.com/mikavilpas/yazi.nvim?tab=readme-ov-file)
-- Issues
-  - [Yazi no longer recognizes LibreOffice and Word files](https://github.com/sxyazi/yazi/issues/1091)
-- Feature requests
-  - [View Recent files](https://github.com/sxyazi/yazi/issues/2384)
+- [Tracking issues of Remote file management](https://github.com/sxyazi/yazi/issues/611)
+  - [PR: Introduce remote scheme](https://github.com/sxyazi/yazi/pull/1152)
+  - Closed [Integrate to OpenDAL to allow manage files on s3/azblob/gcs/oss/dopbox/gdrive](https://github.com/sxyazi/yazi/issues/434)
 
 ### Plugins
 
@@ -33,6 +32,9 @@ sudo pacman -R nautilus gvfs-smb
 - [GitHub: yazi-rs/plugins](https://github.com/yazi-rs/plugins)
 - [Functional plugins](https://yazi-rs.github.io/docs/resources/#functional)
   - List of existing plugins
+- Feature requests
+  - [View Recent files](https://github.com/sxyazi/yazi/issues/2384)
+    Closed as not planned
 
 ## ranger
 
diff --git a/docs/network/storage/nfs.md b/docs/network/storage/nfs.md
deleted file mode 100644
index b8ec5e8..0000000
--- a/docs/network/storage/nfs.md
+++ /dev/null
@@ -1,15 +0,0 @@
-# NFS
-
-## Client
-
-List available exports:
-
-    showmount -e varac-nas
-
-Mount an export:
-
-    sudo mount -t nfs varac-nas:/Public /tmp/nfstest
-
-NFS4:
-
-    sudo mount.nfs4 varac-pinenas.local.moewe-altonah.de:/ /mnt
-- 
GitLab