Check System Date
12% dateWed Apr 20 06:11:59 CST 2022
Set System Date
12% sudo date -s 10:10:10Wed Apr 20 10:10:10 CST 2022
Set System Date and Time
12% sudo date -s "2018/8/8 10:00:00"...
Install vsftpd1# yum install vsftpd
Start vsftpd service1# systemctl start vsftpd.service
Make FTP service startup persistent on system boot1# systemctl enable vsftpd.service
Check whether port 2...
Make sure the desktop is installed# yum groupinstall "GNOME Desktop"
Install TigerVNC and other dependency# yum install tigervnc-server xorg-x11-fonts-Type1
Setup the VNC server config fil...
方法一
自启动脚本放置于/etc/init.d(在RHEL7里面,/etc/init.d是指向/etc/rc.d/init.d符号链接)
推荐使用symbolic link,例如:/etc/init.d/mgcld -> /t/m/license/mgcld*,这里mgcld需要有可执行权限。
1chmod +x /t/m...
目录
概述
CentOS7,LVM根分区扩容步骤
CentOS7,非LVM根分区扩容步骤:
一、背景,概述
MBR(Master Boot Record)(主引导记录)和GPT(GUID Partition Table)(GUID意为全局唯一标识符)是在磁盘上存储分区信息的两种不同方式
对于传统的MBR分区方式,有很多的限制:
最多4个主分区(3个主分区+1个扩展分区(扩展分区里面可...
α Α alphaβ Β betaγ Γ gammaδ Δ deltaε Ε epsilonζ Ζ zetaη Η etaθ Θ thetaι Ι iotaκ Κ kappaλ Λ lambdaμ Μ muν Ν nuξ Ξ xiο Ο omicronπ Π piρ Ρ rhoσ Σ sigmaτ Τ tauυ Υ upsilonφ Φ phiχ Χ chiψ Ψ psiω Ω omega
Gre...
Abbreviations
SDC :Synopsys Design ConstraintsSGDC : Spyglass Design ConstraintsCDC : Clock Domain Crossing
In Spygalss project file e.g. work.proj add this option
1set_option sdc2sgdc { y...
Create Symbolic Link to File in CMD Prompt
1mklink "Link" "Source_Target"
Create Symbolic Link to Directory in CMD Prompt
1mklink /d "Link" "Source_Target"
Cr...
查看当前swap
1free -h
停用所有swap
1swapoff -a
创建文件夹作为虚拟swap分区
1mkdir /home/swap
创建swap分区
1dd if=/dev/zero of=/home/swap/swapfile bs=1G count=64
格式化swap分区
1mkswap /home/swap/swapfile
mkswap会产生一个UU...
判决反馈均衡器(上)»
判决反馈均衡器(中)»
Part7. VerilogA模型
Verilog-A Hardware Description Language(HDL)是IEEE定义的用于描述模拟系统(Analog Systems)行为的硬件描述语言。通过对子模块建模,可实现项目初期系统级模型搭建和仿真验证。提供研究阶段的可行性分析。自顶向下(TOP-DOWN)设计...