Shahzeb Ihsan

"The reasonable man adapts himself to the world; the unreasonable man persists in trying to adapt the world to himself. Therefore, all progress depends on the unreasonable man." -- George Bernard Shaw


Blog | Archive | About Me | Projects

Download Arch Linux VMs

24 Jun 2015 | virtualbox, virtualmachine, archlinux, linux, development

I have uploaded 3 Arch Linux Virtual Machines to Dropbox. One without any desktop environment (command line only), another with LXQT and a third with XFCE. You will need to create a new user since these VMs only contain the default “root” account with password “root”. If you’d rather install Arch Linux on VirtualBox from scratch, go here.

Creating a New User:

$ useradd  [username]
$ passwd  [username]
$ mkdir  /home/[username]
$ chown  -R  [username]:[username] /home/[username]

…for example:

$ useradd  tux
$ passwd  tux
$ mkdir  /home/tux
$ chown  -R  tux:tux  /home/tux

Adding a User to SUDOers

comments powered by Disqus

Older · View Archive (8)

Installing Arch Linux on VirtualBox

Arch Linux has to be installed manually since the official Arch Linux ISO doesn’t contain an installer, additionally, no packages are included in the ISO, so a working internet connection is required during installation. If you’d rather just download a pre-configured Arch Linux VM, go here.

Newer

Configuring Your Arch Linux VM for Development

I am stuck on a Windows machine most of the time, but I prefer Linux. Also, Ruby on Rails on Windows is a real PITA. So, I configure a VM with all the necessary development tools and share my project/work folders with the VM and mount it using mount.vboxsf. Then I run the VM in headless mode and SSH into it.