Fun with Unix: Writing Messages

This is the first in a mini-series of articles about using Linux/Unix to do things other than view logs and edit files. I’m 26 and find that many of my peers weren’t exposed to Unix servers at university, so they miss out on this. If you have any suggestions of things to include in the mini series, let me know please!

Write messages

So to pop up a message on another user’s PC, you’d usually use MSN, right? Well if you’re both logged into the same server there is another way. Just echo your message and then send the program write to get it to the person. Like this:

echo “Hello Kevin” | write kevin

Kevin will get a message on his screen which says:


Message from lorna@server on pts/1 at 22:14 ...
Hello Kevin
EOF

Silence please

To turn off receiving messages, you need to change your mesg setting, by setting it to n:

mesg n

Not surprisingly, you can turn it back on with:

mesg y

That’s today’s installment, have fun!

Mouselessness

Not to be confused with houselessness which I have also been doing a lot of recently, today mouselessness is the name of the game. Inspired by this recent post on Coding Horror here are my thoughts on using a computer without a mouse.

RSI Risk

I posted a while back about last years brush with RSI and it really did seem to settle down for a while. I changed jobs and that also seemed to help for the first few weeks, then start to get worse again. I do concur that the mouse is the root of all hand-related evils at the desk, and use one as little as possible.

Working without the mouse

There are a lot of things you can do without a mouse. I use Opera as my main browser, it has keyboard navigation and I can surf for hours without touching the mouse at all.

There are lots of keyboard shortcuts for Windows (see Jon Galloway’s excellent mouseless computing article for ideas), which I started to get better with. These days however I’m using Linux at work and use a variety of quick shortcuts to help:

  • I use all four desktops, with Ctrl+1, Ctrl+2, Ctrl+3 and Ctrl+4 to get me to where I want to do. Its really good and fast – especially when I remember to press control with my right hand and the number with my left!
  • Opera, as mentioned above
  • Katapult, which is a KDE application which allows you to type Alt+Space and type the program you want to run, it even autocompletes
  • Vim. I do all my development over ssh and running vim. No dragging and dropping of files, no dragging to highlight to copy and paste, no icons to click on to format or open another file. Absolutely everything can be done without moving hands from keyboard and I have to say that spending the time with the cheat sheet and getting better with it was the best thing I’ve done since I taught myself to touch type in my teens. Not only does it save my hands, I’m also faster than my colleagues for most things. If you haven’t tried it for a few years and think is a basic text editor you might be stuck with on a server somewhere, then look again. GVim is available for most platforms with tabbed editing and its got code folding and autocompletion too.

Alternative input

At work I have a microsoft keyboard that I quite like but which has keys which go quite deep when you press them which isn’t ideal. I need to try changing hands with my mouse, but I also have a beautiful Kensington Pro trackball which is excellent. Its a bit strange with the main button in the bottom left below the ball but the ball is good and big and it is good. At home I rarely use a mouse and have a little external keyboard which has shallow button movement when it is pressed – which seems OK.

Mouseless computing

Its perfectly possible to do a lot of everyday actions without the use of a mouse. Getting up to speed with the shortcuts for the applications you use will take time – but I shall be taking the advice from the Coding Horror article and learning a new keyboard shortcut every day from now on. I am switching back to my trackball and will take time and effort to get my desk set up better – and I’ll let you know how I go. In the meantime, tell me whether you have had similar problems and what your favourite keyboard shortcut is. I think mine is Ctrl + G in Opera – to turn off stylesheets.

Offer Accepted (sound familiar??)

We’ve bought a house! If you think you may have read this before, perhaps you’d like to read one of the three previous offers posts.

In an interesting twist, we’ve had an offer accepted on the same house we had an offer accepted on last time, for an amount that takes into account the work that needs doing on it and that we can get a mortgage for. So at least its different!!

Watch this space for more disasters excitement :)

Three Things I Saw At Chester Zoo

We went to Chester Zoo on Easter weekend, which was great apart from the humongous traffic queues to get in. Still they seemed pretty well organised and since we chose to arrive mid-morning on a beautiful bank holiday weekend then it was always going to be busy!

The zoo itself has a great repuation for treatment of animals and its successful breeding programmes, and was a nice place to visit. There were lots of people with their kids as well and it seems a very child-friendly place (I don’t have kids, I have no idea).

Anyway, here are the three things I saw (one of them twice because I love them!)

Black and white ruffed lemurs!

One Jaguar (I shrank the photo before I realised he would get so small … look closely in the middle!)

And a sealion.

We had ice cream and it was a lovely day :)

public/private key SSH on ubuntu

Here are a few notes I made when changing SSH acces for an ubuntu server over to using public/private key authentication. These instructions are for commands run on the server to generate keys which are then used to access that same server from elsewhere.

On the whole the process was exactly as straightforward as you’d think, which was nice. The users followed these steps:

1. Generate keys

