1. 程式人生 > >Linux基礎概念

Linux基礎概念

命令別名 不能 etc 讀取配置 登錄 管理系 file use su -

1. 用戶類別:
  管理員:0
  普通用戶:1-65535
    系統用戶:1-499【專門用來運行後臺進程,不需要登陸,不與用戶關聯】
    一般用戶:500-60000【即管理員創建的用於日常工作而不能管理系統的普通用戶】

2. 以用戶角度,SHELL的類型:
  ①登錄式shell
    正常通過某終端登錄
    su - USERNAME
    su -l USERNAEM
  ②非登錄式shell
    su USERNAME
    圖形終端下打開的命令窗口
    自動執行的shell腳本
3. bash的配置文件:
  ①全局配置
    /etc/profile,/etc/profile.d/*.sh,/etc/bashrc
  ②個人配置
    ~/.bash_profile,~/.bashrc
  profile類型的文件:①設定環境變量 ②運行命令或腳本
  bashrc類型文件:①設定本地變量 ②設定命令別名
4. 登錄式shell如何讀取配置文件?
  /etc/profile --> /etc/profile.d/*.sh --> ~/.bash_profiel --> ~/.bashrc --> /etc/bashrc
5. 非登錄式shell如何讀取配置文件?
  ~/.bashrc --> /etc/bashrc --> /etc/profile.d/*.sh

Linux基礎概念