{"id":2606,"date":"2013-11-26T15:54:16","date_gmt":"2013-11-26T21:54:16","guid":{"rendered":"https:\/\/secure.rosehosting.com\/blog\/?p=2606"},"modified":"2022-06-03T03:47:15","modified_gmt":"2022-06-03T08:47:15","slug":"how-to-install-ruby-2-0-and-rubygems-2-1-11-on-ubuntu-13-10-from-source","status":"publish","type":"post","link":"https:\/\/www.rosehosting.com\/blog\/how-to-install-ruby-2-0-and-rubygems-2-1-11-on-ubuntu-13-10-from-source\/","title":{"rendered":"How to Install Ruby 2.0 and RubyGems 2.1.11 on Ubuntu 13.10 from source"},"content":{"rendered":"<div id=\"bsf_rt_marker\"><\/div><p><a href=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2013\/11\/ruby-2.0.png\"><img decoding=\"async\" class=\"alignleft size-full wp-image-2613\" style=\"border: 0px none;\" src=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2013\/11\/ruby-2.0.png\" alt=\"ruby 2.0\" width=\"289\" height=\"222\" \/><\/a> Ruby is an open source, object-oriented scripting language, best known for its use in the Ruby on Rails framework. The amount of Ruby code being written suggests it&#8217;s genuinely popular and will be around for quite some time.<br \/>\nThis is a quick tutorial on installing Ruby 2.0 and RubyGems 2.1.11 on Ubuntu 13.10 from source. You can download, compile and install Ruby from source code on a <a title=\"Linux VPS\" href=\"https:\/\/www.rosehosting.com\" target=\"_blank\" rel=\"noopener noreferrer\">Linux VPS<\/a> with Ubuntu 13.10 OS in less than 5 minutes using the following steps:<\/p>\n<p>Update the Ubuntu package lists from the repositories to get information on the newest versions of packages and their dependencies, then install Ruby dependencies using the following commands:<br \/>\n<!--more--><\/p>\n<pre>sudo apt-get update\r\nsudo apt-get install build-essential git-core curl sqlite3 libsqlite3-dev libxml2-dev libxslt1-dev libreadline-dev libyaml-dev libcurl4-openssl-dev libncurses5-dev libgdbm-dev libffi-dev<\/pre>\n<p>Download and extract the latest stable version of Ruby available at http:\/\/ftp.ruby-lang.org\/pub\/ruby\/ (the latest stable version at the time of writing this tutorial is Ruby 2.0.0-p247):<\/p>\n<pre>cd \/root\/\r\nwget http:\/\/ftp.ruby-lang.org\/pub\/ruby\/ruby-2.0.0-p247.tar.gz\r\ntar xvzf ruby-2.0.0-p247.tar.gz\r\ncd ruby-2.0.0-p247\r\n.\/configure\r\nmake\r\nmake install<\/pre>\n<p>Once the install process is complete, verify the version of Ruby:<\/p>\n<pre>ruby --version\r\nruby 2.0.0p247 (2013-06-27 revision 41674) [x86_64-linux]<\/pre>\n<p>RubyGems is a sophisticated package management framework for Ruby and it can be easily installed using the following steps:<\/p>\n<p>Download the latest version of RubyGems available at http:\/\/rubygems.org\/pages\/download , then extract and install it on the <a title=\"Linux VPS Hosting\" href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting.html\" target=\"_blank\" rel=\"noopener noreferrer\">virtual server<\/a>:<\/p>\n<pre>cd \/root\/\r\nwget http:\/\/production.cf.rubygems.org\/rubygems\/rubygems-2.1.11.tgz\r\ntar xvzf rubygems-2.1.11.tgz\r\ncd rubygems-2.1.11\r\nruby setup.rb<\/pre>\n<p>Verify the version of RubyGems using the following command:<\/p>\n<pre>gem --version\r\n2.1.11<\/pre>\n<p>Ensure you have the latest gem versions:<\/p>\n<pre>gem update --system<\/pre>\n<p>Install all of Rails and its dependencies through RubyGems:<\/p>\n<pre>gem install rails<\/pre>\n<p>List the installed gems:<\/p>\n<pre>gem list\r\n*** LOCAL GEMS ***\r\n\r\nactionmailer (4.0.1)\r\nactionpack (4.0.1)\r\nactivemodel (4.0.1)\r\nactiverecord (4.0.1)\r\nactiverecord-deprecated_finders (1.0.3)\r\nactivesupport (4.0.1)\r\narel (4.0.1)\r\natomic (1.1.14)\r\nbigdecimal (1.2.0)\r\nbuilder (3.1.4)\r\nbundler (1.3.5)\r\nerubis (2.7.0)\r\nhike (1.2.3)\r\ni18n (0.6.5)\r\nio-console (0.4.2)\r\njson (1.7.7)\r\nmail (2.5.4)\r\nmime-types (1.25)\r\nminitest (4.3.2)\r\nmulti_json (1.8.2)\r\npolyglot (0.3.3)\r\npsych (2.0.0)\r\nrack (1.5.2)\r\nrack-test (0.6.2)\r\nrails (4.0.1)\r\nrailties (4.0.1)\r\nrake (0.9.6)\r\nrdoc (4.0.0)\r\nrubygems-update (2.1.11)\r\nsprockets (2.10.0)\r\nsprockets-rails (2.0.1)\r\ntest-unit (2.0.0.0)\r\nthor (0.18.1)\r\nthread_safe (0.1.3)\r\ntilt (1.4.1)\r\ntreetop (1.4.15)\r\ntzinfo (0.3.38)<\/pre>\n<p>That\u2019s it! You now have a full Ruby on Rails stack up on a Linux VPS with Ubuntu 13.10.<\/p>\n<p>Of course you don\u2019t have to do any of this if you use one of our <a title=\"Linux VPS Hosting\" href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting.html\" target=\"_blank\" rel=\"noopener noreferrer\">Linux VPS Hosting<\/a> services, in which case you can simply ask our expert Linux admins to install\u00a0Ruby and RubyGems on your server for you. They are available 24&#215;7 and will take care of your request immediately.<\/p>\n<p><strong><span style=\"color: #ff0000;\">PS<\/span>.<\/strong> If you liked this post please share it with your friends on the social networks using the buttons on the left or simply leave a reply below. Thanks.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Ruby is an open source, object-oriented scripting language, best known for its use in the Ruby on Rails framework. The &#8230; <\/p>\n<p class=\"read-more-container\"><a title=\"How to Install Ruby 2.0 and RubyGems 2.1.11 on Ubuntu 13.10 from source\" class=\"read-more button\" href=\"https:\/\/www.rosehosting.com\/blog\/how-to-install-ruby-2-0-and-rubygems-2-1-11-on-ubuntu-13-10-from-source\/#more-2606\" aria-label=\"Read more about How to Install Ruby 2.0 and RubyGems 2.1.11 on Ubuntu 13.10 from source\">Read More<\/a><\/p>\n","protected":false},"author":4,"featured_media":2613,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[13,1698,1712],"tags":[330,331,177,1152,139,200],"class_list":["post-2606","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tutorials","category-ubuntu","category-web-frameworks","tag-install-ruby","tag-install-rubygems","tag-linux-vps","tag-rosehosting","tag-ruby","tag-ubuntu-vps","generate-columns","tablet-grid-50","mobile-grid-100","grid-parent","grid-33"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.5 (Yoast SEO v27.5) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>How to Install Ruby 2.0 and RubyGems 2.1.11 on Ubuntu 13.10 from source | RoseHosting<\/title>\n<meta name=\"description\" content=\"How to Install Ruby 2.0 and RubyGems 2.1.11 on Ubuntu 13.10 from source | RoseHosting\" \/>\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.rosehosting.com\/blog\/how-to-install-ruby-2-0-and-rubygems-2-1-11-on-ubuntu-13-10-from-source\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Install Ruby 2.0 and RubyGems 2.1.11 on Ubuntu 13.10 from source\" \/>\n<meta property=\"og:description\" content=\"How to Install Ruby 2.0 and RubyGems 2.1.11 on Ubuntu 13.10 from source | RoseHosting\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.rosehosting.com\/blog\/how-to-install-ruby-2-0-and-rubygems-2-1-11-on-ubuntu-13-10-from-source\/\" \/>\n<meta property=\"og:site_name\" content=\"RoseHosting\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/RoseHosting\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/rosehosting.helpdesk\" \/>\n<meta property=\"article:published_time\" content=\"2013-11-26T21:54:16+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-06-03T08:47:15+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2013\/11\/ruby-2.0.png\" \/>\n\t<meta property=\"og:image:width\" content=\"289\" \/>\n\t<meta property=\"og:image:height\" content=\"222\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Jeff Wilson\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@rosehosting\" \/>\n<meta name=\"twitter:site\" content=\"@rosehosting\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Jeff Wilson\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-ruby-2-0-and-rubygems-2-1-11-on-ubuntu-13-10-from-source\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-ruby-2-0-and-rubygems-2-1-11-on-ubuntu-13-10-from-source\\\/\"},\"author\":{\"name\":\"Jeff Wilson\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#\\\/schema\\\/person\\\/7ce77a842fa6a9a7f8efa186f2353713\"},\"headline\":\"How to Install Ruby 2.0 and RubyGems 2.1.11 on Ubuntu 13.10 from source\",\"datePublished\":\"2013-11-26T21:54:16+00:00\",\"dateModified\":\"2022-06-03T08:47:15+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-ruby-2-0-and-rubygems-2-1-11-on-ubuntu-13-10-from-source\\\/\"},\"wordCount\":330,\"commentCount\":2,\"publisher\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-ruby-2-0-and-rubygems-2-1-11-on-ubuntu-13-10-from-source\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2013\\\/11\\\/ruby-2.0.png\",\"keywords\":[\"install ruby\",\"install rubygems\",\"linux vps\",\"rosehosting\",\"ruby\",\"ubuntu vps\"],\"articleSection\":[\"Tutorials\",\"Ubuntu\",\"Web Frameworks\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-ruby-2-0-and-rubygems-2-1-11-on-ubuntu-13-10-from-source\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-ruby-2-0-and-rubygems-2-1-11-on-ubuntu-13-10-from-source\\\/\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-ruby-2-0-and-rubygems-2-1-11-on-ubuntu-13-10-from-source\\\/\",\"name\":\"How to Install Ruby 2.0 and RubyGems 2.1.11 on Ubuntu 13.10 from source | RoseHosting\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-ruby-2-0-and-rubygems-2-1-11-on-ubuntu-13-10-from-source\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-ruby-2-0-and-rubygems-2-1-11-on-ubuntu-13-10-from-source\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2013\\\/11\\\/ruby-2.0.png\",\"datePublished\":\"2013-11-26T21:54:16+00:00\",\"dateModified\":\"2022-06-03T08:47:15+00:00\",\"description\":\"How to Install Ruby 2.0 and RubyGems 2.1.11 on Ubuntu 13.10 from source | RoseHosting\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-ruby-2-0-and-rubygems-2-1-11-on-ubuntu-13-10-from-source\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-ruby-2-0-and-rubygems-2-1-11-on-ubuntu-13-10-from-source\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-ruby-2-0-and-rubygems-2-1-11-on-ubuntu-13-10-from-source\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2013\\\/11\\\/ruby-2.0.png\",\"contentUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2013\\\/11\\\/ruby-2.0.png\",\"width\":289,\"height\":222,\"caption\":\"ruby 2.0\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-ruby-2-0-and-rubygems-2-1-11-on-ubuntu-13-10-from-source\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Install Ruby 2.0 and RubyGems 2.1.11 on Ubuntu 13.10 from source\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/\",\"name\":\"RoseHosting.com\",\"description\":\"Premium Linux Tutorials Since 2001\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#organization\",\"name\":\"RoseHosting\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/03\\\/android-chrome-192x192-1.png\",\"contentUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/03\\\/android-chrome-192x192-1.png\",\"width\":192,\"height\":192,\"caption\":\"RoseHosting\"},\"image\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/RoseHosting\",\"https:\\\/\\\/x.com\\\/rosehosting\",\"https:\\\/\\\/www.linkedin.com\\\/in\\\/rosehosting\\\/\"],\"description\":\"RoseHosting is a leading Linux hosting provider, serving thousands of clients world-wide since 2001.\",\"email\":\"info@rosehosting.com\",\"telephone\":\"(314) 275-0414\",\"legalName\":\"Rose Web Services LLC\",\"foundingDate\":\"2001-04-02\",\"numberOfEmployees\":{\"@type\":\"QuantitativeValue\",\"minValue\":\"11\",\"maxValue\":\"50\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#\\\/schema\\\/person\\\/7ce77a842fa6a9a7f8efa186f2353713\",\"name\":\"Jeff Wilson\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g\",\"caption\":\"Jeff Wilson\"},\"description\":\"An experienced Linux veteran with many years of experience. Helping other Linux admins with frequent Linux and business-related blog posts on the RoseHosting blog. Techie by choice. Loving nature and travel. Happily married and father of two lovely children.\",\"sameAs\":[\"https:\\\/\\\/www.rosehosting.com\",\"https:\\\/\\\/www.facebook.com\\\/rosehosting.helpdesk\"],\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/author\\\/jwilson\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"How to Install Ruby 2.0 and RubyGems 2.1.11 on Ubuntu 13.10 from source | RoseHosting","description":"How to Install Ruby 2.0 and RubyGems 2.1.11 on Ubuntu 13.10 from source | RoseHosting","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.rosehosting.com\/blog\/how-to-install-ruby-2-0-and-rubygems-2-1-11-on-ubuntu-13-10-from-source\/","og_locale":"en_US","og_type":"article","og_title":"How to Install Ruby 2.0 and RubyGems 2.1.11 on Ubuntu 13.10 from source","og_description":"How to Install Ruby 2.0 and RubyGems 2.1.11 on Ubuntu 13.10 from source | RoseHosting","og_url":"https:\/\/www.rosehosting.com\/blog\/how-to-install-ruby-2-0-and-rubygems-2-1-11-on-ubuntu-13-10-from-source\/","og_site_name":"RoseHosting","article_publisher":"https:\/\/www.facebook.com\/RoseHosting","article_author":"https:\/\/www.facebook.com\/rosehosting.helpdesk","article_published_time":"2013-11-26T21:54:16+00:00","article_modified_time":"2022-06-03T08:47:15+00:00","og_image":[{"width":289,"height":222,"url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2013\/11\/ruby-2.0.png","type":"image\/png"}],"author":"Jeff Wilson","twitter_card":"summary_large_image","twitter_creator":"@rosehosting","twitter_site":"@rosehosting","twitter_misc":{"Written by":"Jeff Wilson","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-ruby-2-0-and-rubygems-2-1-11-on-ubuntu-13-10-from-source\/#article","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-ruby-2-0-and-rubygems-2-1-11-on-ubuntu-13-10-from-source\/"},"author":{"name":"Jeff Wilson","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713"},"headline":"How to Install Ruby 2.0 and RubyGems 2.1.11 on Ubuntu 13.10 from source","datePublished":"2013-11-26T21:54:16+00:00","dateModified":"2022-06-03T08:47:15+00:00","mainEntityOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-ruby-2-0-and-rubygems-2-1-11-on-ubuntu-13-10-from-source\/"},"wordCount":330,"commentCount":2,"publisher":{"@id":"https:\/\/www.rosehosting.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-ruby-2-0-and-rubygems-2-1-11-on-ubuntu-13-10-from-source\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2013\/11\/ruby-2.0.png","keywords":["install ruby","install rubygems","linux vps","rosehosting","ruby","ubuntu vps"],"articleSection":["Tutorials","Ubuntu","Web Frameworks"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.rosehosting.com\/blog\/how-to-install-ruby-2-0-and-rubygems-2-1-11-on-ubuntu-13-10-from-source\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-ruby-2-0-and-rubygems-2-1-11-on-ubuntu-13-10-from-source\/","url":"https:\/\/www.rosehosting.com\/blog\/how-to-install-ruby-2-0-and-rubygems-2-1-11-on-ubuntu-13-10-from-source\/","name":"How to Install Ruby 2.0 and RubyGems 2.1.11 on Ubuntu 13.10 from source | RoseHosting","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-ruby-2-0-and-rubygems-2-1-11-on-ubuntu-13-10-from-source\/#primaryimage"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-ruby-2-0-and-rubygems-2-1-11-on-ubuntu-13-10-from-source\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2013\/11\/ruby-2.0.png","datePublished":"2013-11-26T21:54:16+00:00","dateModified":"2022-06-03T08:47:15+00:00","description":"How to Install Ruby 2.0 and RubyGems 2.1.11 on Ubuntu 13.10 from source | RoseHosting","breadcrumb":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-ruby-2-0-and-rubygems-2-1-11-on-ubuntu-13-10-from-source\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.rosehosting.com\/blog\/how-to-install-ruby-2-0-and-rubygems-2-1-11-on-ubuntu-13-10-from-source\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-ruby-2-0-and-rubygems-2-1-11-on-ubuntu-13-10-from-source\/#primaryimage","url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2013\/11\/ruby-2.0.png","contentUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2013\/11\/ruby-2.0.png","width":289,"height":222,"caption":"ruby 2.0"},{"@type":"BreadcrumbList","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-ruby-2-0-and-rubygems-2-1-11-on-ubuntu-13-10-from-source\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.rosehosting.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Install Ruby 2.0 and RubyGems 2.1.11 on Ubuntu 13.10 from source"}]},{"@type":"WebSite","@id":"https:\/\/www.rosehosting.com\/blog\/#website","url":"https:\/\/www.rosehosting.com\/blog\/","name":"RoseHosting.com","description":"Premium Linux Tutorials Since 2001","publisher":{"@id":"https:\/\/www.rosehosting.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.rosehosting.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.rosehosting.com\/blog\/#organization","name":"RoseHosting","url":"https:\/\/www.rosehosting.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/03\/android-chrome-192x192-1.png","contentUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/03\/android-chrome-192x192-1.png","width":192,"height":192,"caption":"RoseHosting"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/RoseHosting","https:\/\/x.com\/rosehosting","https:\/\/www.linkedin.com\/in\/rosehosting\/"],"description":"RoseHosting is a leading Linux hosting provider, serving thousands of clients world-wide since 2001.","email":"info@rosehosting.com","telephone":"(314) 275-0414","legalName":"Rose Web Services LLC","foundingDate":"2001-04-02","numberOfEmployees":{"@type":"QuantitativeValue","minValue":"11","maxValue":"50"}},{"@type":"Person","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713","name":"Jeff Wilson","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g","caption":"Jeff Wilson"},"description":"An experienced Linux veteran with many years of experience. Helping other Linux admins with frequent Linux and business-related blog posts on the RoseHosting blog. Techie by choice. Loving nature and travel. Happily married and father of two lovely children.","sameAs":["https:\/\/www.rosehosting.com","https:\/\/www.facebook.com\/rosehosting.helpdesk"],"url":"https:\/\/www.rosehosting.com\/blog\/author\/jwilson\/"}]}},"_links":{"self":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/2606","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/users\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/comments?post=2606"}],"version-history":[{"count":1,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/2606\/revisions"}],"predecessor-version":[{"id":42268,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/2606\/revisions\/42268"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media\/2613"}],"wp:attachment":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media?parent=2606"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/categories?post=2606"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/tags?post=2606"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}