f270239c1234b197e7630fd5c7552190efe81186a2e95741630e20d1f0fca56d447d01088d0478ff7582f71575d468c447dc1a2db28dee4055e9fc2d022f659aba1123ad291019c0a1a01b7d5da3a6b10e424fae5b714e99f676b4386ef1c9b8408c1a8540af3a0a25340803fe89388743da1cb4265e7e7957acd556e18161d7c41e850f4a30912c9b9ce31b2205890d351f71a7bf7a2cb0be59d8d3b5b4aa625edf5e6a3bab2afa434cff90b34b30acb088af70a374d2e69df58588c47c40cf558ed578afe2cc2631a813dbe19c375988f27ecd8be8e712b0805084632c9b3e52c40abf8186e85b955a901922a1ad066f1f5d5cdba9fabc6 ...
.video-container {
position: relative;
width: 100%;
padding-top: 56.25%; /* 16:9 aspect ratio (height/width = 9/16 * 100%) */
}
.video-container iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
1. 通过浏览器,点击ssh连接2. 切换root1sudo -i
3. 设置PasswordAuthentication为yes去掉前面的#号(如果有的话)
1vim /etc/ssh/sshd_config
修改以下内容:
12PasswordAuthentication yesChallengeResponseAuthentication yes # 部分机器需要配置为yes
4. 重启ssh服务1sudo systemctl restart ssh
5 ...
.video-container {
position: relative;
width: 100%;
padding-top: 56.25%; /* 16:9 aspect ratio (height/width = 9/16 * 100%) */
}
.video-container iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
查看任务管理器cron的使用方法1. 查看任务管理器cron有没有启动:1/etc/init.d/cron status
输出内容一般看到 running 字样,说明正在运行。
2. 编辑任务管理器配置表1crontab -e
crontab的文件格式1234567分 时 日 月 星期 要运行的命令第1列 分钟 0~59第2列 小时 0~23(0表示子夜)第3列 日 1~31第4列 月 1~12第5列 星期 0~7(0和7表示星期天)第6列 要运行的命令
3. 查看 ...




