How to Install Java on a VPS Server
How to Install Java on a VPS Server If you’ve ever tried to run a Minecraft server on Linux or any other application that requires a...
Lasīt
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 Install Java on a VPS Server If you’ve ever tried to run a Minecraft server on Linux or any other application that requires a...
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...