Advanced Search
Search Results
56 total results found
Verify NFS export
Knowledge base
Linux Tips and Tricks
Check NFS exports on nas05.simmy.ch from the Linux: sudo showmount -e nas05.simmy.ch
.bashrc interactive shell
Knowledge base
Linux Tips and Tricks
# at the very top of ~/.bashrc, before any echo/printf/etc. case "$-" in *i*) ;; # interactive shell, continue *) return ;; # non-interactive (scp/sftp, ssh command), stop here esac # at the very end of ~/.bashrc alias ll='ls -lsah' f...