| Genel kullanılan komutlar - | General used commands |
|---|
- Update
sudo apt-get update
- Versiyon update
sudo apt-get upgrade
- Deleting unnecessary files
sudo apt-get autoremovesudo apt-get autoclean
| Terminal command | görevi hakkında | the mission about |
|---|---|---|
man komut | komut hakkinda bilgilendirme | Informing about the command |
komut --help | komut hakkinda bilgilendirme | Informing about the command |
sudo su, sudo -i | root olmanızı sağlar | It lets you be root |
pwd | bulunduğunuz dizini gösterir | we show directory |
ls | dizinin dosyalarını listeler | lists the files in the directory |
ll | dizinin dosyalarını ayrıntıları ile listeler | lists of files with details directory |
cd ~/Dizinismi/ | istenen dizine kısa yoldan gider | goes the shortest path to the required directory |
cd ~/Dizinismi/ | ~ işareti aslına /home/kullanic/ dizinine eşit görevdedir. | |
cd .. | bir dizin geri gider | goes back to a directory |
cd ~ | başlanğıc dizinine gider | goes to the home directory |
clear | terminal alanını temizler | Clears the terminal area |
sudo init 0 | bilgisayarı kapatır | Close the computer |
sudo init 6 | bilgisayarı yeniden başlatır | restarts the computer |
bc | basit matematiksel hesaplamalar | simple mathematical calculations |
cp -rp dosya /dizin/ | dosya kopyalama | copying files |
mv dosya /dizin/ | dosya taşıma | moving Files |
rm -r(f) <dosya> | dosya silme | deleting the file |
top,htop | çalışan uygulamalar, sistem bilgisi | running applications, system information |
reset | terminalınızı resetlemenizi sağlar | Your terminal lets you reset |
chmod +x dosya | dosyalara çalışabilirlik izni verilmesi | granting permission to file interoperability |
nano, vi | terminal text editörleri | terminal text editor |
df -m | bilgisayar disk bölümleri hakkında bilgilendirme | Information about computer disk partitions |
free -m | ram'in mb olarak kullanımı hakkında bilgilendirme | Information about the use of RAM in MB |
sudo mountall -v | yönetici olarak tüm diskleri birleştirir | combines all the drives as manager |
cat dosya | dosya içeriğini ekrana yazıyor | file writes screen content |
mkdir Klasörisim | klasör oluşturmak için | To create a folder |
| Bazı programların kurulumu | - Installed some programs |
|---|
| Program | Terminal komutu |
|---|---|
| 1.Git | sudo apt-get install git |
| 2.gcc | sudo apt-get install gcc |
| 3.JDK | sudo apt-get install openjdk-7-jdk |
| 4.SSH | sudo apt-get install openssh-server |
| 5.VirtualBox | sudo apt-get install virtualbox |
| 6.Wine | sudo apt-get install wine |
| 7.Yüklü programların | dpkg --get-selections |
| 8.Google chrome eror | sudo awk '!a[$0]++' /etc/apt/sources.list |
| 9.Performans | sudo apt-get install htop |
| 10.Netbeans | sudo apt-get install netbeans |
| 11.Sensors | sudo apt-get install lm-sensors |
| 12.htop | sudo apt-get install htop |
| 13.Geany | sudo apt-get install geany |
1.32-bitli sistem üçün google chrome
wget https://dl.google.com/linux/direct/google-chrome-stable_current_i386.deb
sudo dpkg -i google-chrome-stable_current_i386.deb
1.64-bitli sistem üçün google chrome
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
sudo dpkg -i google-chrome-stable_current_amd64.deb
tar.xz fayllarının extract edilməsi
tar -xvf ".tar.xz"
root rejimine keçid
chown -R root *
Comments
Post a Comment