Tag Archives: Ubuntu

What to Do After You Install Ubuntu Server in VMwware Fusion

I recently installed a fresh copy of Ubuntu Server in a VMware Fusion virtual machine, so I could test some things out locally. (It’s a great way to set up a local development server with a similar configuration to your production server.) The initial setup was painless, but I had an amusing problem after. The default keyboard mapping didn’t match up with my MacBook’s keyboard, so pressing the arrow keys would lead to unexpected behavior. Obviously this is problematic behavior when the only way you have to interact with the OS is text-based…

Fortunately, the solution is simple.

You just need to run sudo dpkg-reconfigure console-setup and follow the on-screen prompts. You would usually use the arrow keys to traverse the menus, but that isn’t exactly possible, is it? Pressing the first letter of the option you’re looking for until it cycles up and is selected works fine, though. (Apple Laptop, USA-style layout, etc.) The full instructions on what you should pick for MacBooks are available here.

Now, moving in and out of the VM window is a little bit annoying, so I installed an SSH server.

Continue reading →

How to Set Up a Linux Server

Since I’ve been planning on moving to a VPS server sometime in the coming months, I’ve been reading up on server administration. How to set up Linux to serve web pages and parse PHP, how to not leave the door wide open to attackers, how to manage Apache, all that jazz. It’s all rather complicated at a glance, though luckily not too much so once you get into it. I’m doing my best to prepare myself so I’m not overwhelmed when the time comes to switch servers.

The folks over at NETTUTS must be psychic or something. They seemed to know that I was semi-actively looknig for information on this topic, since they recently published a tutorial on setting up an Ubuntu webserver. I had a “well that’s cool” moment when I saw it in my feed reader.

Continue reading →