Phase 1 of 3: Setup
[ERROR] Your OS is not currently supported by this installer.
[ERROR] You can probably run Virtualmin Professional on your system, anyway,
[ERROR] but you'll have to install it using the manual installation process.
-
- Posts: 8
- Joined: Sun Sep 15, 2019 7:10 pm
Re: How to install Virtualmin on Raspberry pi 4
What it say - it appears not the have a Raspbian (or ARM ) specific version.
Can you use the manual method? Might work.
EDIT: does seem to be a Raspbian version. https://www.virtualmin.com/os-support No idea how to install it though, probably best to check their website.
Can you use the manual method? Might work.
EDIT: does seem to be a Raspbian version. https://www.virtualmin.com/os-support No idea how to install it though, probably best to check their website.
Software guy, working in the applications team.
-
- Posts: 27225
- Joined: Tue Mar 25, 2014 12:40 pm
Re: How to install Virtualmin on Raspberry pi 4
sheikhmujib wrote: ↑Mon Oct 14, 2019 4:12 pmPhase 1 of 3: Setup
[ERROR] Your OS is not currently supported by this installer.
[ERROR] You can probably run Virtualmin Professional on your system, anyway,
[ERROR] but you'll have to install it using the manual installation process.
https://www.virtualmin.com/os-support.html
Take what I advise as advice not the utopian holy grail, and it is gratis !!
-
- Posts: 8
- Joined: Sun Sep 15, 2019 7:10 pm
Re: How to install Virtualmin on Raspberry pi 4
jamesh wrote: ↑Mon Oct 14, 2019 4:30 pmWhat it say - it appears not the have a Raspbian (or ARM ) specific version.
Can you use the manual method? Might work.
EDIT: does seem to be a Raspbian version. https://www.virtualmin.com/os-support No idea how to install it though, probably best to check their website.
Virtualmin supports Raspbian Linux but the problem is that it requires manual installation. I hope someone will share virtualmin manual installation steps here.
-
- Posts: 27225
- Joined: Tue Mar 25, 2014 12:40 pm
Re: How to install Virtualmin on Raspberry pi 4
sheikhmujib wrote: ↑Mon Oct 14, 2019 4:43 pmjamesh wrote: ↑Mon Oct 14, 2019 4:30 pmWhat it say - it appears not the have a Raspbian (or ARM ) specific version.
Can you use the manual method? Might work.
EDIT: does seem to be a Raspbian version. https://www.virtualmin.com/os-support No idea how to install it though, probably best to check their website.
Virtualmin supports Raspbian Linux but the problem is that it requires manual installation. I hope someone will share virtualmin manual installation steps here.
What is wrong with reading the developers website, it is after all their software:
https://www.virtualmin.com/documentation/installation
Take what I advise as advice not the utopian holy grail, and it is gratis !!
Re: How to install Virtualmin on Raspberry pi 4
sheikhmujib wrote: ↑Mon Oct 14, 2019 4:43 pmjamesh wrote: ↑Mon Oct 14, 2019 4:30 pmWhat it say - it appears not the have a Raspbian (or ARM ) specific version.
Can you use the manual method? Might work.
EDIT: does seem to be a Raspbian version. https://www.virtualmin.com/os-support No idea how to install it though, probably best to check their website.
Virtualmin supports Raspbian Linux but the problem is that it requires manual installation. I hope someone will share virtualmin manual installation steps here.
There seem to be detailed instructions on the Webmin documentation site, under the heading Setting up Virtualmin Manually
http://www.webmin.com/vdownload.html
Beware of the Leopard
-
- Posts: 8
- Joined: Sun Sep 15, 2019 7:10 pm
Re: How to install Virtualmin on Raspberry pi 4
Unfortunately I found the manual installation instructions quiet difficult to understand.fruitoftheloom wrote: ↑Mon Oct 14, 2019 4:48 pmsheikhmujib wrote: ↑Mon Oct 14, 2019 4:43 pmjamesh wrote: ↑Mon Oct 14, 2019 4:30 pmWhat it say - it appears not the have a Raspbian (or ARM ) specific version.
Can you use the manual method? Might work.
EDIT: does seem to be a Raspbian version. https://www.virtualmin.com/os-support No idea how to install it though, probably best to check their website.
Virtualmin supports Raspbian Linux but the problem is that it requires manual installation. I hope someone will share virtualmin manual installation steps here.
What is wrong with reading the developers website, it is after all their software:
https://www.virtualmin.com/documentation/installation
Re: How to install Virtualmin on Raspberry pi 4
You can install Virtualmin in Raspberry Pi with just a simple modification on to the install script.
I have my Raspberry Pi 4 installed with Raspian Buster and it is based on Debian Linux 10 using the install script.
What you need to do is
1. wget http://software.virtualmin.com/gpl/scripts/install.sh
2. sudo nano install.sh
3. Find the text "get_distro"
4. Add in os_type="debian" after get_distro
get_distro
os_type="debian"
log_debug "Operating system name: $os_real"
log_debug "Operating system version: $os_version"
log_debug "Operating system type: $os_type"
log_debug "Operating system major: $os_major_version"
What this does is, it will force the script to recognize the host as a debian operating type.
Execute the script ... It should install without any issues.
Cheers.
I have my Raspberry Pi 4 installed with Raspian Buster and it is based on Debian Linux 10 using the install script.
What you need to do is
1. wget http://software.virtualmin.com/gpl/scripts/install.sh
2. sudo nano install.sh
3. Find the text "get_distro"
4. Add in os_type="debian" after get_distro
get_distro
os_type="debian"
log_debug "Operating system name: $os_real"
log_debug "Operating system version: $os_version"
log_debug "Operating system type: $os_type"
log_debug "Operating system major: $os_major_version"
What this does is, it will force the script to recognize the host as a debian operating type.
Execute the script ... It should install without any issues.
Cheers.