pve下crontab Linux
因为pve是基于debian的平台并且直接运行就是root
所以没有用户crontab
crontab -l 并没有反应。。。
改etc的配置
vi /etc/crontab
# Example of job definition:
# .---------------- m...
ZeroTier 服务的iptables 设置 Linux
iptables -A INPUT -i zt+ -j ACCEPT
iptables -A INPUT -i ens33 -p udp --sport 9993 -j ACCEPT
service iptables save
ip6tables -A INPUT -i zt+ -j ACCEPT
...
Cadence Genus取消hierarchy合并(ungroup) Cadence
强行合并所有层hierarchy
ungroup -all
不合并
不要设置上面的ungroup
set_db auto_ungroup none
或者具体的module中改掉 ungroup_ok
用Genus synthesis后缺少VDD VSS 问题 Cadence
您要是有功夫就手动一个个改sch。。。
原则上是因为综合的timing lib中就不带VDD 和 VSS,所以导致的netlist不带vdd和vss
也就是最后生成的sch不带
解决办法
1. genus加生成power的指令,我...
RHEL cenos 等 linux 添加显示器分辨率 Linux
显示器分辨率没有 1920x1080
cvt也行
gtf 1920 1080 24
gtf 1600 900 24
gtf 1280 720 30
gtf 1366 768 24
sudo xrandr --delmode Virtual1 "" 根本删不掉,放弃
sudo xrandr --newmode &q...
Anydesk iptable setting Linux
Offical firewall setting is bullshit not working at all
https://support.anydesk.com/knowledge/firewall
old linux rm sbin incase shell be hacked
export...
rhel换centos 7的源 Linux
rpm -qa|grep yum
看清楚这些要卸载的
su
切换root
rpm -qa|grep yum|xargs rpm -e --nodeps
移除红帽的yum
(不知道是错觉还是什么感觉没必要移除只要有源和key就行)
到
htt...
去掉redhat linux提示注册 Linux
sudo rpm -qa | grep subscription-manager|xargs yum remove
home分区挂在失败导致无法进入系统 Linux
输入root密码进入紧急模式
查看系统识别到的分区
lsblk
df -h 查看挂在的分区
发现少了/home分区
尝试挂载/home
mount /dev/centos/home /home
出错 Mount: wrong fs type, bad o...