最新发布第2页
排序
N30※chatgpt 中文调教
1> 充当英语翻译和改进者 我希望你能担任英语翻译、拼写校对和修辞改进的角色。我会用任何语言和你交流,你会识别语言,将其翻译并用更为优美和精炼的英语回答我。请将我简单的词汇和句子替换成...
L12※通过bind自建doh服务
1> 安装bind ① 安装软件 apt-get install bind9 bind9utils dnsutils ② 编辑主配置文件 # vi /etc/bind/named.conf.options options { directory '/var/cache/bind'; // If there is a fir...
L20※Linux安装和配置frp服务
1> 安装和配置frps ① 下载软件 cd /usr/local # 官方下载地址:https://github.com/fatedier/frp/releases wget https://github.com/fatedier/frp/releases/download/v0.37.1/frp_0.37.1_lin...
L16※ubuntu安装并配置samba
1> 安装samba sudo apt install samba samba-common 2> 创建共享目录并更改权限 mkdir -R /home/smb chmod -R 0777 /home/smb 3> 禁用selinux setenforce 0 4> 修改配置文件 vi /et...
N14※解决网站上的人机验证(RECAPTCHA)无法显示
1> chrome 浏览器安装插件 HeaderEditor下载 2> 配置插件 单击上一张图中的详情 下载规则内输入 https://azurezeng.github.io/static/HE-GoogleRedirect.json,并单击下载的图标 如...
L34※ RockyLinux挂载未分配的硬盘空间
1> 应用场合 初始硬盘为:3.5G 扩容后硬盘:50G 将扩容的空间增加到文件系统/dev/mapper/rocky-root中 2> 确认硬盘空间 df -h # 查看文件系统的硬盘使用 fdisk -l # 查看硬盘数量和分区情况 par...
L30※甲骨文云开启root登录
echo root:密码 | sudo chpasswd root sudo sed -i 's/^#?PermitRootLogin./PermitRootLogin yes/g' /etc/ssh/sshd_config sudo sed -i 's/^#?PasswordAuthentication./PasswordAuthentication ...
N06※群辉开启MariaDB远程登录权限
1> ssh登录到群辉 sudo -i # 输入管理员密码 2> 切换到MariaDB安装目录 cd /volume1/@appstore/MariaDB10/usr/local/mariadb10/bin # 输入数据库密码 3> sql 操作 use mysql; update u...
N20※申请Office365-E5开发版
1> 登录微软账号并加入开发人员计划 https://developer.microsoft.com/zh-cn/microsoft-365/dev-program 2> 申请账号 3> 配置沙盒 如何后续想自定义域名可以选择可配置沙盒 选择选择国...
L36※docker ubuntu 设置ssh开机启动
正常在 linux 操作系统内设置服务自启动的方法一般都是使用 systemctl,但是 Docker 容器没有 systemctl 权限,这里使用脚本设置开机启动 1> 编写启动脚本 vim /root/start_ssh.sh LOGTIME=$(da...