Here we will have list of instruction to install alpine in virtualbox.
1. Download alpine linux: https://www.alpinelinux.org/downloads/. Select required version i will select x86_64.
2. Open virtualbox and select "new".
3. Enter a name of the VM and select OS type as "linux" and version "Linux 2.6 / 3.x / 4.x (64-bit)".
4. Select RAM size minimum 512 MB.
5. Create hard disk minimum 8 GB dynamic VDI.
6. Select created VM click on setting and click on "Storage",then on "Controller:IDE" click on "+" and browse to downloaded alpine linux iso file.
7. Start created alpine VM. Login username "root" with no password.
8. To install alpine enter following command:
Code: Select all
setup-alpine9. Enter keyboard layout
Code: Select all
usEnter keyboard option:
Code: Select all
us11. Network configuration press "Enter" two times for automatic configuration. Dynamic ip address will be shown.
12. Enter password for root user.
13. Select time zone:
Code: Select all
AsiaSelect sub-zone:
Code: Select all
Kolkata15. List of mirrors will be there type "r" to select random mirrors.
16. Create a username. For default root press "Enter".
17. Permission for SSH login enter
Code: Select all
yes18. Select disk in which you will install alpine linux:
Code: Select all
sda19. Select disk type:
Code: Select all
sys20. Warning the following disk will be erased:
Code: Select all
y21. Alpine will take some time to install. Type "reboot" to restart VM.
22. Change directory to repositories:
Code: Select all
cd /etc/apk/Code: Select all
vi repositoriesPress "Esc" to go into command line and to save enter:
Code: Select all
:wqCode: Select all
apk updateCode: Select all
setup-xorg-baseCode: Select all
apk search xf86-videoCode: Select all
apk add xf86-video-fbdev xf86-video-intel xf86-video-vesaCode: Select all
apk search xf86-inputCode: Select all
apk add xf86-input-synaptics xf86-input-vmmouseCode: Select all
apk add virtualbox-guest-additionsCode: Select all
apk add gnome bash-completion gnome-terminal gnome-desktop gnome-shell gnome-system-monitor gnome menus gnome-calculator gnome-disk-utility gnome-control-centerCode: Select all
rc-update add dbusCode: Select all
rc-update add udevCode: Select all
rc-update add virtualbox-guest-additionsCode: Select all
rc-update add gdmWe have listed all required instruction for installation of alpine with graphical interface and keyboard mouse support. Please feel free to submit feedback.
Thanks,
Admin