The setup of TitaniaOS x86 image for Oracle's VirtualBox VM ware. This guide has been written for the latest tool's 5.2.22 release.
- Machine -> New
- Add name, Select type as
Linux
and Version asOther Linux (64 bit)
. Proceed with Continue. - Set memory as 4GB. Proceed with continue.
- Select
Use an existing virtual hard disk file
, and choose the image file. Hit Create. - Select
IDE
as disk type for the Titania image. - Set network interface to
Bridged
. Titania will be part of your home network. - Double-click to start the boot.
- Use the IP address that appears on the console to configure your Titania Box.
This is a commandline virtualization tool. Latest version is downloaded from here.
We can make use of the existing virtualbox setup we have.
cd ~/VirtualBox\ VMs/
Import the box into your environment.
vagrant package --base=titania-x86 --output=titania-x86.box
Setup for vagrant environment
mkdir -p ~/vagrant
cp titania-x86.box ~/vagrant
cd ~/vagrant
vagrant init
The init
command will create a fresh Vagrantfile
. Now, we make edits on your vagrant environment.
Edit line 15 to add our custom box name.
config.vm.box = "titania-vagrant.box"
Uncomment line 31, so that your configuration interface is available at http://127.0.0.1:8080/
config.vm.network "forwarded_port", guest: 80, host: 8000, host_ip: "127.0.0.1"
Add the following lines for the default root login.
# default user and password
config.ssh.username = "root"
config.ssh.password = "titania"
vagrant up
vagrant ssh
vagrant halt
vagrant box list
You can run Titania on VMware, a very common virtualization solution. We provide installation directions to the OSX and Linux versions here. Other platforms may function similarly.
You can install VMware Fusion from here.
- Select
Create a custom virtual machine
. - Under
Choose OS
, selectLinux -> Other Linux 4.x or later kernel 64-bit
. Hit Continue. - Set
Firmware Type
asBIOS
- Under
Choose a Virtual Disk
, selectUse an existing virtual disk
. - Select the TitaniaOS vmdk file, with
Make a separate copy of the virtual disk
option. - Add a name to your VM and Finish.
This scenario is tested on WMware Workstation, and it is similar in other VMware software, too.
- Select
New Virtual Machine
. A wizard will appear. - Select
Custom (advanced)
Virtual Machine Configuration. - Select
I will install the operation system later.
- Use default values up until Disk Configuration.
- Select
IDE
as Virtual Disk Type. - Select
Use an existing virtual disk
. Select the Titania.vmdk
image. - Finish the wizard.
Q: What should I do if I get kernel panic during boot? A: Make sure your disk type is set to IDE.
Q: How can I log in to the Titania Box after install?
A: You can make an administrator user on the web interface.
The address of the web interface is displayed on the console.
The entered username and password can be used to log in to
Titania box via SSH or console.
Before the administrator user is created, the default root
password is titania
(SSH is not allowed), which is disabled
when the administrator user was created.