首页
关于
壁纸
直播
留言
友链
统计
Search
1
《三国志英杰传》攻略
6,136 阅读
2
Emby客户端IOS破解
6,001 阅读
3
白嫖Emby
5,983 阅读
4
《吞食天地1》金手指代码
5,313 阅读
5
破解emby-server
4,258 阅读
moonjerx
game
age-of-empires
zx3
san-guo-zhi
尼尔:机械纪元
net
emby
learn-video
docker
torrent
photoshop
route
minio
git
ffmpeg
im
vue
gitlab
typecho
svn
alipay
nasm
srs
mail-server
tailscale
kkfileview
aria2
webdav
synology
redis
oray
chemical
mxsite
math
π
x-ui
digital-currency
server
nginx
baota
k8s
http
cloud
linux
shell
database
vpn
esxi
rancher
domain
k3s
ewomail
os
android
windows
ios
app-store
macos
develop
java
javascript
uniapp
nodejs
hbuildx
maven
android-studio
jetbrain
jenkins
css
mybatis
php
python
hardware
hard-disk
pc
RAM
software
pt
calibre
notion
office
language
literature
philosophy
travel
登录
Search
标签搜索
ubuntu
mysql
openwrt
zerotier
springboot
centos
openvpn
jdk
吞食天地2
synology
spring
idea
windows11
吞食天地1
transmission
google-play
Japanese
xcode
群晖
kiftd
MoonjerX
累计撰写
377
篇文章
累计收到
465
条评论
首页
栏目
moonjerx
game
age-of-empires
zx3
san-guo-zhi
尼尔:机械纪元
net
emby
learn-video
docker
torrent
photoshop
route
minio
git
ffmpeg
im
vue
gitlab
typecho
svn
alipay
nasm
srs
mail-server
tailscale
kkfileview
aria2
webdav
synology
redis
oray
chemical
mxsite
math
π
x-ui
digital-currency
server
nginx
baota
k8s
http
cloud
linux
shell
database
vpn
esxi
rancher
domain
k3s
ewomail
os
android
windows
ios
app-store
macos
develop
java
javascript
uniapp
nodejs
hbuildx
maven
android-studio
jetbrain
jenkins
css
mybatis
php
python
hardware
hard-disk
pc
RAM
software
pt
calibre
notion
office
language
literature
philosophy
travel
页面
关于
壁纸
直播
留言
友链
统计
搜索到
377
篇与
moonjerx
的结果
2021-08-17
github部署gitpages静态网站踩坑
一、下载代码1.https协议下载https://github.com/{username}/{projectName}.git缺点:在 clone 或者 pull/push 的时候经常报错:fatal: unable to access 'https://github.com/{username}/{projectName}.git/': OpenSSL SSL_read: SSL_ERROR_SYSCALL, errno 10054解决办法:git config --global http.sslVerify 'false'执行该命令后马上执行 clone/pull/push 命令2.git协议下载git://github.com/{username}/{projectName}.git缺点:无法使用git协议执行 push 命令,会提示要使用https。3.ssh协议下载git@github.com:{username}/{projectName}.git需要设置publicKey二、gitpages静态网站部署publicPath 或者 base 要设置为 . ,否则部署后,js/css和图片等文件找不到路径,报错 404。路由模式选择 history 模式,但是不出意外的,history 模式下,从非首页进入站点时会提示找不到路径,报错 404 。解决办法:在打包后h5后的文件目录下,新建一个和 index.html 同级的 404.html 文件
2021年08月17日
119 阅读
0 评论
0 点赞
2021-08-13
此内容被密码保护
加密文章,请前往内页查看详情
2021年08月13日
7 阅读
0 评论
0 点赞
2021-08-13
[N1盒子] sonarr+jackett实现自动下载动漫新番(更新rss订阅补丁)
N1盒子 sonarr+jackett实现自动下载动漫新番(更新rss订阅补丁)
2021年08月13日
737 阅读
0 评论
0 点赞
2021-08-12
ssh服务未启动,22端口启用
这里使用的容器是centos7环境,基本是个比较纯净的环境,几乎什么都没装根据自己需求,先安装一些基本的(容器,默认是root用户)yum install -y net-tools接着安装openssl,openssh-serveryum install -y openssl openssh-server然后启动ssh/usr/sbin/sshd -D这里会报错[root@68e7598797d7 /]# /usr/sbin/sshd -D Could not load host key: /etc/ssh/ssh_host_rsa_key Could not load host key: /etc/ssh/ssh_host_ecdsa_key Could not load host key: /etc/ssh/ssh_host_ed25519_key需要进行下面的设置[root@68e7598797d7 /]# ssh-keygen -q -t rsa -b 2048 -f /etc/ssh/ssh_host_rsa_key -N '' [root@68e7598797d7 /]# ssh-keygen -q -t ecdsa -f /etc/ssh/ssh_host_ecdsa_key -N '' [root@68e7598797d7 /]# ssh-keygen -t dsa -f /etc/ssh/ssh_host_ed25519_key -N ''接着修改sshd_config文件配置信息,路径为 /etc/ssh/sshd_config1.将 Port 22 前面的注释去掉(开启22号端口)2.将 PermitRootLogin 的 no 改为 yes (这里是设置是否允许root用户登录,可根据自己需求决定是否开启)重新启动ssh[root@68e7598797d7 /]# /usr/sbin/sshd -D &注意,如果设置都没问题的话,命令结尾加个‘&’,自动后台运行,启动成功会返回进程号[root@68e7598797d7 /]# /usr/sbin/sshd -D & [1] 16给root添加密码添加过的可跳过此步骤[root@68e7598797d7 /]# yum install passwd [root@68e7598797d7 /]# passwd
2021年08月12日
177 阅读
0 评论
0 点赞
2021-08-12
passwd /usr/share/cracklib/pw_dict: error reading header
Linux修改密码提示passwd /usr/share/cracklib/pw_dict: error reading header/usr/share/cracklib/pw_dict: error reading header/usr/share/cracklib/pw_dict.pwd: No such file or directory这是因为cracklib-dicts函数库出问题了,先查看下版本rpm -qa | grep cracklib-dicts正常显示:cracklib-dicts-2.8.9-3.3卸载安装包并重装,如果没有结果返回,则直接安装rpm -e cracklib-dicts --nodeps重装:yum reinstall -y cracklib-dicts直接安装:yum install cracklib-dicts如果yum install安装失败,可以尝试安装rpm包rpm -ivh cracklib-dicts-2.8.9-3.3.x86_64.rpm rpm -ql cracklib-dicts检查下是否安装成功rpm -ql cracklib-dicts /usr/lib64/cracklib_dict.hwm /usr/lib64/cracklib_dict.pwd /usr/lib64/cracklib_dict.pwi /usr/sbin/mkdict /usr/sbin/packer /usr/share/cracklib /usr/share/cracklib/pw_dict.hwm /usr/share/cracklib/pw_dict.pwd /usr/share/cracklib/pw_dict.pwirpm包可以在光盘镜像Server目录中找到, 最好安装相同,否则有可能产生依赖问题,拔出萝卜带出泥....cracklib-dicts-2.9.6-5.fc26.x86_64.zipCrackLib是一个可用于类UNIX系统下的函数库, 一般来说, 通常只使用其中的一个函数.它可以用于编写和passwd有关的程序中, 其基本思想是很简单的, 就是防止用户使用过于简单, 容易被猜测出来或容易被一些工具搜索到的密码.CrackLib并不是一个可以直接运行使用的程序, 它是一个函数库, 你可以利用其中的函数写自己的程序, 或是加入其它程序中, 用来提高安全性。
2021年08月12日
354 阅读
0 评论
0 点赞
1
...
66
67
68
...
76
您的IP: