{"id":683,"date":"2020-02-02T14:29:41","date_gmt":"2020-02-02T14:29:41","guid":{"rendered":"https:\/\/www.it-react.com\/?p=683"},"modified":"2021-05-08T11:00:02","modified_gmt":"2021-05-08T11:00:02","slug":"backup-your-raspberry-pi-remotely","status":"publish","type":"post","link":"https:\/\/www.it-react.com\/index.php\/2020\/02\/02\/backup-your-raspberry-pi-remotely\/","title":{"rendered":"Backup your Raspberry Pi remotely"},"content":{"rendered":"\n<p>I think Raspbbery Pi is a great device and I love how easy and fun is to create IoT projects using it. I am using Raspberry Pi at my vacation house and also at my parents summer house. It is monitoring remotely the temperature, the voltage of batteries connected to the wind-turbine and solar-panels and controlling the alarm system and some relays that are starting and stopping different appliances. <\/p>\n\n\n\n<p>These projects started for fun and curiosity, but as time goes by, they seem to become a very important component of the house itself, whithout which, it is difficult to imagine now the existence of the house. <\/p>\n\n\n\n<p>Therefore we have to keep this component as safe as possible and to have a backup in case something goes wrong. Because, in my case, it&#8217;s almost impossible to do a backup of the SD card locally, I would need a remotely backup solution. <br><br>So let&#8217;s see how can we create it. I&#8217;ll use a Linux VM as local computer from where I start the connection.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Step one &#8211; Check SD Card <\/strong> <\/h3>\n\n\n\n<p>Connect to RPi from Linux VM local computer:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"> root@kali:~# ssh pi@192.168.1.223  <\/pre>\n\n\n\n<p>Once in, use this command to list block devices :<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">pi@raspberrypi:~ $ lsblk -p\n NAME             MAJ:MIN RM  SIZE RO TYPE MOUNTPOINT\n <kbd>\/dev\/mmcblk0<\/kbd>     179:0    0 29.8G  0 disk\n \u251c\u2500\/dev\/mmcblk0p1 179:1    0 42.9M  0 part \/boot\n \u2514\u2500\/dev\/mmcblk0p2 179:2    0 29.8G  0 part \/<\/pre>\n\n\n\n<p> Note block device marked above, then disconnect from RPi. <\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Step two &#8211; Backup your Raspberry<\/strong><\/h2>\n\n\n\n<p> Start the backup  from Linux local computer  using this command :<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"> root@kali:~# ssh pi@192.168.1.223 \"sudo dd if=\/dev\/mmcblk0 bs=1M | gzip -\" | dd of=~\/Desktop\/pibackup.gz\n ..............................\n pi@192.168.1.223's password: <\/pre>\n\n\n\n<p>add the password of the RPi and the backup will start. <\/p>\n\n\n\n<p><strong>Command explained:<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><kbd>ssh<\/kbd> = secure shell. Starts connection to RPi<\/li><li><kbd>pi<\/kbd> = the name of the user you are logging in as on RPi <\/li><li><kbd>@192.168.1.223<\/kbd> = the IP address of RPi<\/li><li><kbd>sudo<\/kbd> = elevate the privilages to the super user<\/li><li><kbd>dd<\/kbd> = tool used to copy and convert files<\/li><li><kbd>if=\/dev\/mmcblk0<\/kbd> = input file, will read the SD card of the RPi in this case<\/li><li><kbd>bs=1M<\/kbd>  = instruct dd to use a block size of 1MB<\/li><li><kbd>|<\/kbd> = pipe command will transfer the reading of the SD card to gzip program  <\/li><li><kbd>gzip<\/kbd> = program that compresses files<\/li><li> <kbd>-<\/kbd> = instruct gzip to compress the output of the SD card <\/li><li><kbd>|<\/kbd> = pipe command will transfer the compressed file to next command <\/li><li><kbd>of=~\/Desktop\/pibackup.gz<\/kbd> = output file, will write the compressed file named  pibackup.gz on the of the local user&#8217;s Desktop.  <\/li><\/ul>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Step three &#8211; Check status of the backup<\/strong><\/h3>\n\n\n\n<p>Open a new Terminal window in Linux local computer and check the status of the backup:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">root@kali:~\/Desktop# watch -n 10 ls -alh<\/pre>\n\n\n\n<pre class=\"wp-block-preformatted\">Every 10.0s: ls -lh                         kali: Sun Feb  2 14:18:39 2020\n total 494M\n -rw-r--r--  1 root root 494M Feb  2 14:18 pibackup.gz<\/pre>\n\n\n\n<p>You can use &#8220;watch&#8221; command to update the &#8220;ls -alh&#8221; command every n seconds, here is 10s.<\/p>\n\n\n\n<p> When the backup is complete, you will get a similar information in the Terminal from which you started the command.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"> 30528+0 records in                                                                                                                                                                                                \n 30528+0 records out                                                                                                                                                                                               \n 32010928128 bytes (32 GB, 30 GiB) copied, 50627.9 s, 632 kB\/s                                                                                                                                                     \n 25290460+1 records in                                                                                                                                                                                             \n 25290460+1 records out                                                                                                                                                                                            \n 12948715910 bytes (13 GB, 12 GiB) copied, 50644.9 s, 256 kB\/s   <\/pre>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Step four &#8211; Restore Raspberry<\/strong><\/h3>\n\n\n\n<p>There is no way to restore the RPi remotely, you have to remove the micro SD card from RPi and the insert it to your local machine via an USB micro SD card reader. <br>As I&#8217;m using a Linux VM that is running in VMWorkstation, it will take me a few more steps until the SD card will be seen by the VM.  More information about this subject you can find <a href=\"https:\/\/www.it-react.com\/index.php\/2020\/02\/03\/add-sd-card-in-vmworkstation\/\">here<\/a>. <br>Once all the above are done, you can start your Linux VM and run the following  command to check the SD card drive:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">ioan@kali:~$ lsblk -p\n NAME        MAJ:MIN RM  SIZE RO TYPE MOUNTPOINT\n <kbd>\/dev\/sda<\/kbd>       8:0    0 59.6G  0 disk \n \u2514\u2500\/dev\/sda1   8:1    0 59.6G  0 part \n \/dev\/sdb      8:16   0   50G  0 disk \n \u251c\u2500\/dev\/sdb1   8:17   0 49.3G  0 part \/\n \u251c\u2500\/dev\/sdb2   8:18   0    1K  0 part \n \u2514\u2500\/dev\/sdb5   8:21   0  765M  0 part [SWAP]\n \/dev\/sr0     11:0    1    2G  0 rom  <\/pre>\n\n\n\n<p>So now that we found out the drive of the SD card, we can start the restore. In my case SD card has \/dev\/sda, so the command is looking like this: <\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"> root@kali:~# gunzip -dc pibackup.gz | sudo dd of=\/dev\/sda bs=1M<\/pre>\n\n\n\n<p>And after some time, you&#8217;ll get this once finished:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"> 1+936147 records in\n 1+936147 records out\n 32010928128 bytes (32 GB, 30 GiB) copied, 517.036 s, 61.9 MB\/s <\/pre>\n\n\n\n<p>Now you have your RPi&#8217;s system back on the SD card. Just remove it from the local machine, insert it in the RPi and you are good to go. <\/p>\n\n\n\n<br><hr>\n","protected":false},"excerpt":{"rendered":"<p>I think Raspbbery Pi is a great device and I love how easy and fun is to create IoT projects using it. I am using Raspberry Pi at my vacation house and also at my parents summer house. It is monitoring remotely the temperature, the voltage of batteries connected to the wind-turbine and solar-panels and [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":715,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"site-sidebar-layout":"default","site-content-layout":"","ast-site-content-layout":"default","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","ast-disable-related-posts":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"default","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"_FSMCFIC_featured_image_caption":"","_FSMCFIC_featured_image_nocaption":"","_FSMCFIC_featured_image_hide":"","footnotes":""},"categories":[16,7],"tags":[27,18,29],"class_list":["post-683","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-iot","category-linux","tag-backup","tag-raspberry","tag-remotely"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Backup your Raspberry Pi remotely - IT-REACT<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.it-react.com\/index.php\/2020\/02\/02\/backup-your-raspberry-pi-remotely\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Backup your Raspberry Pi remotely - IT-REACT\" \/>\n<meta property=\"og:description\" content=\"I think Raspbbery Pi is a great device and I love how easy and fun is to create IoT projects using it. I am using Raspberry Pi at my vacation house and also at my parents summer house. It is monitoring remotely the temperature, the voltage of batteries connected to the wind-turbine and solar-panels and [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.it-react.com\/index.php\/2020\/02\/02\/backup-your-raspberry-pi-remotely\/\" \/>\n<meta property=\"og:site_name\" content=\"IT-REACT\" \/>\n<meta property=\"article:published_time\" content=\"2020-02-02T14:29:41+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-05-08T11:00:02+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.it-react.com\/wp-content\/uploads\/2020\/02\/ingo-schulz-mwWZTLr9Tcg-unsplash-e1580675497622.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1080\" \/>\n\t<meta property=\"og:image:height\" content=\"299\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Ioan Penu\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Ioan Penu\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.it-react.com\\\/index.php\\\/2020\\\/02\\\/02\\\/backup-your-raspberry-pi-remotely\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.it-react.com\\\/index.php\\\/2020\\\/02\\\/02\\\/backup-your-raspberry-pi-remotely\\\/\"},\"author\":{\"name\":\"Ioan Penu\",\"@id\":\"https:\\\/\\\/www.it-react.com\\\/#\\\/schema\\\/person\\\/bf08cffeb4b02ee6baff5d56ab17c8f0\"},\"headline\":\"Backup your Raspberry Pi remotely\",\"datePublished\":\"2020-02-02T14:29:41+00:00\",\"dateModified\":\"2021-05-08T11:00:02+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.it-react.com\\\/index.php\\\/2020\\\/02\\\/02\\\/backup-your-raspberry-pi-remotely\\\/\"},\"wordCount\":597,\"commentCount\":6,\"publisher\":{\"@id\":\"https:\\\/\\\/www.it-react.com\\\/#\\\/schema\\\/person\\\/bf08cffeb4b02ee6baff5d56ab17c8f0\"},\"image\":{\"@id\":\"https:\\\/\\\/www.it-react.com\\\/index.php\\\/2020\\\/02\\\/02\\\/backup-your-raspberry-pi-remotely\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.it-react.com\\\/wp-content\\\/uploads\\\/2020\\\/02\\\/ingo-schulz-mwWZTLr9Tcg-unsplash-e1580675497622.jpg\",\"keywords\":[\"backup\",\"raspberry\",\"remotely\"],\"articleSection\":[\"IoT\",\"Linux\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.it-react.com\\\/index.php\\\/2020\\\/02\\\/02\\\/backup-your-raspberry-pi-remotely\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.it-react.com\\\/index.php\\\/2020\\\/02\\\/02\\\/backup-your-raspberry-pi-remotely\\\/\",\"url\":\"https:\\\/\\\/www.it-react.com\\\/index.php\\\/2020\\\/02\\\/02\\\/backup-your-raspberry-pi-remotely\\\/\",\"name\":\"Backup your Raspberry Pi remotely - IT-REACT\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.it-react.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.it-react.com\\\/index.php\\\/2020\\\/02\\\/02\\\/backup-your-raspberry-pi-remotely\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.it-react.com\\\/index.php\\\/2020\\\/02\\\/02\\\/backup-your-raspberry-pi-remotely\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.it-react.com\\\/wp-content\\\/uploads\\\/2020\\\/02\\\/ingo-schulz-mwWZTLr9Tcg-unsplash-e1580675497622.jpg\",\"datePublished\":\"2020-02-02T14:29:41+00:00\",\"dateModified\":\"2021-05-08T11:00:02+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.it-react.com\\\/index.php\\\/2020\\\/02\\\/02\\\/backup-your-raspberry-pi-remotely\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.it-react.com\\\/index.php\\\/2020\\\/02\\\/02\\\/backup-your-raspberry-pi-remotely\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.it-react.com\\\/index.php\\\/2020\\\/02\\\/02\\\/backup-your-raspberry-pi-remotely\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.it-react.com\\\/wp-content\\\/uploads\\\/2020\\\/02\\\/ingo-schulz-mwWZTLr9Tcg-unsplash-e1580675497622.jpg\",\"contentUrl\":\"https:\\\/\\\/www.it-react.com\\\/wp-content\\\/uploads\\\/2020\\\/02\\\/ingo-schulz-mwWZTLr9Tcg-unsplash-e1580675497622.jpg\",\"width\":1080,\"height\":299,\"caption\":\"Photo by Ingo Schulz on Unsplash\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.it-react.com\\\/index.php\\\/2020\\\/02\\\/02\\\/backup-your-raspberry-pi-remotely\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.it-react.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Backup your Raspberry Pi remotely\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.it-react.com\\\/#website\",\"url\":\"https:\\\/\\\/www.it-react.com\\\/\",\"name\":\"it-react\",\"description\":\"Ctrl\u2022Alt\u2022Automate\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.it-react.com\\\/#\\\/schema\\\/person\\\/bf08cffeb4b02ee6baff5d56ab17c8f0\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.it-react.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\\\/\\\/www.it-react.com\\\/#\\\/schema\\\/person\\\/bf08cffeb4b02ee6baff5d56ab17c8f0\",\"name\":\"Ioan Penu\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/2a2a1b6be0f322a113eea11669895227e284c6091424d65be6c3c706c2822975?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/2a2a1b6be0f322a113eea11669895227e284c6091424d65be6c3c706c2822975?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/2a2a1b6be0f322a113eea11669895227e284c6091424d65be6c3c706c2822975?s=96&d=mm&r=g\",\"caption\":\"Ioan Penu\"},\"logo\":{\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/2a2a1b6be0f322a113eea11669895227e284c6091424d65be6c3c706c2822975?s=96&d=mm&r=g\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Backup your Raspberry Pi remotely - IT-REACT","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.it-react.com\/index.php\/2020\/02\/02\/backup-your-raspberry-pi-remotely\/","og_locale":"en_US","og_type":"article","og_title":"Backup your Raspberry Pi remotely - IT-REACT","og_description":"I think Raspbbery Pi is a great device and I love how easy and fun is to create IoT projects using it. I am using Raspberry Pi at my vacation house and also at my parents summer house. It is monitoring remotely the temperature, the voltage of batteries connected to the wind-turbine and solar-panels and [&hellip;]","og_url":"https:\/\/www.it-react.com\/index.php\/2020\/02\/02\/backup-your-raspberry-pi-remotely\/","og_site_name":"IT-REACT","article_published_time":"2020-02-02T14:29:41+00:00","article_modified_time":"2021-05-08T11:00:02+00:00","og_image":[{"width":1080,"height":299,"url":"https:\/\/www.it-react.com\/wp-content\/uploads\/2020\/02\/ingo-schulz-mwWZTLr9Tcg-unsplash-e1580675497622.jpg","type":"image\/jpeg"}],"author":"Ioan Penu","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Ioan Penu","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.it-react.com\/index.php\/2020\/02\/02\/backup-your-raspberry-pi-remotely\/#article","isPartOf":{"@id":"https:\/\/www.it-react.com\/index.php\/2020\/02\/02\/backup-your-raspberry-pi-remotely\/"},"author":{"name":"Ioan Penu","@id":"https:\/\/www.it-react.com\/#\/schema\/person\/bf08cffeb4b02ee6baff5d56ab17c8f0"},"headline":"Backup your Raspberry Pi remotely","datePublished":"2020-02-02T14:29:41+00:00","dateModified":"2021-05-08T11:00:02+00:00","mainEntityOfPage":{"@id":"https:\/\/www.it-react.com\/index.php\/2020\/02\/02\/backup-your-raspberry-pi-remotely\/"},"wordCount":597,"commentCount":6,"publisher":{"@id":"https:\/\/www.it-react.com\/#\/schema\/person\/bf08cffeb4b02ee6baff5d56ab17c8f0"},"image":{"@id":"https:\/\/www.it-react.com\/index.php\/2020\/02\/02\/backup-your-raspberry-pi-remotely\/#primaryimage"},"thumbnailUrl":"https:\/\/www.it-react.com\/wp-content\/uploads\/2020\/02\/ingo-schulz-mwWZTLr9Tcg-unsplash-e1580675497622.jpg","keywords":["backup","raspberry","remotely"],"articleSection":["IoT","Linux"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.it-react.com\/index.php\/2020\/02\/02\/backup-your-raspberry-pi-remotely\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.it-react.com\/index.php\/2020\/02\/02\/backup-your-raspberry-pi-remotely\/","url":"https:\/\/www.it-react.com\/index.php\/2020\/02\/02\/backup-your-raspberry-pi-remotely\/","name":"Backup your Raspberry Pi remotely - IT-REACT","isPartOf":{"@id":"https:\/\/www.it-react.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.it-react.com\/index.php\/2020\/02\/02\/backup-your-raspberry-pi-remotely\/#primaryimage"},"image":{"@id":"https:\/\/www.it-react.com\/index.php\/2020\/02\/02\/backup-your-raspberry-pi-remotely\/#primaryimage"},"thumbnailUrl":"https:\/\/www.it-react.com\/wp-content\/uploads\/2020\/02\/ingo-schulz-mwWZTLr9Tcg-unsplash-e1580675497622.jpg","datePublished":"2020-02-02T14:29:41+00:00","dateModified":"2021-05-08T11:00:02+00:00","breadcrumb":{"@id":"https:\/\/www.it-react.com\/index.php\/2020\/02\/02\/backup-your-raspberry-pi-remotely\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.it-react.com\/index.php\/2020\/02\/02\/backup-your-raspberry-pi-remotely\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.it-react.com\/index.php\/2020\/02\/02\/backup-your-raspberry-pi-remotely\/#primaryimage","url":"https:\/\/www.it-react.com\/wp-content\/uploads\/2020\/02\/ingo-schulz-mwWZTLr9Tcg-unsplash-e1580675497622.jpg","contentUrl":"https:\/\/www.it-react.com\/wp-content\/uploads\/2020\/02\/ingo-schulz-mwWZTLr9Tcg-unsplash-e1580675497622.jpg","width":1080,"height":299,"caption":"Photo by Ingo Schulz on Unsplash"},{"@type":"BreadcrumbList","@id":"https:\/\/www.it-react.com\/index.php\/2020\/02\/02\/backup-your-raspberry-pi-remotely\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.it-react.com\/"},{"@type":"ListItem","position":2,"name":"Backup your Raspberry Pi remotely"}]},{"@type":"WebSite","@id":"https:\/\/www.it-react.com\/#website","url":"https:\/\/www.it-react.com\/","name":"it-react","description":"Ctrl\u2022Alt\u2022Automate","publisher":{"@id":"https:\/\/www.it-react.com\/#\/schema\/person\/bf08cffeb4b02ee6baff5d56ab17c8f0"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.it-react.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/www.it-react.com\/#\/schema\/person\/bf08cffeb4b02ee6baff5d56ab17c8f0","name":"Ioan Penu","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/2a2a1b6be0f322a113eea11669895227e284c6091424d65be6c3c706c2822975?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/2a2a1b6be0f322a113eea11669895227e284c6091424d65be6c3c706c2822975?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/2a2a1b6be0f322a113eea11669895227e284c6091424d65be6c3c706c2822975?s=96&d=mm&r=g","caption":"Ioan Penu"},"logo":{"@id":"https:\/\/secure.gravatar.com\/avatar\/2a2a1b6be0f322a113eea11669895227e284c6091424d65be6c3c706c2822975?s=96&d=mm&r=g"}}]}},"_links":{"self":[{"href":"https:\/\/www.it-react.com\/index.php\/wp-json\/wp\/v2\/posts\/683","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.it-react.com\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.it-react.com\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.it-react.com\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.it-react.com\/index.php\/wp-json\/wp\/v2\/comments?post=683"}],"version-history":[{"count":110,"href":"https:\/\/www.it-react.com\/index.php\/wp-json\/wp\/v2\/posts\/683\/revisions"}],"predecessor-version":[{"id":2998,"href":"https:\/\/www.it-react.com\/index.php\/wp-json\/wp\/v2\/posts\/683\/revisions\/2998"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.it-react.com\/index.php\/wp-json\/wp\/v2\/media\/715"}],"wp:attachment":[{"href":"https:\/\/www.it-react.com\/index.php\/wp-json\/wp\/v2\/media?parent=683"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.it-react.com\/index.php\/wp-json\/wp\/v2\/categories?post=683"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.it-react.com\/index.php\/wp-json\/wp\/v2\/tags?post=683"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}