Minimal Ubuntu Desktop Configuration

Note: this post is a part of the series of posts about my experience using Ubuntu Desktop for software development.

 

Configuring Guest Operating System – Ubuntu Desktop 16.04

The first thing after you logon – you want to update Ubuntu. Click on the gear icon on the top right and select About This Computer

post-13-25

Hit Install Updates button and follow the instructions. Then restart.

 

post-13-26

post-13-27

Next step – installing Guest Additions into VM. In VirtualBox VM select Devices | Insert Guest Additions CD Image… menu item.

post-13-28

post-13-29

post-13-30

Restart Ubuntu by selecting gear menu, Shut Down… Restart.

Next – create a directory in Ubuntu (guest OS) and mount it to the shared folder in Mac OS X (host OS). If you have not done yet – make sure you set up Shared Folder in VirtualBox.

Click the top left button in the dock, called Dash, and type “terminal”, then select Terminal application.

post-13-31

In Terminal window type the following commands:

$ ls
$ mkdir share
$ sudo mount -t vboxsf -o uid=$UID,gid=$(id -g) share ~/share
$ cd share
$ ls share

First, we check what directories we already have, then we create a directory named share, then we mount a folder named share on Mac OS X to the directory named share on Ubuntu. You might choose different names. Then we make sure that the directory share is empty.

post-13-32

Now, switch back to your host OS (Mac OS X in my case) and type the following commands in Terminal:

$ ls
$ echo Hello Ubuntu! > hello.txt
$ ls
$ cat hello.txt

post-13-33

Now, switch to Ubuntu VM and continue typing in Terminal:

$ ls
$ cat hello.txt

post-13-34

So, at this point you can share files between host and guest operating systems.

It’s time to view the Ubuntu desktop full screen. Hit left Command-F (or green dot in window title) and resize Terminal window.

post-13-35

Next step – installing tree command. It produces tree-like output that can be pretty helpful sometimes. By default it is not installed, so you need to type

$ sudo apt install tree

After you install it, type something like

$ tree ~

post-13-36

Next step – installing Chromium Web Browser.  Hit Ubuntu Software button on the dock, type “chromium” in the search bar and hit Install button.

post-13-37

post-13-38

The last step – go to System Settings | User Accounts and check Show my login name in the menu bar, then in Time & Date check Weekday and Date and month.

post-13-39

post-13-40

That’s it! You’ve got yourself installed and minimally configured Ubuntu Desktop 16.04 LTS!

post-13-41

 

Minimal Ubuntu Desktop Configuration

One thought on “Minimal Ubuntu Desktop Configuration

Comments are closed.