Slashdot Mirror


Jumping To Ubuntu At Work For Non-Linux Geeks

twigles writes "I'm a network engineer, meaning I spend my days dealing with things like selective route advertisements, peering, and traffic engineering; I'm not a Linux admin or developer. About 6 months ago I finally got fed up enough with my experience on Windows XP to jump ship to Ubuntu 8.04, despite not having much Linux experience, particularly on the desktop. Read my ramblings for an engineer's take on taking what can be a pretty intimidating plunge for us Linux noobcakes."

3 of 181 comments (clear)

  1. Re:What's wrong with Dia by Jantastic · · Score: 4, Funny

    Why did he not replace Visio with Dia?

    Because he was running late for his appointment at the hairdresser

    --
    ...a fact which for the sake of a quiet life most people tend to ignore ~H2G2
  2. What about Linux users moving to Windows? by Jim+Hall · · Score: 5, Interesting

    I've been a Linux user since 1993, when I was a student at university. Until 1998, I ran Linux as my primary OS, but kept a Windows partition on my home system to run some games. And since 2002 I've been fortunate enough to run Linux full-time at work. It has been a great experience so far. I didn't have any issues exchanging documents with others at work, and certainly my previous bosses didn't mind. But times change, I suppose.

    I've been asked to move back to Windows, at least for work. The difference between Windows (XP) and Linux (Fedora 9) has been shocking, to say the least. Since you often see blogs or tech articles (like the parent post) when long-time Windows users experiment with Linux for the first time, I thought it might be equally interesting for this long-time Linux user to blog about my first experience running Windows in over 6 or 7 years:

    Linux in Exile

    The short list of things I have run into in my first week of running Windows:

    • hardware support is definitely not plug-and-play (had troubles getting a simple laptop mini-dock to get recognized, same with the external display.)
    • programs look and act differently from each other (no common themes, inconsistent behavior, etc.)
    • MS Office (2007) makes it hard for me to write the documents I need to create for work.
    • Font rendering is poor.

    I haven't written yet about program look-and-feel; I'll do that soon. But I have noticed that MS Office acts differently from Notepad, from Media Player, and from the Windows local file browser.

    Also, ctrl-backspace is implemented differently just about everywhere - in some cases, it backspaces to the start of the word or field (what I expect) and elsewhere it only backspaces once, and in other cases it inserts a ctrl-backspace character!

  3. Sshfs is your friend. by Kjellander · · Score: 4, Informative

    It's so much easier to just mount the remote dir with fuse, that to use any client.

    sudo apt-get install sshfs
    sshfs user@host:dir/ dest/

    And you're done. Use the normal file handler after that.

    Don't want to type in passwords? Use ssh-keygen and ssh-add. Don't wanna type in the mount line? Just put them all in a bash script and mount them all first time you log in. Or get the old ones with 'history | grep sshfs' and tun it by typing in the number in front of the command after an exclamation mark, like so: '!679'