系統配置,包括軟體安裝,各種問題解決。
$ sudo
apt-get
install libreoffice-l10n-zh-cn
當系統卡死時,鍵盤和滑鼠都沒辦法操作了以後。可以嘗試ctrl
+alt
+f2
(f2~f6)試試,看看能不能進tty介面。能進的話,進入以後htop
檢視問題。
當上述操作無效時,按住ctrl
+all
,然後一次按下r,e,i,s,u,b。每個按鍵按下間隔1s,最後系統重啟。sysrq為系統請求,按住sysrq以後,輸入的一切都會由linux核心來處理,可以進行很多低階操作。
r:unraw 將鍵盤控制從x server搶過來。
e:terminate給所有程序傳送sigterm訊號,讓他們自己解決善後。
i:kill 所有程序傳送sigkill訊號,強制關閉所有程序。
s:sync 將所有資料同步至磁碟。
u:unmount 將所有分割槽掛載為唯讀模式
b: reboot 重啟。
zip壓縮包解壓檔名亂碼
$ sudo
aptinstall
unzip
$ sudo
aptinstall unar
$ unzip -o cp936 xx.zip
$ unar xx.zip
開機指令碼設定
river_startup.sh
#!/bin/bash
/usr/local/bin/mirror.sh & \
echo "123123" | sudo -s sysctl -w net.ipv6.conf.all.disable_ipv6=1 & \
echo "123123" | sudo -s sysctl -w net.ipv6.conf.default.disable_ipv6=1 & \
echo "123123" | sudo -s sysctl -w net.ipv6.conf.lo.disable_ipv6=1 & \
echo "123123" | sudo -s mount -o rw,dir_mode=0777,file_mode=0777 /dev/sda3 /media/river/study & \
echo "123123" | sudo -s mount -o rw,dir_mode=0777,file_mode=0777 /dev/sda4 /media/river/download & \
echo "123123" | sudo -s mount -o rw,dir_mode=0777,file_mode=0777 /dev/sda5 /media/river/workspace & \
dingtalk & \
thunderbird & \
goldendict & \
qv2ray & \
mirror.sh,4k顯示器開機布局設定
#!/bin/bash
hdmi=$(xrandr |grep -e "hdmi"| grep -e " connected" |awk '')
dp0=$(xrandr |grep -e "dp-0"| grep -e " connected" |awk '')
if [ "$hdmi"x == "hdmi-0"x ]; then
xrandr --output edp-1-1 --mode 1920x1080 --pos 2560x192 --rotate normal --output hdmi-0 --primary --mode 2560x1440 --pos 0x0 --rotate normal --output dp-3 --off --output dp-2 --off --output dp-1 --off --output dp-0 --off
elif [ "$dp0"x == "dp-0"x ]; then
xrandr --output edp-1-1 --mode 1920x1080 --pos 2560x192 --rotate normal --output hdmi-0 --off --output dp-3 --off --output dp-2 --off --output dp-1 --off --output dp-0 --primary --mode 2560x1440 --pos 0x0 --rotate normal
else
echo "mirror.sh error"
fi
alias proxyyay="all_proxy=socks://localhost:1089 yay "
alias grepf="grep -r -n -s"
alias findc="find . -name \"*.c\" | xargs grep -n -s "
alias findh="find . -name \"*.h\" | xargs grep -n -s "
alias finda="find . -name \"*\" | xargs grep -n -s "
alias rmts="mv -t ~/.mytrash "
經常性重啟,所以不把所有的常用應用都新增到開機自啟動。開機後,根據需要啟動應用。
#!/bin/bash
# 啟動qq
# start wechat
# start dingtalk
/usr/lib/thunderbird/thunderbird
Linux系統配置
一般在這個目錄下 etc sysconfig network scripts 通常是 ifcfg eth0 網口1 ifcfg eth1 網口2 dell的是 ifcfg em1 網口1 ifcfg em2 網口2 重啟網絡卡 service network restart 如果ping 不通網域名...
linux系統配置
配置記錄 6 15 2016 10 19 18 am 1.vimrc配置 vimrc沒有,直接建立即可 vim開源配置檔案 這裡新增一些解決中文亂碼和tab鍵設定為空格的方法 解決中文亂碼 set termencoding utf 8 set encoding prc 設定tab為空格,注 ts是t...
檢視Linux系統配置
1.顯示cpu架構資訊 root localhost lscpu architecture x86 64 cpu op mode s 32 bit,64 bit byte order little endian cpu s 4 總處理器核心數量 on line cpu s list 0 3 thre...