4

First of all I am totally new to Linux. I decided to load Ubuntu Linux on Virtualbox and found an ova file here:

https://insights.ubuntu.com/2015/01/15/snappy-ubuntu-core-now-on-the-hypervisor-of-your-choice-with-ova/

It runs fine but when it boots up it is asking for a username / password. I've looked around and can't seem to find it. Can someone help me out?

Thanks!

dholbach
  • 1,713
  • 12
  • 27
Commander Dave
  • 41
  • 1
  • 1
  • 2

2 Answers2

4

Boot into a root shell: How do I boot into a root shell?

Then change the password for your user (ubuntu)

sudo passwd <username>

Or create a new user

sudo adduser <username>
Osolong
  • 146
  • 5
1

The default user and password for a Ubuntu Core image like the one you download is "ubuntu" and "ubuntu" (without quotes).

But this is just a bare image (just the base system nothing installed) of a new alpha installation system designed for cloud computing. It's called snapy and it's not likely what you are looking for.

Javier Rivera
  • 35,434