Rsync: Difference between revisions
Jump to navigation
Jump to search
| Line 61: | Line 61: | ||
{| | {| | ||
|valign="top"| | |valign="top"| | ||
* [[ | * [[Cloud Computing Cost|Cost » Cloud » Computing]] | ||
* [[ | * [[Chorke Academia Backup]] | ||
* [[ | * [[Cloud/Cost/Chorke|Cost » Cloud » Chorke]] | ||
* [[Minikube]] | * [[Minikube]] | ||
* [[Helm]] | |||
* [[CIDR]] | * [[CIDR]] | ||
* [[UFW]] | * [[UFW]] | ||
* [[K8s]] | |||
* [[YQ Tool|YQ]] | * [[YQ Tool|YQ]] | ||
* [[JQ Tool|JQ]] | * [[JQ Tool|JQ]] | ||
|valign="top"| | |valign="top"| | ||
* [ | * [https://askubuntu.com/questions/476041/ Rsync » Deleted from the source] | ||
|valign="top"| | |valign="top"| | ||
|valign="top"| | |valign="top"| | ||
|- | |- | ||
| Line 149: | Line 120: | ||
|valign="top"| | |valign="top"| | ||
* [ | * [[Security/Container/Snyk|Security » Container » Snyk]] | ||
* [[ | * [[Security/Container/Trivy|Security » Container » Trivy]] | ||
* [[ | * [[Security/Certificate/TLS|Security » Certificate » TLS]] | ||
* [[ | * [[Java Key Store|Security » Java » Key Store]] | ||
* [[ | * [[Java Mail API|Security » Java » Mail API]] | ||
* [[ | * [[Security/Password|Security » Password]] | ||
* [[ZA Proxy|Security » ZA Proxy]] | |||
| | * [[Security/Domain|Security » Domain]] | ||
| | * [[Jasypt|Security » Jasypt]] | ||
* [[HTTP Security|Security » HTTP]] | |||
| | |||
| | |||
|} | |} | ||
Revision as of 03:12, 18 June 2025
Playground
rsync -aqz ${BACKUPS_CFG_FILE} ${HAPROXY_ETC_BASE}/haproxy.cfg
rsync -aqz ${HAPROXY_TMP_FILE} ${HAPROXY_ETC_BASE}/haproxy.cfg
|
sudo rsync -avz /etc/pgbouncer/pgbouncer.ini /etc/pgbouncer/pgbouncer.ini.bkp
sudo rsync -avz /etc/pgbouncer/userlist.txt /etc/pgbouncer/userlist.txt.bkp
| |
|
| ||
rsync -avuzb --exclude '*~' samba:sourcedir/ targetdir/
rsync -av --exclude={'*.txt','dir3','dir4'} sourcedir/ targetdir/
rsync -av --exclude-from={'/chorke/academia/ignore/rsync.txt'} sourcedir/ targetdir/
|
rsync -a /home/minikube /home/system/
rsync -a /home/artemis /home/system/
rsync -a /home/minio /home/system/
| |
|
| ||
rsync -avz /etc/ufw/{before,before6,user,user6,after,after6}.rules ${HOME}/.config/ufw/${BACKUP_DATE_TIME}/
| ||
|
| ||
rsync -avz deploy@app.academia.chorke.org:~/Documents/docker-playground/ .
rsync -az ${HOME}/Downloads/harbor/ ${HOME}/Documents/harbor-playground/
rsync -avz ${HOME}/.config/ufw/${BACKUP_DATE_TIME}/*.rules /etc/ufw/
|
rsync -avh source/ target/ --delete-after --ignore-errors
rsync -r --progress source target
apt install rsync
| |
References
|
| |||