{"id":4149,"date":"2012-07-06T15:05:40","date_gmt":"2012-07-06T14:05:40","guid":{"rendered":"http:\/\/www.markwilson.co.uk\/blog\/?p=4149"},"modified":"2012-08-16T01:43:34","modified_gmt":"2012-08-16T00:43:34","slug":"getting-started-with-raspberry-pi-raspi-take-2","status":"publish","type":"post","link":"https:\/\/www.markwilson.co.uk\/blog\/2012\/07\/getting-started-with-raspberry-pi-raspi-take-2.htm","title":{"rendered":"Getting started with Raspberry Pi (#RasPi): Take 2"},"content":{"rendered":"<p><a href=\"http:\/\/raspberrypi.org\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" class=\"alignleft\" title=\"Raspberry Pi logo - Raspberry Pi is a trademark of the Raspberry Pi Foundation\" src=\"https:\/\/i0.wp.com\/www.markwilson.co.uk\/blog\/images\/raspi-logo.png?resize=56%2C69&#038;ssl=1\" alt=\"Raspberry Pi is a trademark of the Raspberry Pi Foundation\" width=\"56\" height=\"69\" \/><\/a>A couple of months ago, I wrote about <a href=\"https:\/\/www.markwilson.co.uk\/blog\/2012\/05\/getting-started-with-raspberry-pi-raspi.htm\">getting started with Raspberry Pi<\/a>\u00a0but I have to admit it wasn&#8217;t exactly successful. In true open source style the Raspberry Pi FAQ (since updated) contradicted the downloads page\/quickstart guide and <a href=\"http:\/\/www.raspberrypi.org\/archives\/805\">an official blog post suggested that Fedora was the recommended distro<\/a>. \u00a0I had some issues with Fedora, not least that <a href=\"http:\/\/www.raspberrypi.org\/phpBB3\/viewtopic.php?f=27&amp;t=8521\">a graphical login seemed to fail (there&#8217;s a forum post that suggests why that might be a problem<\/a>) but also with getting hold of Scratch (which is something I want to use the Pi for, with my sons).<\/p>\n<p>Last night I tried again, reflashing my Pi&#8217;s SD card using the Debian 6 &#8220;Squeeze&#8221; distro from the <a href=\"http:\/\/www.raspberrypi.org\/downloads\">Raspberry Pi downloads page<\/a>. There are various tools to do this (I used <a href=\"http:\/\/www.softpedia.com\/get\/CD-DVD-Tools\/Data-CD-DVD-Burning\/Win32-Disk-Imager.shtml\">Win32DiskImager<\/a>, also recommended on the downloads page, although the Softpedia download site is UX disaster, but Linux and Mac users already have <code>dd<\/code> and there is <a href=\"http:\/\/www.element14.com\/community\/docs\/DOC-44237\/l\/dd-removable-for-windows\">a Windows port of <code>dd<\/code> that Element 14 are\u00a0distributing<\/a>).<\/p>\n<p>With the SD card flashed, I booted the system, logged in (username <code>pi<\/code>, password <code>raspberry<\/code>) and set about resizing the 2GB image to fill my 8GB SD card. \u00a0<a href=\"http:\/\/elinux.org\/RPi_Resize_Flash_Partitions\">There&#8217;s good advice for resizing flash partitions on the Embedded Linux Wiki<\/a>\u00a0and the steps I took were:<\/p>\n<ol>\n<li>Edit the partition table:<br \/>\n<code>sudo fdisk -cu \/dev\/mmcblk0<\/code><br \/>\n<code>p<\/code> (to view the partition table)<br \/>\n<code>d<\/code> (to delete a partition)<br \/>\n<code>3<\/code> (to select partition 3)<br \/>\n<code>d<\/code> (to delete a partition)<br \/>\n<code>3<\/code> (to select partition 2)<br \/>\n<code>n<\/code> (to create a new partition)<br \/>\n<code>p<\/code> (to make it a primary partition)<br \/>\n<code>2<\/code> (to create partition 2)<br \/>\n<code>157696<\/code> (to set the starting position to match the old partition table &#8211; see the output from the <code>p<\/code> command earlier)<br \/>\nPress the <code>Enter<\/code> key (to set the maximum available partition size)<br \/>\n<code>w<\/code> (to write the partition table)<\/li>\n<li>Then, reboot:<br \/>\n<code>sudo shutdown -r now<\/code><\/li>\n<li>After logging in again, resize the partition:<br \/>\n<code>sudo resize2fs \/dev\/mmcblk0p2<\/code><\/li>\n<li>Finally, check the new size:<br \/>\n<code>df -h<\/code><\/li>\n<\/ol>\n<p>With a working system, I <a href=\"http:\/\/www.raspberrypi.org\/phpBB3\/viewtopic.php?f=26&amp;t=9488\">launched the LXDE graphical user interface with\u00a0<code>startx<\/code><\/a>. and found that there is a decent amount of software (including Scratch, Python, etc.) already installed. It&#8217;s also possible to\u00a0<a href=\"http:\/\/elinux.org\/RPi_Remote_Access\">access the Raspberry Pi remotely<\/a>\u00a0and run the GUI on another system with X Windows\/SSH.<\/p>\n<p>Back in the command line, I wanted to install a twitter client (so that my Pi can tweet status updates) and <a href=\"https:\/\/www.markwilson.co.uk\/blog\/2012\/03\/some-useful-stuff-to-install-on-a-linux-machine.htm\">Twidge is my favourite (CLI-based) client on a Linux system<\/a>. \u00a0<a href=\"http:\/\/www.designspark.com\/content\/tweety-pi\">Romilly Cocking has written about installing Twidge on the Pi (Tweety Pi!)<\/a>\u00a0but I found I needed to run <code>sudo apt-get update<\/code> before I could successfully complete the <code>sudo apt-get twidge<\/code> command (without the update, there were lots of 404 errors for missing dependencies). As I was running Terminal inside the LXDE environment, I could use Midori to authorise Twidge via the Twitter API, completing the <code>twidge setup<\/code> process, before sending a couple of tweets. \u00a0If you don&#8217;t like Midori, I couldn&#8217;t find a suitable version of Firefox but <a href=\"http:\/\/raspberrypi.stackexchange.com\/questions\/374\/how-do-i-install-google-chrome\">I understand Google Chromium can be installed on the RasPi<\/a> using the <code>sudo apt-get install chromium-browser<\/code> command).<\/p>\n<p>I&#8217;m much happier with the Pi now it&#8217;s running Debian &#8211; and tonight&#8217;s activity involves creating a case for it out of an old business card box (an Altoids tin won&#8217;t fit!) &#8211; watch this space for more details!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>A couple of months ago, I wrote about getting started with Raspberry Pi\u00a0but I have to admit it wasn&#8217;t exactly successful. In true open source style the Raspberry Pi FAQ (since updated) contradicted the downloads page\/quickstart guide and an official blog post suggested that Fedora was the recommended distro. \u00a0I had some issues with Fedora, &hellip; <a href=\"https:\/\/www.markwilson.co.uk\/blog\/2012\/07\/getting-started-with-raspberry-pi-raspi-take-2.htm\" class=\"more-link\">Continue reading <span class=\"screen-reader-text\">Getting started with Raspberry Pi (#RasPi): Take 2<\/span><\/a><\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_exactmetrics_skip_tracking":false,"_exactmetrics_sitenote_active":false,"_exactmetrics_sitenote_note":"","_exactmetrics_sitenote_category":0,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[218],"tags":[3,381],"class_list":["post-4149","post","type-post","status-publish","format-standard","hentry","category-technology","tag-linux","tag-raspberry-pi"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Getting started with Raspberry Pi (#RasPi): Take 2 - markwilson.it<\/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.markwilson.co.uk\/blog\/2012\/07\/getting-started-with-raspberry-pi-raspi-take-2.htm\" \/>\n<meta property=\"og:locale\" content=\"en_GB\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Getting started with Raspberry Pi (#RasPi): Take 2 - markwilson.it\" \/>\n<meta property=\"og:description\" content=\"A couple of months ago, I wrote about getting started with Raspberry Pi\u00a0but I have to admit it wasn&#8217;t exactly successful. In true open source style the Raspberry Pi FAQ (since updated) contradicted the downloads page\/quickstart guide and an official blog post suggested that Fedora was the recommended distro. \u00a0I had some issues with Fedora, &hellip; Continue reading Getting started with Raspberry Pi (#RasPi): Take 2\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.markwilson.co.uk\/blog\/2012\/07\/getting-started-with-raspberry-pi-raspi-take-2.htm\" \/>\n<meta property=\"og:site_name\" content=\"markwilson.it\" \/>\n<meta property=\"article:published_time\" content=\"2012-07-06T14:05:40+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2012-08-16T00:43:34+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.markwilson.co.uk\/blog\/images\/raspi-logo.png\" \/>\n<meta name=\"author\" content=\"Mark Wilson\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@markwilsonit\" \/>\n<meta name=\"twitter:site\" content=\"@markwilsonit\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Mark Wilson\" \/>\n\t<meta name=\"twitter:label2\" content=\"Estimated 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:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/2012\\\/07\\\/getting-started-with-raspberry-pi-raspi-take-2.htm#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/2012\\\/07\\\/getting-started-with-raspberry-pi-raspi-take-2.htm\"},\"author\":{\"name\":\"Mark Wilson\",\"@id\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/#\\\/schema\\\/person\\\/98f61365e7c39d6be942174b8c4de468\"},\"headline\":\"Getting started with Raspberry Pi (#RasPi): Take 2\",\"datePublished\":\"2012-07-06T14:05:40+00:00\",\"dateModified\":\"2012-08-16T00:43:34+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/2012\\\/07\\\/getting-started-with-raspberry-pi-raspi-take-2.htm\"},\"wordCount\":520,\"commentCount\":3,\"publisher\":{\"@id\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/#\\\/schema\\\/person\\\/98f61365e7c39d6be942174b8c4de468\"},\"image\":{\"@id\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/2012\\\/07\\\/getting-started-with-raspberry-pi-raspi-take-2.htm#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/images\\\/raspi-logo.png\",\"keywords\":[\"Linux\",\"Raspberry Pi\"],\"articleSection\":[\"Technology\"],\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/2012\\\/07\\\/getting-started-with-raspberry-pi-raspi-take-2.htm#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/2012\\\/07\\\/getting-started-with-raspberry-pi-raspi-take-2.htm\",\"url\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/2012\\\/07\\\/getting-started-with-raspberry-pi-raspi-take-2.htm\",\"name\":\"Getting started with Raspberry Pi (#RasPi): Take 2 - markwilson.it\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/2012\\\/07\\\/getting-started-with-raspberry-pi-raspi-take-2.htm#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/2012\\\/07\\\/getting-started-with-raspberry-pi-raspi-take-2.htm#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/images\\\/raspi-logo.png\",\"datePublished\":\"2012-07-06T14:05:40+00:00\",\"dateModified\":\"2012-08-16T00:43:34+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/2012\\\/07\\\/getting-started-with-raspberry-pi-raspi-take-2.htm#breadcrumb\"},\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/2012\\\/07\\\/getting-started-with-raspberry-pi-raspi-take-2.htm\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/2012\\\/07\\\/getting-started-with-raspberry-pi-raspi-take-2.htm#primaryimage\",\"url\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/images\\\/raspi-logo.png\",\"contentUrl\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/images\\\/raspi-logo.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/2012\\\/07\\\/getting-started-with-raspberry-pi-raspi-take-2.htm#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Getting started with Raspberry Pi (#RasPi): Take 2\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/\",\"name\":\"markwilson.it\",\"description\":\"get-info -class technology | write-output &gt; \\\/dev\\\/web\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/#\\\/schema\\\/person\\\/98f61365e7c39d6be942174b8c4de468\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-GB\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/#\\\/schema\\\/person\\\/98f61365e7c39d6be942174b8c4de468\",\"name\":\"Mark Wilson\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\\\/\\\/i0.wp.com\\\/www.markwilson.co.uk\\\/blog\\\/uploads\\\/image-4.png?fit=800%2C800&ssl=1\",\"url\":\"https:\\\/\\\/i0.wp.com\\\/www.markwilson.co.uk\\\/blog\\\/uploads\\\/image-4.png?fit=800%2C800&ssl=1\",\"contentUrl\":\"https:\\\/\\\/i0.wp.com\\\/www.markwilson.co.uk\\\/blog\\\/uploads\\\/image-4.png?fit=800%2C800&ssl=1\",\"width\":800,\"height\":800,\"caption\":\"Mark Wilson\"},\"logo\":{\"@id\":\"https:\\\/\\\/i0.wp.com\\\/www.markwilson.co.uk\\\/blog\\\/uploads\\\/image-4.png?fit=800%2C800&ssl=1\"},\"description\":\"A Chartered IT Professional, with recent experience in technology leadership, IT strategy and practice management roles, Mark Wilson is an Enterprise Architect in the Advisory and Management Group at risual. During a career spanning more than two decades, Mark has gained widespread recognition as an expert in his field including both industry and national press exposure. In addition to certifications from Microsoft, VMware, Red Hat, The Open Group and Axelos, Mark held a Microsoft Most Valuable Professional (MVP) award for three years and is now part of the MVP Reconnect programme. Mark is also well-known on social media and maintains an award-winning blog.\",\"sameAs\":[\"http:\\\/\\\/www.markwilson.co.uk\\\/\",\"https:\\\/\\\/www.instagram.com\\\/markwilsonuk\\\/\",\"https:\\\/\\\/www.linkedin.com\\\/in\\\/markawilson\\\/\",\"https:\\\/\\\/x.com\\\/markwilsonit\",\"https:\\\/\\\/www.youtube.com\\\/channel\\\/UCWHlZCoHRTocdvtrOJ2IL4A\"],\"url\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/author\\\/mark-wilson\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Getting started with Raspberry Pi (#RasPi): Take 2 - markwilson.it","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.markwilson.co.uk\/blog\/2012\/07\/getting-started-with-raspberry-pi-raspi-take-2.htm","og_locale":"en_GB","og_type":"article","og_title":"Getting started with Raspberry Pi (#RasPi): Take 2 - markwilson.it","og_description":"A couple of months ago, I wrote about getting started with Raspberry Pi\u00a0but I have to admit it wasn&#8217;t exactly successful. In true open source style the Raspberry Pi FAQ (since updated) contradicted the downloads page\/quickstart guide and an official blog post suggested that Fedora was the recommended distro. \u00a0I had some issues with Fedora, &hellip; Continue reading Getting started with Raspberry Pi (#RasPi): Take 2","og_url":"https:\/\/www.markwilson.co.uk\/blog\/2012\/07\/getting-started-with-raspberry-pi-raspi-take-2.htm","og_site_name":"markwilson.it","article_published_time":"2012-07-06T14:05:40+00:00","article_modified_time":"2012-08-16T00:43:34+00:00","og_image":[{"url":"https:\/\/www.markwilson.co.uk\/blog\/images\/raspi-logo.png","type":"","width":"","height":""}],"author":"Mark Wilson","twitter_card":"summary_large_image","twitter_creator":"@markwilsonit","twitter_site":"@markwilsonit","twitter_misc":{"Written by":"Mark Wilson","Estimated reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.markwilson.co.uk\/blog\/2012\/07\/getting-started-with-raspberry-pi-raspi-take-2.htm#article","isPartOf":{"@id":"https:\/\/www.markwilson.co.uk\/blog\/2012\/07\/getting-started-with-raspberry-pi-raspi-take-2.htm"},"author":{"name":"Mark Wilson","@id":"https:\/\/www.markwilson.co.uk\/blog\/#\/schema\/person\/98f61365e7c39d6be942174b8c4de468"},"headline":"Getting started with Raspberry Pi (#RasPi): Take 2","datePublished":"2012-07-06T14:05:40+00:00","dateModified":"2012-08-16T00:43:34+00:00","mainEntityOfPage":{"@id":"https:\/\/www.markwilson.co.uk\/blog\/2012\/07\/getting-started-with-raspberry-pi-raspi-take-2.htm"},"wordCount":520,"commentCount":3,"publisher":{"@id":"https:\/\/www.markwilson.co.uk\/blog\/#\/schema\/person\/98f61365e7c39d6be942174b8c4de468"},"image":{"@id":"https:\/\/www.markwilson.co.uk\/blog\/2012\/07\/getting-started-with-raspberry-pi-raspi-take-2.htm#primaryimage"},"thumbnailUrl":"https:\/\/www.markwilson.co.uk\/blog\/images\/raspi-logo.png","keywords":["Linux","Raspberry Pi"],"articleSection":["Technology"],"inLanguage":"en-GB","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.markwilson.co.uk\/blog\/2012\/07\/getting-started-with-raspberry-pi-raspi-take-2.htm#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.markwilson.co.uk\/blog\/2012\/07\/getting-started-with-raspberry-pi-raspi-take-2.htm","url":"https:\/\/www.markwilson.co.uk\/blog\/2012\/07\/getting-started-with-raspberry-pi-raspi-take-2.htm","name":"Getting started with Raspberry Pi (#RasPi): Take 2 - markwilson.it","isPartOf":{"@id":"https:\/\/www.markwilson.co.uk\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.markwilson.co.uk\/blog\/2012\/07\/getting-started-with-raspberry-pi-raspi-take-2.htm#primaryimage"},"image":{"@id":"https:\/\/www.markwilson.co.uk\/blog\/2012\/07\/getting-started-with-raspberry-pi-raspi-take-2.htm#primaryimage"},"thumbnailUrl":"https:\/\/www.markwilson.co.uk\/blog\/images\/raspi-logo.png","datePublished":"2012-07-06T14:05:40+00:00","dateModified":"2012-08-16T00:43:34+00:00","breadcrumb":{"@id":"https:\/\/www.markwilson.co.uk\/blog\/2012\/07\/getting-started-with-raspberry-pi-raspi-take-2.htm#breadcrumb"},"inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.markwilson.co.uk\/blog\/2012\/07\/getting-started-with-raspberry-pi-raspi-take-2.htm"]}]},{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/www.markwilson.co.uk\/blog\/2012\/07\/getting-started-with-raspberry-pi-raspi-take-2.htm#primaryimage","url":"https:\/\/www.markwilson.co.uk\/blog\/images\/raspi-logo.png","contentUrl":"https:\/\/www.markwilson.co.uk\/blog\/images\/raspi-logo.png"},{"@type":"BreadcrumbList","@id":"https:\/\/www.markwilson.co.uk\/blog\/2012\/07\/getting-started-with-raspberry-pi-raspi-take-2.htm#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.markwilson.co.uk\/blog"},{"@type":"ListItem","position":2,"name":"Getting started with Raspberry Pi (#RasPi): Take 2"}]},{"@type":"WebSite","@id":"https:\/\/www.markwilson.co.uk\/blog\/#website","url":"https:\/\/www.markwilson.co.uk\/blog\/","name":"markwilson.it","description":"get-info -class technology | write-output &gt; \/dev\/web","publisher":{"@id":"https:\/\/www.markwilson.co.uk\/blog\/#\/schema\/person\/98f61365e7c39d6be942174b8c4de468"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.markwilson.co.uk\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-GB"},{"@type":["Person","Organization"],"@id":"https:\/\/www.markwilson.co.uk\/blog\/#\/schema\/person\/98f61365e7c39d6be942174b8c4de468","name":"Mark Wilson","image":{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/i0.wp.com\/www.markwilson.co.uk\/blog\/uploads\/image-4.png?fit=800%2C800&ssl=1","url":"https:\/\/i0.wp.com\/www.markwilson.co.uk\/blog\/uploads\/image-4.png?fit=800%2C800&ssl=1","contentUrl":"https:\/\/i0.wp.com\/www.markwilson.co.uk\/blog\/uploads\/image-4.png?fit=800%2C800&ssl=1","width":800,"height":800,"caption":"Mark Wilson"},"logo":{"@id":"https:\/\/i0.wp.com\/www.markwilson.co.uk\/blog\/uploads\/image-4.png?fit=800%2C800&ssl=1"},"description":"A Chartered IT Professional, with recent experience in technology leadership, IT strategy and practice management roles, Mark Wilson is an Enterprise Architect in the Advisory and Management Group at risual. During a career spanning more than two decades, Mark has gained widespread recognition as an expert in his field including both industry and national press exposure. In addition to certifications from Microsoft, VMware, Red Hat, The Open Group and Axelos, Mark held a Microsoft Most Valuable Professional (MVP) award for three years and is now part of the MVP Reconnect programme. Mark is also well-known on social media and maintains an award-winning blog.","sameAs":["http:\/\/www.markwilson.co.uk\/","https:\/\/www.instagram.com\/markwilsonuk\/","https:\/\/www.linkedin.com\/in\/markawilson\/","https:\/\/x.com\/markwilsonit","https:\/\/www.youtube.com\/channel\/UCWHlZCoHRTocdvtrOJ2IL4A"],"url":"https:\/\/www.markwilson.co.uk\/blog\/author\/mark-wilson"}]}},"jetpack_featured_media_url":"","jetpack-related-posts":[{"id":3928,"url":"https:\/\/www.markwilson.co.uk\/blog\/2012\/05\/getting-started-with-raspberry-pi-raspi.htm","url_meta":{"origin":4149,"position":0},"title":"Getting started with Raspberry Pi (#RasPi)","author":"Mark Wilson","date":"Thursday 10 May 2012","format":false,"excerpt":"Much to my manager's disgust (he has a programming background, whilst I'm an infrastructure guy \"by trade\" - although I did write code in my youth!), my Raspberry Pi\u00a0arrived last week. Despite the botched launch, I still think this is one of the most exciting products we'll see this year\u2026","rel":"","context":"In &quot;Technology&quot;","block_context":{"text":"Technology","link":"https:\/\/www.markwilson.co.uk\/blog\/topic\/technology"},"img":{"alt_text":"","src":"https:\/\/p.twimg.com\/AsAJJnnCEAIcfPe.jpg:small","width":350,"height":200},"classes":[]},{"id":3667,"url":"https:\/\/www.markwilson.co.uk\/blog\/2012\/02\/raspberry-pi-a-case-study-for-using-cloud-infrastructure.htm","url_meta":{"origin":4149,"position":1},"title":"Raspberry Pi: a case study for using cloud infrastructure?","author":"Mark Wilson","date":"Wednesday 29 February 2012","format":false,"excerpt":"In common with many thousands of geeks up and down the country, I set my alarm for just before 06:00 today for the big Raspberry Pi \"announcement\". The team at Raspberry Pi had done a great job of keeping the community informed - and I was really impressed that they\u2026","rel":"","context":"In &quot;Technology&quot;","block_context":{"text":"Technology","link":"https:\/\/www.markwilson.co.uk\/blog\/topic\/technology"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":6833,"url":"https:\/\/www.markwilson.co.uk\/blog\/2017\/01\/restart-raspberry-pi-zero-paperclip.htm","url_meta":{"origin":4149,"position":2},"title":"Restart a Raspberry Pi Zero with a paperclip","author":"Mark Wilson","date":"Friday 6 January 2017","format":false,"excerpt":"One of the \"limitations\" of a Raspberry Pi is that it doesn't have an on\/off switch. That's not really a problem - once it's shut down, a power cycle to the socket (switch on\/off) will allow it to\u00a0boot up but there is another way (ignoring the purchase of expensive in-line\u2026","rel":"","context":"In &quot;Technology&quot;","block_context":{"text":"Technology","link":"https:\/\/www.markwilson.co.uk\/blog\/topic\/technology"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/img.youtube.com\/vi\/apuQDPyC4mY\/0.jpg?resize=350%2C200","width":350,"height":200},"classes":[]},{"id":4260,"url":"https:\/\/www.markwilson.co.uk\/blog\/2012\/08\/a-beginners-guide-to-getting-started-with-raspberry-pi-raspi.htm","url_meta":{"origin":4149,"position":3},"title":"A beginner&#8217;s guide to getting started with Raspberry Pi (#RasPi)","author":"Mark Wilson","date":"Sunday 19 August 2012","format":false,"excerpt":"I've written before on this blog about my experiences getting started with Raspberry Pi (attempt 1 and attempt 2) but, in my post about the inaugural Milton Keynes Raspberry Jam this morning, I highlighted something that became very apparent within the assembled group of Raspberry Pi enthusiasts at Bletchley Park:\u2026","rel":"","context":"In &quot;Technology&quot;","block_context":{"text":"Technology","link":"https:\/\/www.markwilson.co.uk\/blog\/topic\/technology"},"img":{"alt_text":"","src":"http:\/\/upload.wikimedia.org\/wikipedia\/commons\/thumb\/3\/3d\/RaspberryPi.jpg\/320px-RaspberryPi.jpg","width":350,"height":200},"classes":[]},{"id":4256,"url":"https:\/\/www.markwilson.co.uk\/blog\/2012\/08\/first-milton-keynes-raspberryjam.htm","url_meta":{"origin":4149,"position":4},"title":"First Milton Keynes #RaspberryJam","author":"Mark Wilson","date":"Sunday 19 August 2012","format":false,"excerpt":"A few weeks ago, I mentioned that I'd been to a Raspberry Jam event in London, so I was very excited to see a jam advertised for Milton Keynes, one of the towns near where I live. Not only was it in Milton Keynes but at The National Museum of\u2026","rel":"","context":"In &quot;Technology&quot;","block_context":{"text":"Technology","link":"https:\/\/www.markwilson.co.uk\/blog\/topic\/technology"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":6289,"url":"https:\/\/www.markwilson.co.uk\/blog\/2016\/02\/raspberry-pi-ftp-server.htm","url_meta":{"origin":4149,"position":5},"title":"Raspberry Pi FTP server","author":"Mark Wilson","date":"Sunday 7 February 2016","format":false,"excerpt":"I've been trying to resurrect my SIP-connected Cisco 7940\u00a0as part of a review of our home telephony arrangements. In order to do this,\u00a0I've had to\u00a0configure\u00a0the TFTP capabilities\u00a0on my home infrastructure server (i.e .my Raspberry Pi). Previously, I'd served the phone configuration\u00a0from\u00a0a\u00a0Windows TFTP server (long since gone) and the phone had\u2026","rel":"","context":"In &quot;Technology&quot;","block_context":{"text":"Technology","link":"https:\/\/www.markwilson.co.uk\/blog\/topic\/technology"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]}],"jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/www.markwilson.co.uk\/blog\/wp-json\/wp\/v2\/posts\/4149","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.markwilson.co.uk\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.markwilson.co.uk\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.markwilson.co.uk\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.markwilson.co.uk\/blog\/wp-json\/wp\/v2\/comments?post=4149"}],"version-history":[{"count":3,"href":"https:\/\/www.markwilson.co.uk\/blog\/wp-json\/wp\/v2\/posts\/4149\/revisions"}],"predecessor-version":[{"id":4240,"href":"https:\/\/www.markwilson.co.uk\/blog\/wp-json\/wp\/v2\/posts\/4149\/revisions\/4240"}],"wp:attachment":[{"href":"https:\/\/www.markwilson.co.uk\/blog\/wp-json\/wp\/v2\/media?parent=4149"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.markwilson.co.uk\/blog\/wp-json\/wp\/v2\/categories?post=4149"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.markwilson.co.uk\/blog\/wp-json\/wp\/v2\/tags?post=4149"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}