Linux运维 动态域名软件GNHOST FOR LINUX 安装说明 – 金万维 安装方法: 得到金万维gnhostlinux动态域名Linux/Unix下客户端软件 wget http://res.gnway.com/download/res/gnhostlinux1.... 2021年9月29日 169 发表评论 阅读全文
Linux运维 Linux系统新手常用命令介绍 学习Linux系统其实就是学习Linux命令的过程,就像学英语就是背单词。有一些命令是非常基础的,Linux新手刚刚接触这个系统就需要掌握这些命令,小编今天就为大家收集了一下Lin... 2021年9月29日 119 发表评论 阅读全文
Linux运维 Linux系统如何设置安全管理 Linux是一款免费传播类操作系统,Linux系统进程在一定条件下可以对任何文件、数据库等进行操作。如果此进程被不法分子用作其他不法用途,将会给系统带来重大危害。作为服务器中占绝大... 2021年9月29日 120 发表评论 阅读全文
Linux运维 Linux如何安装使用GitHub Linux安装使用GitHub的步骤如下: 1. 在网站注册帐号,创建工程 test 进入工程,右下角会有一个项目仓库的地址。 2.Linux下 安装github sudo apt -get inst... 2021年9月29日 114 发表评论 阅读全文
Linux运维 CentOS服务器如何添加永久静态路由 一、Linux添加永久静态路由 方法一:修改 rc.local 配置文件 范围:测试 Ubuntu 14.04、centos 6.4、debian 8.1、redhat 6.4 系统可用 使用方法: ... 2021年9月29日 113 发表评论 阅读全文
Linux运维 Centos中如何临时禁用用户 linux中临时禁用用户 1.在/etc/passwd文件中找到禁用用户所在行,在该行首添加# /etc/passwd #coderbolg:x:500:500::/home/coderbolg:/b... 2021年9月29日 123 发表评论 阅读全文
Linux运维 CentOS下如何查看一个文件的硬链接数 方法如下: 用ls -l 可以看到有一个文档的硬链接数: # ls -li total 104 229415 drwxr-xr-x 2 root root 4096 Dec 11 21:15 etc ... 2021年9月29日 95 发表评论 阅读全文
Linux运维 CentOS6.6设置grub密码的方法 设置grub密码有三种方法: 一、设置明文密码 编辑grub配置文件#vi /etc/grub.conf 打开之后在hiddenmenu下一行输入 password=123456 保存退出,重启后进入... 2021年9月28日 112 发表评论 阅读全文
Linux运维 CentOS设置文件字符编码的方法 1、查看文件字符编码 ###using file command### # file –mime-encoding analysis.csv analysis.csv: utf-8 ###using ... 2021年9月28日 109 发表评论 阅读全文
Linux运维 Centos如何设置不同网段的互通? Centos如何设置不同网段的互通? 环境如下: 一台 192.168.16.0网段的服务器 一台192.168.1.0网段的服务器 192.168.16.0网段和192.168.1.0网段的机器无法... 2021年9月28日 117 发表评论 阅读全文
Linux运维 CentOS7如何添加本地回环地址? 1、临时添加 ip addr add 10.10.1.1/32 dev lo:1 重启失效 2、永久添加 cd /etc/sysconfig/network-scripts cp ifcfg-lo i... 2021年9月28日 105 发表评论 阅读全文
Linux运维 Linux文件权限如何备份及恢复? 你可能听说或碰到过这样的事情:一个系统管理员菜鸟不小心输入"chmod -R 777 /"从而导致了巨大的悲剧,使得整个系统遭到了严重的破坏。在日常管理中,我们有许多工具可以用来备... 2021年9月28日 118 发表评论 阅读全文
Linux运维 Linux中遇到device is busy报错怎么办? 在Linux管理umount设备时,时常会遇到"device is busy", 如果umount一个文件系统碰到这种情况,并且你并没有在所需卸载的目录下。那么很可能有用户或进程正在使用那个目录。 #... 2021年9月28日 114 发表评论 阅读全文
Linux运维 linux怎么看内存大小 关于linux怎么看内存大小的问题解答? 用free -m查看的结果: # free -m total used free shared buffers cached Mem: 504 471 32 ... 2021年9月28日 129 发表评论 阅读全文
Linux运维 linux安装redis 完整步骤 1.获取redis资源 wget http://download.redis.io/releases/redis-4.0.8.tar.gz 2.解压 tar ... 2021年9月28日 112 发表评论 阅读全文
Linux运维 Linux Redis清理缓存 1.先确保redis进程存活 ps -ef|grep redis 2.执行./redis-cli或者./redis-cli -h 127.0.0.1 -p ... 2021年9月28日 136 发表评论 阅读全文