初入linux記錄

宋辰軒發表於2020-10-11

謹以此文記錄我初入linux遇到的一些或大或小的問題 2020-10-11

有些是複製來的

  1. 許可權不夠問題:關閉防火牆-chkconfig iptables off(或者執行其他命令時許可權不夠)
You do not have enough privileges to perform this operation.

此時需要管理員許可權,輸入命令-su,然後輸入密碼即可

[scx@localhost Desktop]$ su
Password: 
[root@localhost Desktop]# 

在執行有些操作後(比如關防火牆)需要重啟-reboot

  1. 改檔案:如果檔案為只讀,先看看是不是沒有給管理員許可權!
    文章引用自這裡

cd + 目錄名
cd + 空格(退回上級目錄)
cd + 空格 + /(退回最高階目錄)

接著使用命令:vi + 檔名命令,開啟檔案,然後輸入命令:/ + 要修改的關鍵詞,查詢到要修改的內容,然後使用命令進入【文字輸入模式】,常用的命令如下:

① a 在游標之後開始輸入文字
② A 在行尾開始輸入文字
③ i 在游標之前開始輸入文字
④ I 在行首第一個非空白字元前輸入文字
⑤ o 在游標所在行後插入一空行
⑥ O 在游標所在行前插入一空行

儲存退出

修改好檔案後,如果在【文字輸入模式】下,首先按“ESC” 鍵進入【命令模式】,然後輸入“:”,進入【末行模式】,在末行模式下,可使用如下退出命令:
① q 是直接退出;
② wq 儲存後退出;
③ q! 強制退出;
④ wq! 強制儲存退出;

  1. 看ip地址
[root@localhost home]# ifconfig
eth0      Link encap:Ethernet  HWaddr 00:0C:29:26:FB:77  
          inet addr:192.168.139.128  Bcast:192.168.139.255  Mask:255.255.255.0
          inet6 addr: fe80::20c:29ff:fe26:fb77/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:265 errors:0 dropped:0 overruns:0 frame:0
          TX packets:51 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000 
          RX bytes:18560 (18.1 KiB)  TX bytes:4559 (4.4 KiB)

lo        Link encap:Local Loopback  
          inet addr:127.0.0.1  Mask:255.0.0.0
          inet6 addr: ::1/128 Scope:Host
          UP LOOPBACK RUNNING  MTU:16436  Metric:1
          RX packets:8 errors:0 dropped:0 overruns:0 frame:0
          TX packets:8 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:0 
          RX bytes:480 (480.0 b)  TX bytes:480 (480.0 b)

可知地址為inet addr:192.168.139.128

  1. 刪除使用者:首先要定位到cd /home/,輸入ls就可以檢視該目錄下的檔案,此時輸入userdel -h可以檢視幫助即可
[root@localhost home]# cd /home
[root@localhost home]# ls
scx
[root@localhost home]# userdel -h
Usage: userdel [options] LOGIN

Options:
  -f, --force                   force removal of files,
                                even if not owned by user
  -h, --help                    display this help message and exit
  -r, --remove                  remove home directory and mail spool
  -Z, --selinux-user            remove SELinux user from SELinux user mapping

相關文章