Firstly, update system packages by typing sudo apt-get update command and download the deb package for sublime using wget with curl, And then install latest sublime 4 text by typing sudo apt install sublime-text command on command line or terminal
Category: Ubuntu
How to Install TeamViewer on Ubuntu 22.04
To download teamviewer deb package via wget command and then run sudo dpkg -i teamviewer_amd64.deb command to install teamviewer on ubuntu 22.04 via terminal window or command line. TeamViewer is a comprehensive remote access, remote control and remote support solution that works
How to Enable SSH on Ubuntu 22.04
To enable ssh connection in Linux Ubuntu Server, just you need to install OpenSSH by running sudo apt install openssh-server command and then enable ssh connection by running sudo systemctl enable ssh –now command on terminal window for users. SSH
How to Upgrade PHP 8.1 to 8.2 on Ubuntu
To upgrade to PHP 8.2 from 8.1, Simply add the PHP repository to your system and then use sudo apt install php8.2 command to install php 8.2 and activate it in ubuntu system. Steps to upgrade the PHP 8.1 to
The Requested URL /phpmyadmin was Not Found on this Server
The error the requested url /phpmyadmin was not found on this server occurs when the path to the phpmyadmin file is missing or an incorrect file path is set in apache2.conf. To fix this error, you have to open the
Read More The Requested URL /phpmyadmin was Not Found on this Server
How to Install Laravel 11 on Ubuntu 22.04 Nginx
To install laravel 11 on Ubuntu 22.04 nginx server, you need to open terminal window and type cd /var/www/html and composer create-project –prefer-dist laravel/laravel NewSetup command into it and press enter to install it into your system. How To Install
How to Find Files in Ubuntu via Command Line
Open your terminal window and simply type find command with -name, -size, and -type options to find a file by their name, size, and type on the Linux Ubuntu command line. Here are four ways how to find the files
Install MariaDB 10.4, 10.5, 10.6, 10.7 on Ubuntu 22.04
To install MariaDB 10.3, 10.4, 10.5, 10.6, 10.7, 10.10, 10.11, You just run a single command sudo apt install mariadb-server on a Linux Ubuntu 22.04 terminal window or command line and press Enter, this will install it. Here are some
Read More Install MariaDB 10.4, 10.5, 10.6, 10.7 on Ubuntu 22.04
How to Kill Process on Specific Port Ubuntu Linux
In the Linux Ubuntu system, to kill a process you have to first find the process, which you can do with sudo lsof -i :<port/pid/name> command, after that, you have to type sudo kill <PID/port/name> command on the terminal window
Upgrade PHP version 7.4 to 8.0 on Ubuntu
To upgrade PHP 7.4 to version 8.0 on Ubuntu apache, start a terminal window and type the sudo apt install php8.0 command to install the new PHP version and type sudo a2enmod php8.0 command to enable the PHP 8.0 version