window下通过进程ID查询进程所在路径
wmic process get name,executablepath,processid | findstr pid
window下通过进程ID查询进程所在路径
wmic process get name,executablepath,processid | findstr pid
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.
1 | $ hexo new "My New Post" |
More info: Writing
1 | $ hexo server |
More info: Server
1 | $ hexo generate |
More info: Generating
1 | $ hexo deploy |
More info: Deployment
我们可以直接在 pip 命令中使用 -i 参数来指定镜像地址
pip3 install pandas -i https://pypi.tuna.tsinghua.edu.cn/simple
其他国内镜像源
中国科学技术大学 : https://pypi.mirrors.ustc.edu.cn/simple
豆瓣:http://pypi.douban.com/simple/
阿里云:http://mirrors.aliyun.com/pypi/simple/
用demsg -T | grep -i -E -B100 “killed process”
输出内容有进程号,可以进行比对
给舒尔特方格游戏加了几个功能
普通删除方式
Hexo正常删除文章的流程是先删除本地文件。
以原始文件:helloworld.md为例:
首先进入到source / _post 文件夹中,找到helloworld.md文件,在本地直接执行删除。
然后依次执行命令:
1 | hexo clean |
1 | hexo g |
1 | hexo d |
此时已经成功删除文章了。
转自
1 | https://www.yuezeyi.com/294.html |
cn域名不能转入cloudflare,因为不支持cn域名,在 支持的扩展 中没有找到 .cn
cloudflare pages 部署时需要在构建命令处,添加如下命令
1 | npm run build |
因为fedora37的官方repo已不提供,命令行升级的可能性已不存在,所以在新硬盘上安装fedora40,把fedora37硬盘挂在到fedora40系统,为后续迁移做准备
在window系统用官方Fedora Media Writer工具做U盘引导镜像,工具自带下载镜像功能,好用!
又到了分区环节,37用的分区是/usr, /var, /opt 单独分了100G,这些分区用不完,还占用磁盘空间,这次重新分配
分区 | 磁盘大小 | 格式 |
---|---|---|
/boot/efi | 2G | |
/boot | 20G | |
/ | 300G | lvm |
/home | 300G | lvm |
禁用gdm开机启动
1 | systemctl disable gdm |
安装lightdm
1 | yum search fedora.release |
开机启动
1 | systemctl enable lightdm.service |
开启服务
1 | systemctl start lightdm.service |
登录时有个问题,选择xfce4会话,密码正确还是会跳回未输入密码的画面,但是先用gnome会话登录成功后注销,再用xfce4会话登录就可以登录成功
在 /etc/pam.d/login 文件行尾添加
1 | session required /lib64/security/pam_limits.so |
依然没有解决问题
安装ssh和vsftpd后
确认sshd.service服务文件是否生成
1 | systemctl list-unit-files | grep ssh |
开机启动sshd服务
1 | systemctl enable sshd.service |
开始sshd服务
1 | systemctl start sshd.service |
用nc -nvv IP 22
1 | nc -nvv IP 22 |
显示 CONNECT SUCCESS 字样即为成功