跳转到主要内容

博客

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

centos设置static ip

184 字 1 分钟

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

linux 查找trick

38 字 1 分钟

查找大文件 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

23 字 1 分钟

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

conda

420 字 2 分钟

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

161 字 1 分钟

[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

534 字 2 分钟

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反向代理

237 字 1 分钟

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

322 字 1 分钟

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

code server

158 字 1 分钟

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

jupyter notebook

249 字 1 分钟

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

pve

0 字 1 分钟

黑苹果

142 字 1 分钟

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

  • centos设置static ip

    发布于 博客 184 字 1 分钟

    Featured Image for 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

    发布于 博客 38 字 1 分钟

    Featured Image for 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

  • airtag

    发布于 博客 23 字 1 分钟

    日常

    Featured Image for airtag

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

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

  • conda

    发布于 博客 420 字 2 分钟

    Server

    Featured Image for 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

    发布于 博客 161 字 1 分钟

    Server

    Featured Image for 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

    发布于 博客 534 字 2 分钟

    Featured Image for 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反向代理

    发布于 博客 237 字 1 分钟

    Server内网穿透

    Featured Image for 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

    发布于 博客 322 字 1 分钟

    Featured Image for 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

    发布于 博客 158 字 1 分钟

    Server

    Featured Image for 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

    发布于 博客 249 字 1 分钟

    Server

    Featured Image for 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 …

  • pve

    发布于 博客 0 字 1 分钟

    Featured Image for pve

  • 黑苹果

    发布于 博客 142 字 1 分钟

    服务器折腾

    Featured Image for 黑苹果

    配置 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: …