Register now and start sharing your code snippets.
-->

Detach from Xen console with Finnish keyboard mapping

Shell Script (Bash) posted about 1 year ago by marko

Using this key combination on a system having Finnish keyboard mapping you can detach from a xen console.

   1  CTRL + Alt Gr + 9

Tagged xen, console, detach, suomalainen näppäimistökartta

Solution to "`require': no such file to load -- readline (LoadError)" problem

Shell Script (Bash) posted about 1 year ago by christian

If you’ve compiled Ruby from source, you might get this error when executing script/console:

   1  /usr/local/lib/ruby/1.8/irb/completion.rb:10:in `require': no such file to load -- readline (LoadError)

One way of fixing this is to compile readline, which is distributed along with the Ruby source:

   1  cd /opt/src/ruby-1.8.5-p2/ext/readline
   2  ruby extconf.rb
   3  make
   4  sudo make install

This works even after compiling Ruby, so no need to recompile… If you’re wondering what readline is then this quote from the project homepage sums it up in one sentence: “The GNU Readline library provides a set of functions for use by applications that allow users to edit command lines as they are typed in.”

Tagged readline, ruby, console, compile