{"id":8,"date":"2015-10-13T16:01:11","date_gmt":"2015-10-13T15:01:11","guid":{"rendered":"https:\/\/blogs.churlaud.com\/somefoobar\/?p=8"},"modified":"2016-02-10T12:19:20","modified_gmt":"2016-02-10T11:19:20","slug":"installing-the-raspberry-pi","status":"publish","type":"post","link":"https:\/\/blogs.churlaud.com\/somefoobar\/2015\/10\/13\/installing-the-raspberry-pi\/","title":{"rendered":"Installing the Raspberry Pi"},"content":{"rendered":"<p>I&#8217;ve got this Raspberry Pi 1 Model B for almost 2 years. I did install ArchLinux on it a while ago and played a little. And then, because I had no project it could be used for, I just left it in a closet&#8230; Until yesterday, that a friend came out with a good idea.<\/p>\n<p>Let&#8217;s start from the beginning again, and see how to install it from scratch.<\/p>\n<h3>Prepare the SD Card<\/h3>\n<p>Of course, an SD card is needed. 8 Go is really enough.<\/p>\n<p>I followed the documentation of ArchLinux ARM <a href=\"http:\/\/archlinuxarm.org\/platforms\/armv6\/raspberry-pi\">[1]<\/a>, and adapted it to my needs.<\/p>\n<p>In my case the SD Card was referenced in the file system as <kbd>\/dev\/mmcblk0<\/kbd>. Replace it by the corresponding name on your own system.<\/p>\n<h4>Partitioning with fdisk<\/h4>\n<p>We only create 3 partitions. The <kbd>\/boot<\/kbd> one, the <kbd>\/<\/kbd> (root) and the swap (file exchange partition). You could also separate the <kbd>\/home<\/kbd> partition from the root one, but on a raspberry, it&#8217;s not so relevant<cneed>[citation needed]<\/cneed>. So we&#8217;ll have 3 partitions:<\/p>\n<ul>\n<li><kbd>\/dev\/mmcblk0p1<\/kbd> for <kbd>\/boot<\/kbd>\n<li><kbd>\/dev\/mmcblk0p2<\/kbd> for <kbd>\/<\/kbd>\n<li><kbd>\/dev\/mmcblk0p3<\/kbd> for the swap\n<\/ul>\n<p>With fdisk  <a href=\"http:\/\/tldp.org\/HOWTO\/Partition\/fdisk_partitioning.html\">[2]<\/a>, nothing is <i>actually<\/i> done to the disk before you type <b>w<\/b> in the main menu to write the modification. In case you&#8217;re not sure of what you&#8217;ve done, exit the program and start again&#8230;<\/p>\n<p><code># fdisk \/dev\/mmcblk0<\/code><\/p>\n<ul>\n<li><b>Type o<\/b> to clear all partitions<\/li>\n<li><b>Type p<\/b> to list all partitions (it should be empty)<\/li>\n<\/ul>\n<h5>1st partition: \/boot<\/h5>\n<ul>\n<li><b>Type n<\/b> to add a partitions, then <b>1<\/b> (it&#8217;s the first partition), then <b>ENTER<\/b> to begin on first sector, then <b>+100M<\/b> for the last sector<\/li>\n<li><b>Type t<\/b>, then <b>c<\/b> to set the first partition to type <kbd>W95 FAT32<\/kbd><\/li>\n<\/ul>\n<h5>2nd partition: \/<\/h5>\n<ul>\n<li><b>Type n<\/b> to add a partitions, then <b>ENTER<\/b> (it&#8217;s the second partition), then <b>ENTER<\/b> to begin on next sector, then <b>+XXXM<\/b> for the last sector with XXX = <em>total_size<\/em>-1G<\/li>\n<li><b>Type t<\/b>, then <b>83<\/b> to set the first partition to type <kbd>Linux<\/kbd><\/li>\n<\/ul>\n<h5>3rd partition: swap<\/h5>\n<ul>\n<li><b>Type n<\/b> to add a partitions, then <b>ENTER<\/b> (it&#8217;s the third partition), then <b>ENTER<\/b> to begin on next sector, then <b>ENTER<\/b> for the last sector<\/li>\n<li><b>Type t<\/b>, then <b>82<\/b> to set the first partition to type <kbd>Linux Swap<\/kbd><\/li>\n<\/ul>\n<p>The partition table can no be written and exited with <b>w<\/b><\/p>\n<h4>Creation of the filesystems<\/h4>\n<p><code># mkfs.vfat \/dev\/mmcblk0p1<br \/>\n# mkfs.ext4 \/dev\/mmcblk0p2<\/code><\/p>\n<h4>Populationg the filesytems<\/h4>\n<p>First mount the partitions:<br \/>\n<code>$ mkdir {boot,root}<br \/>\n# mount \/dev\/mmcblk0p1 boot<br \/>\n# mount \/dev\/mmcblk0p2 root<\/code><\/p>\n<p>Download and extract the root filesystem:<br \/>\n<code>$ wget http:\/\/archlinuxarm.org\/os\/ArchLinuxARM-rpi-latest.tar.gz<\/code><br \/>\n<code># bsdtar -xpf ArchLinuxARM-rpi-latest.tar.gz -C root<br \/>\n# sync<\/code><\/p>\n<p>Move boot files to the first partition:<br \/>\n<code># mv root\/boot\/* boot<\/code><\/p>\n<h4>Unmounting the partitions and starting the Raspberry<\/h4>\n<p>Unmount the two partitions:<br \/>\n<code># umount boot root<\/code><\/p>\n<p>The SD card can now be inserted into the Raspberry Pi. When the Raspberry Pi came out, you first add to connect to a screen and keyboard to go through the installation, configure the connection and ssh. But hopefully, you can now directly connect with the ethernet, and apply the 5V power. Then use the SSH to the IP address given to the board by your router\/DHCP. Login as the default user <kbd>alarm<\/kbd> with the password <kbd>alarm<\/kbd>. The default root password is <kbd>root<\/kbd>.<\/p>\n<p><code>ssh alarm@alarmpi<\/code><\/p>\n<h3>Setup the swap<\/h3>\n<p>Check that the swap is off (the next command shouldn&#8217;t output anything):<br \/>\n<code># swapon -s<\/code><\/p>\n<p>Setup the swap partition (remember: ours is the 3rd one) and turn it on:<br \/>\n<code>#  mkswap \/dev\/mmcblk0p3<br \/>\n# swapon \/dev\/mmcblk0p3<\/code><\/p>\n<p>Systemd will by default start it at boot.<\/p>\n<h3>Setup the environment<\/h3>\n<h4>Accounts<\/h4>\n<p>Change the root password:<br \/>\n<code># passwd<\/code><\/p>\n<p>Add your user account:<br \/>\n<code># useradd -c MyName -md \/home\/mylogin mylogin<br \/>\n# passwd mylogin<\/code><\/p>\n<h4>Install the basic packages<\/h4>\n<p><code># pacman -S --needed base-devel<br \/>\n# pacman -S vim zsh python ...<\/code><\/p>\n<p>You now have a simple ArchLinux on your Raspberry Pi, that you can use like any other Linux system&#8230;<\/p>\n<h3>Sources<\/h3>\n<p>[1] <a href=\"http:\/\/archlinuxarm.org\/platforms\/armv6\/raspberry-pi\">http:\/\/archlinuxarm.org\/platforms\/armv6\/raspberry-pi<\/a><br \/>\n[2] <a href=\"http:\/\/tldp.org\/HOWTO\/Partition\/fdisk_partitioning.html\">http:\/\/tldp.org\/HOWTO\/Partition\/fdisk_partitioning.html<\/a><br \/>\n[3] <a href=\"https:\/\/wiki.archlinux.org\/index.php\/Swap\">https:\/\/wiki.archlinux.org\/index.php\/Swap<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>I&#8217;ve got this Raspberry Pi 1 Model B for almost 2 years. I did install ArchLinux on it a while ago and played a little. And then, because I had no project it could be used for, I just left it in a closet&#8230; Until yesterday, that a friend came out with a good idea.<\/p>\n<p><a class=\"button\" href=\"https:\/\/blogs.churlaud.com\/somefoobar\/2015\/10\/13\/installing-the-raspberry-pi\/\" title=\"More\">  Read More \u2192<\/a><\/p>\n","protected":false},"author":8,"featured_media":38,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"iawp_total_views":7,"footnotes":""},"categories":[3,2],"tags":[5,7,4,6,8],"class_list":["post-8","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-linux","category-raspberrypi","tag-archlinux","tag-install","tag-linux","tag-rapberrypi","tag-setup"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Installing the Raspberry Pi - Just some FooBar<\/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:\/\/blogs.churlaud.com\/somefoobar\/2015\/10\/13\/installing-the-raspberry-pi\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Installing the Raspberry Pi - Just some FooBar\" \/>\n<meta property=\"og:description\" content=\"I&#8217;ve got this Raspberry Pi 1 Model B for almost 2 years. I did install ArchLinux on it a while ago and played a little. And then, because I had no project it could be used for, I just left it in a closet&#8230; Until yesterday, that a friend came out with a good idea. Read More \u2192\" \/>\n<meta property=\"og:url\" content=\"https:\/\/blogs.churlaud.com\/somefoobar\/2015\/10\/13\/installing-the-raspberry-pi\/\" \/>\n<meta property=\"og:site_name\" content=\"Just some FooBar\" \/>\n<meta property=\"article:published_time\" content=\"2015-10-13T15:01:11+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2016-02-10T11:19:20+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/blogs.churlaud.com\/somefoobar\/wp-content\/uploads\/sites\/5\/2015\/10\/RaspberryPi.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"960\" \/>\n\t<meta property=\"og:image:height\" content=\"720\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Olivier\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Olivier\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/blogs.churlaud.com\/somefoobar\/2015\/10\/13\/installing-the-raspberry-pi\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/blogs.churlaud.com\/somefoobar\/2015\/10\/13\/installing-the-raspberry-pi\/\"},\"author\":{\"name\":\"Olivier\",\"@id\":\"https:\/\/blogs.churlaud.com\/somefoobar\/#\/schema\/person\/ee53ba4920ebe33c29228fd0e42e42f6\"},\"headline\":\"Installing the Raspberry Pi\",\"datePublished\":\"2015-10-13T15:01:11+00:00\",\"dateModified\":\"2016-02-10T11:19:20+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/blogs.churlaud.com\/somefoobar\/2015\/10\/13\/installing-the-raspberry-pi\/\"},\"wordCount\":591,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/blogs.churlaud.com\/somefoobar\/2015\/10\/13\/installing-the-raspberry-pi\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/blogs.churlaud.com\/somefoobar\/wp-content\/uploads\/sites\/5\/2015\/10\/RaspberryPi.jpg\",\"keywords\":[\"ArchLinux\",\"Install\",\"Linux\",\"RapberryPi\",\"Setup\"],\"articleSection\":[\"Linux\",\"RaspberryPi\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/blogs.churlaud.com\/somefoobar\/2015\/10\/13\/installing-the-raspberry-pi\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/blogs.churlaud.com\/somefoobar\/2015\/10\/13\/installing-the-raspberry-pi\/\",\"url\":\"https:\/\/blogs.churlaud.com\/somefoobar\/2015\/10\/13\/installing-the-raspberry-pi\/\",\"name\":\"Installing the Raspberry Pi - Just some FooBar\",\"isPartOf\":{\"@id\":\"https:\/\/blogs.churlaud.com\/somefoobar\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/blogs.churlaud.com\/somefoobar\/2015\/10\/13\/installing-the-raspberry-pi\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/blogs.churlaud.com\/somefoobar\/2015\/10\/13\/installing-the-raspberry-pi\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/blogs.churlaud.com\/somefoobar\/wp-content\/uploads\/sites\/5\/2015\/10\/RaspberryPi.jpg\",\"datePublished\":\"2015-10-13T15:01:11+00:00\",\"dateModified\":\"2016-02-10T11:19:20+00:00\",\"author\":{\"@id\":\"https:\/\/blogs.churlaud.com\/somefoobar\/#\/schema\/person\/ee53ba4920ebe33c29228fd0e42e42f6\"},\"breadcrumb\":{\"@id\":\"https:\/\/blogs.churlaud.com\/somefoobar\/2015\/10\/13\/installing-the-raspberry-pi\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/blogs.churlaud.com\/somefoobar\/2015\/10\/13\/installing-the-raspberry-pi\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/blogs.churlaud.com\/somefoobar\/2015\/10\/13\/installing-the-raspberry-pi\/#primaryimage\",\"url\":\"https:\/\/blogs.churlaud.com\/somefoobar\/wp-content\/uploads\/sites\/5\/2015\/10\/RaspberryPi.jpg\",\"contentUrl\":\"https:\/\/blogs.churlaud.com\/somefoobar\/wp-content\/uploads\/sites\/5\/2015\/10\/RaspberryPi.jpg\",\"width\":960,\"height\":720,\"caption\":\"Raspberry Pi\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/blogs.churlaud.com\/somefoobar\/2015\/10\/13\/installing-the-raspberry-pi\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Accueil\",\"item\":\"https:\/\/blogs.churlaud.com\/somefoobar\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Installing the Raspberry Pi\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/blogs.churlaud.com\/somefoobar\/#website\",\"url\":\"https:\/\/blogs.churlaud.com\/somefoobar\/\",\"name\":\"Just some FooBar\",\"description\":\"Not much to say...\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/blogs.churlaud.com\/somefoobar\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/blogs.churlaud.com\/somefoobar\/#\/schema\/person\/ee53ba4920ebe33c29228fd0e42e42f6\",\"name\":\"Olivier\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/da8de930ce1a22e92ce36b824ee34d1230fb0294d77eebfaa645282ed474f688?s=96&d=mm&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/da8de930ce1a22e92ce36b824ee34d1230fb0294d77eebfaa645282ed474f688?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/da8de930ce1a22e92ce36b824ee34d1230fb0294d77eebfaa645282ed474f688?s=96&d=mm&r=g\",\"caption\":\"Olivier\"},\"sameAs\":[\"http:\/\/olivier.churlaud.com\"],\"url\":\"https:\/\/blogs.churlaud.com\/somefoobar\/author\/olivier\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Installing the Raspberry Pi - Just some FooBar","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:\/\/blogs.churlaud.com\/somefoobar\/2015\/10\/13\/installing-the-raspberry-pi\/","og_locale":"en_US","og_type":"article","og_title":"Installing the Raspberry Pi - Just some FooBar","og_description":"I&#8217;ve got this Raspberry Pi 1 Model B for almost 2 years. I did install ArchLinux on it a while ago and played a little. And then, because I had no project it could be used for, I just left it in a closet&#8230; Until yesterday, that a friend came out with a good idea. Read More \u2192","og_url":"https:\/\/blogs.churlaud.com\/somefoobar\/2015\/10\/13\/installing-the-raspberry-pi\/","og_site_name":"Just some FooBar","article_published_time":"2015-10-13T15:01:11+00:00","article_modified_time":"2016-02-10T11:19:20+00:00","og_image":[{"width":960,"height":720,"url":"https:\/\/blogs.churlaud.com\/somefoobar\/wp-content\/uploads\/sites\/5\/2015\/10\/RaspberryPi.jpg","type":"image\/jpeg"}],"author":"Olivier","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Olivier","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/blogs.churlaud.com\/somefoobar\/2015\/10\/13\/installing-the-raspberry-pi\/#article","isPartOf":{"@id":"https:\/\/blogs.churlaud.com\/somefoobar\/2015\/10\/13\/installing-the-raspberry-pi\/"},"author":{"name":"Olivier","@id":"https:\/\/blogs.churlaud.com\/somefoobar\/#\/schema\/person\/ee53ba4920ebe33c29228fd0e42e42f6"},"headline":"Installing the Raspberry Pi","datePublished":"2015-10-13T15:01:11+00:00","dateModified":"2016-02-10T11:19:20+00:00","mainEntityOfPage":{"@id":"https:\/\/blogs.churlaud.com\/somefoobar\/2015\/10\/13\/installing-the-raspberry-pi\/"},"wordCount":591,"commentCount":0,"image":{"@id":"https:\/\/blogs.churlaud.com\/somefoobar\/2015\/10\/13\/installing-the-raspberry-pi\/#primaryimage"},"thumbnailUrl":"https:\/\/blogs.churlaud.com\/somefoobar\/wp-content\/uploads\/sites\/5\/2015\/10\/RaspberryPi.jpg","keywords":["ArchLinux","Install","Linux","RapberryPi","Setup"],"articleSection":["Linux","RaspberryPi"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/blogs.churlaud.com\/somefoobar\/2015\/10\/13\/installing-the-raspberry-pi\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/blogs.churlaud.com\/somefoobar\/2015\/10\/13\/installing-the-raspberry-pi\/","url":"https:\/\/blogs.churlaud.com\/somefoobar\/2015\/10\/13\/installing-the-raspberry-pi\/","name":"Installing the Raspberry Pi - Just some FooBar","isPartOf":{"@id":"https:\/\/blogs.churlaud.com\/somefoobar\/#website"},"primaryImageOfPage":{"@id":"https:\/\/blogs.churlaud.com\/somefoobar\/2015\/10\/13\/installing-the-raspberry-pi\/#primaryimage"},"image":{"@id":"https:\/\/blogs.churlaud.com\/somefoobar\/2015\/10\/13\/installing-the-raspberry-pi\/#primaryimage"},"thumbnailUrl":"https:\/\/blogs.churlaud.com\/somefoobar\/wp-content\/uploads\/sites\/5\/2015\/10\/RaspberryPi.jpg","datePublished":"2015-10-13T15:01:11+00:00","dateModified":"2016-02-10T11:19:20+00:00","author":{"@id":"https:\/\/blogs.churlaud.com\/somefoobar\/#\/schema\/person\/ee53ba4920ebe33c29228fd0e42e42f6"},"breadcrumb":{"@id":"https:\/\/blogs.churlaud.com\/somefoobar\/2015\/10\/13\/installing-the-raspberry-pi\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/blogs.churlaud.com\/somefoobar\/2015\/10\/13\/installing-the-raspberry-pi\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/blogs.churlaud.com\/somefoobar\/2015\/10\/13\/installing-the-raspberry-pi\/#primaryimage","url":"https:\/\/blogs.churlaud.com\/somefoobar\/wp-content\/uploads\/sites\/5\/2015\/10\/RaspberryPi.jpg","contentUrl":"https:\/\/blogs.churlaud.com\/somefoobar\/wp-content\/uploads\/sites\/5\/2015\/10\/RaspberryPi.jpg","width":960,"height":720,"caption":"Raspberry Pi"},{"@type":"BreadcrumbList","@id":"https:\/\/blogs.churlaud.com\/somefoobar\/2015\/10\/13\/installing-the-raspberry-pi\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https:\/\/blogs.churlaud.com\/somefoobar\/"},{"@type":"ListItem","position":2,"name":"Installing the Raspberry Pi"}]},{"@type":"WebSite","@id":"https:\/\/blogs.churlaud.com\/somefoobar\/#website","url":"https:\/\/blogs.churlaud.com\/somefoobar\/","name":"Just some FooBar","description":"Not much to say...","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/blogs.churlaud.com\/somefoobar\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/blogs.churlaud.com\/somefoobar\/#\/schema\/person\/ee53ba4920ebe33c29228fd0e42e42f6","name":"Olivier","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/da8de930ce1a22e92ce36b824ee34d1230fb0294d77eebfaa645282ed474f688?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/da8de930ce1a22e92ce36b824ee34d1230fb0294d77eebfaa645282ed474f688?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/da8de930ce1a22e92ce36b824ee34d1230fb0294d77eebfaa645282ed474f688?s=96&d=mm&r=g","caption":"Olivier"},"sameAs":["http:\/\/olivier.churlaud.com"],"url":"https:\/\/blogs.churlaud.com\/somefoobar\/author\/olivier\/"}]}},"_links":{"self":[{"href":"https:\/\/blogs.churlaud.com\/somefoobar\/wp-json\/wp\/v2\/posts\/8","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/blogs.churlaud.com\/somefoobar\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/blogs.churlaud.com\/somefoobar\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/blogs.churlaud.com\/somefoobar\/wp-json\/wp\/v2\/users\/8"}],"replies":[{"embeddable":true,"href":"https:\/\/blogs.churlaud.com\/somefoobar\/wp-json\/wp\/v2\/comments?post=8"}],"version-history":[{"count":34,"href":"https:\/\/blogs.churlaud.com\/somefoobar\/wp-json\/wp\/v2\/posts\/8\/revisions"}],"predecessor-version":[{"id":37,"href":"https:\/\/blogs.churlaud.com\/somefoobar\/wp-json\/wp\/v2\/posts\/8\/revisions\/37"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/blogs.churlaud.com\/somefoobar\/wp-json\/wp\/v2\/media\/38"}],"wp:attachment":[{"href":"https:\/\/blogs.churlaud.com\/somefoobar\/wp-json\/wp\/v2\/media?parent=8"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/blogs.churlaud.com\/somefoobar\/wp-json\/wp\/v2\/categories?post=8"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/blogs.churlaud.com\/somefoobar\/wp-json\/wp\/v2\/tags?post=8"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}