Difference between revisions of "Useful Linux commands"
Line 1: | Line 1: | ||
+ | == rsync == | ||
+ | |||
+ | <code> | ||
+ | --chown=USER:GROUP | ||
+ | </code> | ||
+ | |||
+ | This option forces all files to be owned by USER with group GROUP. This is a simpler interface than using --usermap and --groupmap directly, but it is implemented using those options internally, so you cannot mix them. If either the USER or GROUP is empty, no mapping for the omitted user/group will occur. If GROUP is empty, the trailing colon may be omitted, but if USER is empty, a leading colon must be supplied.<ref>https://download.samba.org/pub/rsync/rsync.html</ref> | ||
+ | |||
== chown == | == chown == | ||
<code> | <code> | ||
− | chown -R nobody:users /mnt/disk1/Download | + | chown -R nobody:users /mnt/disk1/Download <ref>https://wiki.unraid.net/Un-Official_UnRAID_Manual</ref> |
</code> | </code> | ||
Revision as of 15:59, 15 December 2018
Contents
rsync
--chown=USER:GROUP
This option forces all files to be owned by USER with group GROUP. This is a simpler interface than using --usermap and --groupmap directly, but it is implemented using those options internally, so you cannot mix them. If either the USER or GROUP is empty, no mapping for the omitted user/group will occur. If GROUP is empty, the trailing colon may be omitted, but if USER is empty, a leading colon must be supplied.[1]
chown
chown -R nobody:users /mnt/disk1/Download [2]
grep
grep -nr 'yourString*' .
The dot at the end searches the current directory. Meaning for each parameter:
-n Show relative line number in the file 'yourString*' String for search, followed by a wildcard character -r Recursively search subdirectories listed . Directory for search (current directory)
How to grep ps output with headers [3]
ps -ef | egrep "Download|PID"
FreeBSD
- su:
The su utility requests appropriate user credentials via PAM and switches to that user ID (the default user is the superuser). A shell is then executed.
pstree
- shows a tree of processes! [4]
du -sh foldername
- (h)uman readable (s)ummary for disk usage of foldername [5]
lsof -ad3-999 -c rsync
- to see what files rsync currently has opened [6]
References
- ↑ https://download.samba.org/pub/rsync/rsync.html
- ↑ https://wiki.unraid.net/Un-Official_UnRAID_Manual
- ↑ https://serverfault.com/questions/268757/how-to-grep-ps-output-with-headers
- ↑ https://www.howtoforge.com/linux-pstree-command/
- ↑ https://www.ostechnix.com/find-size-directory-linux/
- ↑ https://askubuntu.com/questions/323775/monitor-watch-running-rsync-process/323782