The user access the server using SSH (still set up with passwords at this point) and runs the following command to generate keys:


ssh-keygen

We accepted the defaults for both the filename (id_rsa) and left the passphrase empty. Empty passphrases aren’t recommended but there will be automated processes using these keys.

2. Set up to accept

For an SSH server to authorise a user, it must havethe contents of that user’s public key in a file called authorized_keys. The user then comes along with their private key and can then gain access. We put the contents of the public key into the authorized_keys file (which doesn’t currently exist for these users).


cat id_rsa.pub > authorized_keys

3. Log in with public key

The users copied their private keys to their local machines and set up their various ssh clients to use these to gain access. For ssh-ing in from another server (and setting up with some of the clients), its the ssh command as usual but with the -i switch to denote the use of a specified identity file, e.g.:


ssh -i id_rsa user@host

4. Force this to be the only means of access

I had some trouble figuring out which line I needed to change in the openssh config file (at /etc/ssh/sshd_config for me running ubuntu edgy) but in the event, this did the trick:


PasswordAuthentication no

That’s it for today, hope this helps someone … including me next time I want to do something similar :)

Baby Booties

The first installment of knitting for a new arrival due into the extended family this summer. They are actually green but I didn’t fiddle with the camera before I took the photo!

The pattern is from a supplement that came with Simply Knitting magazine a while ago – but as they are 4-ply they did take a while although they are tiny. Next up, are these

Process Email Queue by Waving Mouse

Today I had a problem with a development server. A little, low-traffic thing that I was testing some PHP-sends-email pages on. The emails wouldn’t send although I could see them sat in the queue.

The story gets better but there’s a techie bit between here and the punchline – sorry

Exim commands

mailq – show the emails currently in the queue

sendmail -v -q – send the emails in the queue and give plenty of output with it.

The symptoms

Sending email just caused the screen to hang, I’d get something like this:


LOG: queue_run MAIN
  Start queue run: pid=12282
delivering 1HeAZY-0002YQ-J0 (queue run pid 12282)
R: dnslookup for ****************
T: remote_smtp for **********************
Connecting to **************** [000.000.000.000]:25 … connected
  SMTP<< 220 ********************** ESMTP
  SMTP>> EHLO ****
  SMTP<< 250-***********************

        250-AUTH=LOGIN CRAM-MD5
        250-AUTH LOGIN CRAM-MD5
        250-STARTTLS
        250-PIPELINING
        250 8BITMIME
  SMTP>> STARTTLS
  SMTP<< 220 ready for tls

Randomness!!

The problem was that we didn’t have enough entropy1 to generate the security for the connection … and getting one of my colleagues to rummage in the rack for the server and wave its mouse continuously solved the problem. It was quite a scene :)

1 For diagnosing randomness, I used: cat /proc/sys/kernel/random/entropy_avail

Tabs in Vim

Tabs seem to be out of fashion in the programming world, there are perfectly valid arguments on both sides or the tabs vs. spaces flame war, illustrated with examples from every programming language and text editor combination ever made. You can read any or all of these if you are interested, but that isn’t the issue here.

I use tabs – all the time. My tab stopping is set to 4 spaces but my intention is to use actual tab characters. Its actually surprisingly hard to do this with vim. I’ve added the following lines to my .vimrc which allow me to see whether I have tabs or spaces at the start of the line.


set list listchars=tab:\|_,trail:.
highlight SpecialKey ctermfg=DarkGray

I fiddled with some other settings too, to try to stop everything ending up as spaces (I’m driving my colleagues mad) but to no avail. With these lines:


set shiftwidth=4
set softtabstop=4
set tabstop=4
set noexpandtab
set autoindent
set smartindent

I think those are all the relevant lines … it kind of works but I still need to type the set noexpandtab when I’m editing a file to stop auto-indented new lines from getting space instead.

Its all very exasperating so if anyone has suggestions other than “use spaces” I’d be interested to hear them!

SQLPlus for MySQL

Until recently I spent a lot of time working with Oracle from the command line (via ksh on AIX, in case you’re interested). A change of job means a change of platform and I find myself working with MySQL on a daily basis. I like MySQL – like most PHP programmers this is where I started learning about databases and I’ll always have a soft spot for it.

In Oracle most developers use SQLPlus to work with the database – its the standard command-line tool and the only thing you can guarantee being available in a new environment. It has a wonderful feature where you can type a query and then type ‘ed’ and pull up an editor window with the query still in it … so useful for debugging big statements.

I’ve been struggling to get to grips with MySQL – it has more tools and phpMyAdmin is readily available. However I don’t really use a mouse if I can help it so its not as fast or convenient as the SQLPlus + ‘ed’ combination. So here’s my discovery for this week:

Type \e

Most mysql command-line tools will launch your previous query, with line breaks, if you type \e at the prompt. Fantastically useful and I’m happy and settled once more :)