跳转到内容

ZczBlog

  • 首页
  • 前端
    • HTML
    • CSS
    • JavaScript
    • jQuery
  • Linux系统
    • Linux
    • Ubuntu/debian
  • 数据库
    • MySQL
    • NoSQL
  • PHP
  • 其他

Ubuntu/debian类别订阅

debain查看系统内核版本

1
2
3
screenfetch
或者
uname -a

 

  • 发表于: 2022年7月5日 2022年7月6日
  • 作者: 张 存志
  • 分类: Linux系统, Ubuntu/debian

密码保护:debian升级openssh

无法提供摘要。这是一篇受保护的文章。

  • 发表于: 2022年6月13日 2022年6月13日
  • 作者: 张 存志
  • 分类: Linux系统, Ubuntu/debian

查看openssl版本信息

1
openssl version

或者 [crayon-684da3… 继续阅读 查看openssl版本信息

  • 发表于: 2022年6月13日 2022年6月13日
  • 作者: 张 存志
  • 分类: Linux系统, Ubuntu/debian

debain查看系统版本

1
cat /etc/issue

查看系统的大版本 [crayon-… 继续阅读 debain查看系统版本

  • 发表于: 2022年6月13日 2022年7月6日
  • 作者: 张 存志
  • 分类: Linux系统, Ubuntu/debian

debian升级openssl

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// 下载需要更新的openssl版本
wget https://www.openssl.org/source/openssl-1.1.1o.tar.gz
tar -zxvf openssl-1.1.1i.tar.gz
cd openssl-1.1.1i
./config --prefix=/usr/local/openssl
./config -t
make && make install
mv /usr/bin/openssl /usr/bin/openssl.old
mv /usr/include/openssl/ /usr/include/openssl.old
mv /usr/lib64/openssl /usr/lib64/openssl.old
mv /usr/lib64/libssl.so /usr/lib64/libssl.so.old
mv /usr/lib/x86_64-linux-gnu/libcrypto.so.1.1 /usr/lib/x86_64-linux-gnu/libcrypto.so.1.1.old
cp /usr/local/openssl/lib/libcrypto.so.1.1 /usr/lib/x86_64-linux-gnu/libcrypto.so.1.1
ln -s /usr/local/openssl/bin/openssl /usr/bin/openssl
ln -s /usr/local/openssl/include/openssl /usr/include/openssl
ln -s /usr/local/openssl/lib/libssl.so /usr/lib64/libssl.so
echo "/usr/local/openssl/lib" >> /etc/ld.so.conf
ldconfig -v
openssl version -a

 

  • 发表于: 2022年6月13日 2022年6月13日
  • 作者: 张 存志
  • 分类: Linux系统, Ubuntu/debian

debian开启Apache2访问日志和报错日志

修改 000-default.conf   配置文件    在配置文件中添加两行 vim /etc/… 继续阅读 debian开启Apache2访问日志和报错日志

  • 发表于: 2022年1月14日 2022年1月14日
  • 作者: 张 存志
  • 分类: Linux系统, Ubuntu/debian

debian设置MySQL root免密登录和修改root密码

一、修改/etc/mysql/my.cnf配置文件    如果安装了 MariaDB   配置文件在… 继续阅读 debian设置MySQL root免密登录和修改root密码

  • 发表于: 2022年1月11日 2022年9月26日
  • 作者: 张 存志
  • 分类: MySQL, Ubuntu/debian, 数据库

debian 修改账号的密码

1
2
3
4
// 修改当前用户的密码
passwd
// 修改指定用户的密码
passwd 指定用户名

 

  • 发表于: 2021年12月3日 2021年12月3日
  • 作者: 张 存志
  • 分类: Linux系统, Ubuntu/debian

debian 添加开机启动命令

debian默认没有这个文件,并且服务是关闭的 创建/etc/rc.local,并写入内容 [cra… 继续阅读 debian 添加开机启动命令

  • 发表于: 2021年9月27日 2021年9月27日
  • 作者: 张 存志
  • 分类: Linux系统, Ubuntu/debian

debian10开启查看crontab日志

(1)查看crontab执行情况:

1
tail -f /var/log/cron.log

… 继续阅读 debian10开启查看crontab日志

  • 发表于: 2021年8月26日 2021年8月26日
  • 作者: 张 存志
  • 分类: Linux, Linux系统, Ubuntu/debian

分页

上一页 页码: 1 页码: 2 页码: 3 页码: 4 页码: 5 页码: 6 下一页

© 2025  ZczBlog.                        豫ICP备18029062号