आप आसानी से बाहरी हार्डड्राइव पर अपने होम फोल्डर का बैकअप ले सकते हैं
rsync -a --exclude=.cache --progress /home/$USER /media/linuxbackup/home/$USER
मैंने .cache फ़ोल्डर कारण को बाहर रखा है, मुझे लगता है कि जब मुझे इस बैकअप से पुन: स्थापित करना होगा तो मुझे इसकी कभी आवश्यकता नहीं होगी।
मुझे उन सभी फ़ोल्डरों की यह सूची मिली, जिन्हें मैं यहां एक सामान्य बैकअप में शामिल कर सकता हूं:
होम डाइरेक्टरी के बैकअप से क्या फाइलें और निर्देशिकाएं बाहर रखी जा सकती हैं?
मैंने इस उत्तर की एक सूची बनाई जिसमें इस रूप में कुछ कॉमेन्ट शामिल हैं:
#These directories may be excluded:
.gvfs # contains mounted file systems?
.local/share/gvfs-metadata
.Private # contains the actual encrypted home directory
.dbus # session-specific
.cache
.Trash # do I need to say more?
.local/share/Trash
.cddb # cached info about audio CDs
.aptitude # cached packages lists
#Flash-specific:
.adobe # Cache for flash, maybe others?
.macromedia # except for Flash persistence, there is no reason to keep this
#Files:
.xsession-errors # contains errors from the current graphical session
.recently-used # recently used files
.recently-used.xbel
.thumbnails
मैं इस सूची को अपने rsync कमांड में कैसे जोड़ सकता हूं?
.Trash
, वहाँ भी अक्सर.Trash-1000
(वर्तमान Ubuntu-MATE 14 के तहत कम से कम) है, तो के लिए बेहतर निपटान.Trash-*
?