How to Allow Remote Access to MySQL
How to Allow Remote Access to MySQLRemote access to MySQL lets you administer and use databases from another computer or application outside the server.Β This...
Read
1.Β ls - "List files"
Displays files and directories within a directory. Using the -l option provides more detailed information (file size, date, permissions):
ls -l
cd /home/user/Documents
pwd
mkdir NewFolder
rm failas.txt
rm -r aplankas/
cp file.txt copy.txt
cp -r folder1 folder2
mv file.txt folder/
mv oldname.txt newname.txt
touch newfile.txt
cat file.txt
nano file.txt
grep "text" file.txt
grep -r "tekstas"
find . -type f -name "file.txt"
find . -type d -name "folder"
sudo apt update
sudo apt install program
sudo apt upgrade
tar -cvf archive.tar folder/
tar -xvf archive.tar
chmod 755 file.txt
ps aux
kill 12345
df -h
history
How to Allow Remote Access to MySQLRemote access to MySQL lets you administer and use databases from another computer or application outside the server.Β This...
How to Enable Root Login on a Linux Server?Β Sometimes, when managing a Linux server, you might need direct root access via the SSH console...