INSTALL ALPINE LINUX IN VIRTUALBOX
Posted: Sun Jul 02, 2023 7:42 am
Alpine is a lightweight linux distro with full fledged docker support.
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:.
9. Enter keyboard layout.
Enter keyboard option:
10. Enter hostname. Default is localhost.Press "Enter".
11. 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:.
Select sub-zone:
14. Select NTP providers. Default is chrony press "Enter".
15. 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.
18. Select disk in which you will install alpine linux:.
19. Select disk type:.
20. Warning the following disk will be erased:.
21. Alpine will take some time to install. Type "reboot" to restart VM.
22. Change directory to repositories:
23. edit repositories:
remove "#" at the beginning of repositories links.
Press "Esc" to go into command line and to save enter:
24. Update alpine:
25. Setup graphical interface:
26. Search video drivers:
27. Install selected video drivers:
28. Search input drivers for keyboard, mouse etc:
29. Install selected input drivers:
30. Install virtualbox guest addition:
31. Install gnome utilities:
32. Add services: (dbus, udev, virtualbox-guest-additions, and gnome desktop manager):
]
33. Reboot VM.
We have listed all required instruction for installation of alpine with graphical interface and keyboard mouse support. Please feel free to submit feedback.
Thanks,
Admin
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