博客
| centos设置static ip | ||
| linux 查找trick | ||
| airtag | 日常 | |
| conda | Server | |
| nfs centos | Server | |
| mysql | ||
| ssh反向代理 | Server内网穿透 | |
| vscode | ||
| code server | Server | |
| jupyter notebook | Server | |
| pve | ||
| 黑苹果 | 服务器折腾 |

centos设置static ip
archlinux设置固定ip cd /etc/netctl/ Ip adds 查看网卡id vim 网卡id TYPE=Ethernet PROXY_METHOD=none BROWSER_ONLY=no BOOTPROTO=“static” # 使用静态IP地址,默认为dhcp …

linux 查找trick
查找大文件 find / -type f -print0 | xargs -0 du -h | sort -rh | head -n 10 精确查找 find / -type f -name "*.conf" | xargs grep -ri "10.0.0.74" -i

airtag
淘宝廉价airtag,28一个,给自行车🚴贴上

conda
Miniconda Miniconda is a free minimal installer for conda. It is a small, bootstrap version of Anaconda that includes only conda, Python, the packages they …

nfs centos
[root@frps.cn ~]# yum install -y nfs-utils rpcbind [root@frps.cn ~]# systemctl start rpcbind [root@frps.cn ~]# systemctl enable rpcbind [root@frps.cn ~]# …

mysql
Archlinux 安装mysql; Paceman -S mariadb sudo mariadb-install-db --user=mysql --basedir=/usr --datadir=/var/lib/mysql Two all-privilege accounts were created. One …

ssh反向代理
SSH 命令端口转发(Port Forward) 远程转发到本地端口 -L (端口转发) 命令格式: ssh -N -f -L lhost:lport:rhost:rport ruser@rhost # 访问本地127.0.0.1:8443即可访问www.google.com:443 ssh -N -f -L …

vscode
1.下载安装vscode 巨硬爸爸开源的全平台IED工匠,本身只是一个简单的文本编辑查看代码的工具,由于众多开发者贡献的免费插件,已经成为一个很有影响力的一个IDE开发工具,墙裂建议你们试试使用vscode进行远程开发,比pycharm的远程开发好用10000000倍。 …

code server
云端vscode 云端vscode的概念就是在浏览器中有和本地一样体验的vscode环境。在以下这个网站中,官方已经有实现在浏览器中的实现。 installation https://github.com/coder/code-server/releases ## …

jupyter notebook
(base) andrew@imac:~#jupyter notebook password Enter password: Verify password: [NotebookPasswordApp] Wrote hashed password to …


黑苹果
配置 intel 10600k microstar Z490 unify itx主板 阿斯加特 32G DDR4 1TB 阿斯加特 ssd 500G 西数SN750 ssd GPU 5700XT 机箱 乔思伯V8 电源 全汉ms600w sfx小电源 成品 (base) …
centos设置static ip

archlinux设置固定ip cd /etc/netctl/ Ip adds 查看网卡id vim 网卡id TYPE=Ethernet PROXY_METHOD=none BROWSER_ONLY=no BOOTPROTO=“static” # 使用静态IP地址,默认为dhcp IPADDR=“192.168.28.5” # 设置的静态IP地址 NETMASK=“255.255.255.0” # 子网掩码 GATEWAY=“192.168.28.1” # 网关地址 …
archlinux设置固定ip cd /etc/netctl/ Ip adds 查看网卡id vim 网卡id TYPE=Ethernet PROXY_METHOD=none BROWSER_ONLY=no BOOTPROTO=“static” # 使用静态IP地址,默认为dhcp IPADDR=“192.168.28.5” # 设置的静态IP地址 NETMASK=“255.255.255.0” # 子网掩码 GATEWAY=“192.168.28.1” # 网关地址 …
linux 查找trick

查找大文件 find / -type f -print0 | xargs -0 du -h | sort -rh | head -n 10 精确查找 find / -type f -name "*.conf" | xargs grep -ri "10.0.0.74" -i
查找大文件 find / -type f -print0 | xargs -0 du -h | sort -rh | head -n 10 精确查找 find / -type f -name "*.conf" | xargs grep -ri "10.0.0.74" -i
conda

Miniconda Miniconda is a free minimal installer for conda. It is a small, bootstrap version of Anaconda that includes only conda, Python, the packages they depend on, and a small number of other useful packages, including pip, zlib and a few others. …
Miniconda Miniconda is a free minimal installer for conda. It is a small, bootstrap version of Anaconda that includes only conda, Python, the packages they depend on, and a small number of other useful packages, including pip, zlib and a few others. …
nfs centos

[root@frps.cn ~]# yum install -y nfs-utils rpcbind [root@frps.cn ~]# systemctl start rpcbind [root@frps.cn ~]# systemctl enable rpcbind [root@frps.cn ~]# systemctl start nfs [root@frps.cn ~]# systemctl enable nfs #首先检查nfs挂载目录是否正常 [root@nfs ~]# …
[root@frps.cn ~]# yum install -y nfs-utils rpcbind [root@frps.cn ~]# systemctl start rpcbind [root@frps.cn ~]# systemctl enable rpcbind [root@frps.cn ~]# systemctl start nfs [root@frps.cn ~]# systemctl enable nfs #首先检查nfs挂载目录是否正常 [root@nfs ~]# …
mysql

