Author Archives: Administrator

GOOGLE VPS 开通及使用 [Google Compute Engine 新手教程及使用体验]

GOOGLE VPS 开通及使用 [Google Compute Engine 新手教程及使用体验] 1https://guozeyu.com/2016/10/asia-google-compute-engine/ 1. “转到控制台” 1https://cloud.google.com/ 2. “导航菜单” – “Compute Engine” 3. “创建实例” 4. “创建” 内存:614 M 硬盘120G 地址:多伦多 硬盘 加到100G ,200G,3000G,价格都不变 [新的平衡永久性磁盘] 5-1. 点 “SSH” —— 这个卡机时可以重启 5-1-1. “不使用Identity-Aware Proxy 连接” 5-1-2. 成功连接 – “sudo su ” 升级到 root 账号 5-2. 也可以点 “激活 Cloud Shell” —这个卡机时重启不了 6. CentOS 7 […]

20 CentOS yum update 不升级内核版本方法

20 CentOS yum update 不升级内核版本方法 1https://blog.csdn.net/dylloveyou/article/details/72529653 1.查看操作系统版本 12# cat /etc/redhat-release CentOS Linux release 7.2.1511 (Core) 2.执行 yum update 进行升级 123# yum update # cat /etc/redhat-release CentOS Linux release 7.3.1611 (Core) 可以看到系统默认升级到了7.3版本 3.如果不想升级内核及系统版本,则在执行 yum update之前在 /etc/yum.conf 的 [main] 后面添加以下配置 1vi /etc/yum.conf 12exclude=kernel* exclude=centos-release* 备注: exclude=centos-release* 删掉才能update成功,否则会报错.但删掉update后内核及系统版本就会变动 这样,执行 yum update 后 12# cat /etc/redhat-release CentOS Linux release […]

19 sshd_config文件中的配置参数-中

19 sshd_config文件中的配置参数-中 123https://blog.csdn.net/linghe301/article/details/8211305 https://www.cnblogs.com/xiaogan/p/5902846.html http://www.jinbuguo.com/openssh/sshd_config.html 15-1. X11 转发 – 允许 – 默认 1X11Forwarding yes 15-2. X11 转发 – 禁止 1X11Forwarding no 16-1. 指定 sshd(8) X11 转发的第一个可用的显示区(display)数字。默认值是 10 这个可以用于防止 sshd 占用了真实的 X11 服务器显示区,从而发生混淆 1X11DisplayOffset 10 17-1. 将X11转发服务器绑定到本地loopback地址 – 是 – 默认 1X11UseLocalhost yes 17-2. 将X11转发服务器绑定到本地loopback地址 – 否 1X11UseLocalhost no 18-1. 允许TTY – 允许 – 默认 1PermitTTY […]

18 sshd_config文件中的配置参数-上

18 sshd_config文件中的配置参数-上 123https://blog.csdn.net/linghe301/article/details/8211305 https://www.cnblogs.com/xiaogan/p/5902846.html http://www.jinbuguo.com/openssh/sshd_config.html 1. 新建一个新的用户test,把它提升为root级别管理员 1-1. 创建test账号 1useradd test 1-2. 设置test账号密码 1passwd test 1-3. 提升root级别权限 找到配置文件 1vi /etc/sudoers 修改配置文件 12root ALL=(ALL) ALL test ALL=(ALL) ALL       //增加这行 2. 禁止SSH root用户的登录 2-1. 打开配置文件 1vi /etc/ssh/sshd_config 2-2. 修改配置文件——-禁止SSH root用户的登录 1PermitRootLogin no 2-3. 修改配置文件——-启动SSH root用户的登录 1PermitRootLogin yes 2-4. 修改配置文件——-只允许用户:test通SSH方式登录,别的账户都禁止 1AllowUsers test 2-5. 重启sshd生效 1systemctl […]

16 rsyncd 命令详解

16 rsyncd 命令详解 1-1. 查看是否已安装服务rsync 1rpm -qa | grep rsync 2-1. 安装 rsync 1yum install -y rsync 3-1. 查看服务状态rsyncd 1systemctl status rsyncd.service 3-2. 启动服务rsyncd 1systemctl start rsyncd.service 3-3. 关闭服务rsyncd 1systemctl stop rsyncd.service 3-4. 重启服务rsyncd 1systemctl restart rsyncd.service 3-5. 设置开机启动项服务rsyncd 1systemctl enable rsyncd.service 3-6. 取消开机启动项服务rsyncd 1systemctl disable rsyncd.service 4-1. 列出各种服务开机是否启动 1systemctl list-unit-files 4-2. 列出rsyncd服务是否开机启动 1systemctl list-unit-files […]

VNC 启动时出现如下报错:

VNC 启动时出现如下报错: 1vncserver 出现如下报错,无法启动. 12345678910111213141516Warning: localhost.localdomain:1 is taken because of /tmp/.X11-unix/X1 Remove this file if there is no X server localhost.localdomain:1 Warning: localhost.localdomain:2 is taken because of /tmp/.X11-unix/X2 Remove this file if there is no X server localhost.localdomain:2 Warning: localhost.localdomain:3 is taken because of /tmp/.X11-unix/X3 Remove this file if there is no X server localhost.localdomain:3 […]

笔记本报错”Realtek PCIe GBE Family Controller Series V2.44

笔记本报错”Realtek PCIe GBE Family Controller Series V2.44 (10/08/11)” 原因:这个网卡驱动是windows的,在CentOS系统上出问题,解决办法.BIOS里,禁用这个网卡驱动. [https://jingyan.baidu.com/article/72ee561a13da95e16138df8d.html] 1. 进入BIOS (我忘了当时是一直按ESC 还是 Del 了) 2. System Configuration – Boot Options 3. Internal Network Adapter Boot — Enabled 改成 Disabled 4. 保存并退出 (save & exit)

15 tcp_wrappers 命令详解

15 tcp_wrappers 命令详解 1-1. 查看是否已安装服务tcp_wrappers 1rpm -qa | grep tcp_wrappers 2-1. 安装 tcp_wrappers 1yum install -y tcp_wrappers 3-1. 允许行为存储位置 1vi /etc/hosts.allow 3-2. 禁止行为存储位置 1vi /etc/hosts.deny 4-1. 检测sshd是否链接至libwrap库上. 能链接上才支持tcp_wrapper.[sshd,telnetd 是支持,httpd就不支持] 1ldd `which sshd` | grep libwrap 4-2. 检测telnetd是否链接至libwrap库上. 能链接上才支持tcp_wrapper.[sshd,telnetd,vftpd 是支持,httpd就不支持] 1strings `which in.telnetd` | grep hosts 4-3. 检测vsftpd是否链接至libwrap库上. 能链接上才支持tcp_wrapper.[sshd,telnetd,vftpd 是支持,httpd就不支持] 1ldd `which vsftpd` | grep libwrap […]