Linux和Windows修改文件时间的方法

有时候我们需要把一个目录里的所有文件的修改时间变更成某个特定的时间,使用下面的方法:

# Windows下,需要使用PowerShell:
$directoryPath = "E:"
$fixedTime = Get-Date "2021-01-01 11:54:12"
Get-ChildItem -Path $directoryPath -Recurse | ForEach-Object {
    $_.LastWriteTime = $fixedTime
    $_.CreationTime = $fixedTime
    $_.LastAccessTime = $fixedTime
}
# Linux下
find . -type f -exec touch -t 202406011530.00 {} +

Ubuntu无法自动获取IP

用Ubuntu不多, 近日一个服务器无法自动获取IP, 最后发现执行一下命令就可以了

dhclient -v ens18
为啥启动的时候不获取,也不知道,在 /etc/netplan/*.yml里面是有dhcpv4的.
apt install netplan.io
然后 netplan generate
netplan apply
后面再重启就会自动获取IP了

I.DO