第一个aa替换为bb
sed -i 's/aa/bb/' file
所有aa替换为bb
sed -i 's/aa/bb/g' file
文件第3行的aa替换为bb
sed -i '3s/aa/bb/' file
找出包含xxx的行,并将其中的aa替换为bb
sed -i '/xxx/s/aa/bb/g' file
文件第1行,将其中的#号或是*号替换为fff
sed -i '1s/[#*]/fff/gp' file
第一个aa替换为bb
sed -i 's/aa/bb/' file
所有aa替换为bb
sed -i 's/aa/bb/g' file
文件第3行的aa替换为bb
sed -i '3s/aa/bb/' file
找出包含xxx的行,并将其中的aa替换为bb
sed -i '/xxx/s/aa/bb/g' file
文件第1行,将其中的#号或是*号替换为fff
sed -i '1s/[#*]/fff/gp' file
firewall-cmd --zone=public --add-port=80/tcp --permanent
firewall-cmd --permanent --zone=public --remove-port=80/tcp
firewall-cmd --permanent --add-rich-rule="rule family="ipv4" source address="192.168.188.222" port protocol="tcp" port="3306" accept"
firewall-cmd --permanent --remove-rich-rule="rule family="ipv4" source address=" 192.168.1.100" port protocol="tcp" port="3306" accept"
firewall-cmd --reload
git push 时出现:
Counting objects: 80, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (75/75), done.
fatal: The remote end hung up unexpectedly
Writing objects: 100% (80/80), 42.70 MiB | 12.01 MiB/s, done.
Total 80 (delta 47), reused 0 (delta 0)
error: RPC failed; HTTP 413 curl 22 The requested URL returned error: 413 Request Entity Too Large
fatal: The remote end hung up unexpectedly
Everything up-to-date
可以先尝试
git config --global http.postBuffer 524288000
同时检查 nginx 配置,在 nginx.conf
的 http
中添加:
client_max_body_size 100m;
100m 值取决于报错的大小。
dpkg: 处理归档 /var/cache/apt/archives/xxxxxx(–unpack)时出错
尝试以下方法解决:
dpkg -i --force-overwrite /var/cache/apt/archives/xxxxxx
安装工具 progress
,例如
yum install -y progress
使用:
progress -w
progress -m
可以显示 cp
mv
等进程的进度。
nmcli con
tzselect
或
cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
验证
date -R
timedatectl set-timezone Asia/Shanghai
timedatectl status 或 timedatectl
# 设为本地时区(一般不这样)
timedatectl set-local-rtc 1
# 设为协调世界时(UTC)(通常设UTC)
timedatectl set-local-rtc 0
timedatectl set-ntp true
timedatectl set-ntp false
docker container update --restart=unless-stopped <容器名字>
在需要对一个大于2T的硬盘分区时,使用fdisk不能建立分区。原因是fdisk只能建立2TB大小的分区。如果大于2T需要采用GPT磁盘模式。
使用parted工具,安装:
yum install parted
parted /dev/sdb //选择硬盘
GNUParted 2.3Using /dev/sdbWelcome to GNU Parted! Type 'help' to view a lis ofcommands。
(parted) mklabel gpt //类型GPT
Warning: The existing disk label on /dev/sdb will be destroyedand all data on this disk will be lost. Do you want to continue?
Yes/No? y //确定
(parted) mkpart prinmary 1 -1 //将硬盘分成一个分区
(parted) print //查看
(parted) quit //退出Information: You may need to update /etc/fstab.
mkfs.ext4 /dev/sdb1 //格式化文件系统为ext4
查看磁盘
blkid
添加到 fstab
echo UUID=177d63f1-b30a-40c8-b228-5dc3e18e96eb /home ext4 defaults 0 0 >> /etc/fstab
该版本功能和windows版基本一样,但是主机检测和远程桌面功能由于兼容性问题暂时无法使用,以后会支持。
FinalShell已经不再支持32位系统
一键安装脚本
rm -f finalshell_install_linux.sh
wget www.hostbuf.com/downloads/finalshell_install_linux.sh
chmod +x finalshell_install_linux.sh
./finalshell_install_linux.sh
安装路径
/usr/lib/FinalShell/
配置文件路径
/home/$USER/.finalshell/
来源:http://www.hostbuf.com/t/1059.html