Skip to content
The documentation is not yet completly updated for Version 0.4. This will be done within the next few days.

Installation

Add the microsoft repository as the official ubuntu package manager doesn´t contain the dotnet runtime in version 9

Terminal window
wget https://packages.microsoft.com/config/ubuntu/22.04/packages-microsoft-prod.deb -O packages-microsoft-prod.deb
sudo dpkg -i packages-microsoft-prod.deb
rm packages-microsoft-prod.deb
sudo apt update

Install the dotnet runtime

Terminal window
sudo apt-get install -y dotnet-runtime-9.0

Download the latest release of this tool

Terminal window
curl -s https://api.github.com/repos/Derroylo/webdev-tool/releases/latest | grep "browser_download_url.*zip" | cut -d : -f 2,3 | tr -d \" | wget -qi -

Unzip the downloaded file, create a folder in your home directory and add a symlink to the bin folder

Terminal window
mkdir ~/webdev
unzip webdev-tool.zip -d ~/webdev/
rm webdev-tool.zip
chmod +x $HOME/webdev/webdev.sh
sudo ln -s $HOME/webdev/webdev.sh /usr/local/bin/webdev

On some system configurations the folder /usr/local/bin doesn´t exists, so we need to create it to follow linux best practices.

Terminal window
sudo mkdir -p /usr/local/bin
sudo chown root:root /usr/local/bin
sudo chmod 755 /usr/local/bin

If everything worked, then you should be able to use the webdev command in the terminal.