ubuntu 的基本使用技巧

2021-08-06 07:04:37 字數 924 閱讀 7800

搭建ubuntu也有一段時間了,在這個過程中,也遇到了很多問題,為了方便以後,記錄下自己的成長足跡。。。

常用快捷鍵:

切換到操作介面的快捷鍵 : ctrl + shift + t (開啟終端)

操作介面輸入法切換 : ctrl + 空格

切換到root管理許可權 : sudo  -s /  sudo  su

root切換到普通使用者 : su  user (user 是自己安裝時的使用者)

設定root密碼 : sudo  passwd  root

檢視php版本 : php  -v

檢視mysql版本 : 進入mysql後  輸入 select  version();

檢視乙個檔案最後幾行命令  : tail   -n  20  filename

檔案新增許可權 : chmod  -r  777  /var/www/html

解壓gz檔案   gzip  -d  gz檔案

解壓zip檔案   unzip  filename.zip

全形半形切換 : shift  + 空格

檢視磁碟空間情況 : df  -h

linux 下執行php** : php  -f  filename

比較好的相關部落格

ubuntu安裝apache、mysql、php7.0 : 

ubuntu 常用命令 :

ubuntu 建立、重新命名、刪除、複製目錄命令 :

apache、mysql啟動命令

/etc/init.d/apache2   start/stop/restart

/etc/init.d/mysql     start/stop/restart

/var/www/html   存放php、html檔案

/etc            存放mysql、php、apache等檔案

Ubuntu使用技巧

ctrl c pwd 開啟終端後使用 ctrl shift t 關閉終端用ctrl shift w 1 reboot 2 shutdown r now 立刻重啟 root使用者使用 3 shutdown r 10 過10分鐘自動重啟 root使用者使用 4 shutdown r 20 35 在時間為...

Ubuntu 使用技巧

1.修改ubuntu 的螢幕亮度 在fn無法調節的情況下 root許可權修改 etc rc.local檔案,在exit 0 之前新增如下 echo 1500000 sys class backlight intel backlight brightness echo 1500000 sys clas...

ubuntu使用技巧

ubuntu有以下方式切換到root身份。sudo 命令,輸入當前使用者密碼後以root許可權執行命令,有時間限制且僅限當前命令。sudo i,輸入當前使用者密碼後以root許可權登入shell,無時間限制。使用exit或logout退出。su,輸入root賬戶的密碼後切換到root身份,無時間限制...