Archlinux 安装mysql; Paceman -S mariadb sudo mariadb-install-db --user=mysql --basedir=/usr --datadir=/var/lib/mysql Two all-privilege accounts were created. One is root@localhost, it has no password, but you need to be system 'root' user to connect. …
Archlinux 安装mysql; Paceman -S mariadb sudo mariadb-install-db --user=mysql --basedir=/usr --datadir=/var/lib/mysql Two all-privilege accounts were created. One is root@localhost, it has no password, but you need to be system 'root' user to connect. …
ssh反向代理

SSH 命令端口转发(Port Forward) 远程转发到本地端口 -L (端口转发) 命令格式: ssh -N -f -L lhost:lport:rhost:rport ruser@rhost # 访问本地127.0.0.1:8443即可访问www.google.com:443 ssh -N -f -L [lhost:]8443:www.google.com:443 root@1.1.1.1 本地转发到远程端口 -R (内网穿透) 命令格式: ssh -N -f -R …
SSH 命令端口转发(Port Forward) 远程转发到本地端口 -L (端口转发) 命令格式: ssh -N -f -L lhost:lport:rhost:rport ruser@rhost # 访问本地127.0.0.1:8443即可访问www.google.com:443 ssh -N -f -L [lhost:]8443:www.google.com:443 root@1.1.1.1 本地转发到远程端口 -R (内网穿透) 命令格式: ssh -N -f -R …
vscode

1.下载安装vscode 巨硬爸爸开源的全平台IED工匠,本身只是一个简单的文本编辑查看代码的工具,由于众多开发者贡献的免费插件,已经成为一个很有影响力的一个IDE开发工具,墙裂建议你们试试使用vscode进行远程开发,比pycharm的远程开发好用10000000倍。 https://code.visualstudio.com/ 2.安装remote development插件 3.配置远程服务器 4.添加服务器 5.连接输入密码 6.可选配置免密码登陆 macos/linux 机器 设置 …
1.下载安装vscode 巨硬爸爸开源的全平台IED工匠,本身只是一个简单的文本编辑查看代码的工具,由于众多开发者贡献的免费插件,已经成为一个很有影响力的一个IDE开发工具,墙裂建议你们试试使用vscode进行远程开发,比pycharm的远程开发好用10000000倍。 https://code.visualstudio.com/ 2.安装remote development插件 3.配置远程服务器 4.添加服务器 5.连接输入密码 6.可选配置免密码登陆 macos/linux 机器 设置 …
code server

云端vscode 云端vscode的概念就是在浏览器中有和本地一样体验的vscode环境。在以下这个网站中,官方已经有实现在浏览器中的实现。 installation https://github.com/coder/code-server/releases ## https://github.com/coder/code-server/releases curl -fOL sudo dpkg -i code-server_4.3.0_amd64.deb sudo systemctl …
云端vscode 云端vscode的概念就是在浏览器中有和本地一样体验的vscode环境。在以下这个网站中,官方已经有实现在浏览器中的实现。 installation https://github.com/coder/code-server/releases ## https://github.com/coder/code-server/releases curl -fOL sudo dpkg -i code-server_4.3.0_amd64.deb sudo systemctl …
jupyter notebook

(base) andrew@imac:~#jupyter notebook password Enter password: Verify password: [NotebookPasswordApp] Wrote hashed password to /Users/andrew/.jupyter/jupyter_notebook_config.json (base) andrew@imac:~#jupyter notebook --generate-config Writing …
(base) andrew@imac:~#jupyter notebook password Enter password: Verify password: [NotebookPasswordApp] Wrote hashed password to /Users/andrew/.jupyter/jupyter_notebook_config.json (base) andrew@imac:~#jupyter notebook --generate-config Writing …
黑苹果

配置 intel 10600k microstar Z490 unify itx主板 阿斯加特 32G DDR4 1TB 阿斯加特 ssd 500G 西数SN750 ssd GPU 5700XT 机箱 乔思伯V8 电源 全汉ms600w sfx小电源 成品 (base) andrew@255imac:~#neofetch 'c. andrew@imac ,xNMM. ----------- .OMMMMo OS: macOS 13.5 22G5038d x86_64 OMMM0, Host: …
配置 intel 10600k microstar Z490 unify itx主板 阿斯加特 32G DDR4 1TB 阿斯加特 ssd 500G 西数SN750 ssd GPU 5700XT 机箱 乔思伯V8 电源 全汉ms600w sfx小电源 成品 (base) andrew@255imac:~#neofetch 'c. andrew@imac ,xNMM. ----------- .OMMMMo OS: macOS 13.5 22G5038d x86_64 OMMM0, Host: …