- Joined
- Nov 30, 2023
- Messages
- 48
- Thread Author
- #1
For this tutorial, you need ubuntu, doesn't matter which version as long as you can connect to the internet, you'll be fine.
What you need in your own computer
the code below assumes that you're using root as your user but if not, just add sudo before the commands
Installing JDK-6
What you need in your own computer
Software | Description | Download Links |
Bitvise SSH Client | The same as Winscp but better in my opinion | Download |
Java/JDK-6 | Required by your server to be able to run properly | Download |
Libraries | Libraries required for your server to run properly | Download |
the code below assumes that you're using root as your user but if not, just add sudo before the commands
Code:
apt update
apt install -y apache2
apt install -y mysql-server
apt install -y php*
apt install phpmyadmin
dpkg --add-architecture i386
apt-get install libssl1.0.0 libssl-dev
apt-get install libstdc++6:i386
apt-get install libxml2:i386
Installing JDK-6
Code:
apt install ./zulu6.22.0.3-jdk6.0.119-linux_amd64.deb
Command | Description |
---|---|
apt update | fetches the latest version of the package list from your distro's software repository. |
apt install -y apache2 | installs apache2 ( web server) default directory is /var/www/html |
apt install -y mysql-server | installs your mysql server |
apt install -y php* | installs PHP and any package that comes with it |
apt install phpmyadmin | install phpmyadmin, which is a dashboard for modifying and creating databases |
apt-get install libstdc++6:i386 | is used to add support for the 32-bit (i386) architecture on a system that runs a 64-bit architecture |
apt-get install libxml2:i386 | used to install the 32-bit (i386) version of the "libxml2" library on a system |