diff --git a/docs/cloud/storage/nfs.md b/docs/cloud/storage/nfs.md new file mode 100644 index 0000000000000000000000000000000000000000..3ba18917731edf5b81dbbfabba7c7b2007f97de3 --- /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 0000000000000000000000000000000000000000..2a1870d9f299760eba705e70825b6e5e0b4ba333 --- /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 995a6897e51e598ee97768429c1a6020f1c4ea82..db954d2d9819da74df6aeeb6bd54ad179660e68b 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 82add0bbfa73d09e1574e18eec89135b691f5f92..a7f7bd4f2eba046f057d5c54567413bfc4392943 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 b8ec5e80138b8c8967796a38fbb96318aaf291aa..0000000000000000000000000000000000000000 --- 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