随笔分类 -  linux

上一页 1 ··· 13 14 15 16 17
摘要:说明: 1、备份目录/home/osyunwei下面所有的文件到/home/osyunweibak里面,并且保存为osyunwei20120701.tar.gz的压缩文件格式(2012_07_01是指备份执行时当天的日期),最后只保留最近7天的备份 2、上传/home/osyunweibak里面的备 阅读全文
posted @ 2016-07-01 21:26 lclc 阅读(723) 评论(0) 推荐(0) 编辑
摘要:chkconfig命令主要用来更新(启动或停止)和查询系统服务的运行级信息。谨记chkconfig不是立即自动禁止或激活一个服务,它只是简单的改变了符号连接。 使用语法:chkconfig [--add][--del][--list][系统服务] 或 chkconfig [--level <等级代号 阅读全文
posted @ 2016-07-01 10:53 lclc 阅读(188) 评论(0) 推荐(0) 编辑
摘要:在系统维护的过程中,随时可能有需要查看 CPU 使用率,并根据相应信息分析系统状况的需要。在 CentOS 中,可以通过 top 命令来查看 CPU 使用状况。运行 top 命令后,CPU 使用状态会以全屏的方式显示,并且会处在对话的模式 -- 用基于 top 的命令,可以控制显示方式等等。退出 t 阅读全文
posted @ 2016-06-30 17:53 lclc 阅读(884) 评论(0) 推荐(0) 编辑
摘要:查看SELinux状态: 1、/usr/sbin/sestatus -v ##如果SELinux status参数为enabled即为开启状态 SELinux status: enabled 2、getenforce ##也可以用这个命令检查 关闭SELinux: 1、临时关闭(不用重启机器): s 阅读全文
posted @ 2016-06-28 16:31 lclc 阅读(176) 评论(0) 推荐(0) 编辑
摘要:通过本教程操作,请确认您能使用linux本机。如果您使用的是ssh远程,而又不能直接操作本机,那么建议您慎重,慎重,再慎重!通 过iptables我们可以为我们的Linux服务器配置有动态的防火墙,能够指定并记住为发送或接收信息包所建立的连接的状态,是一套用来设置、维护和 检查Linux内核的IP包 阅读全文
posted @ 2016-06-28 16:30 lclc 阅读(1070) 评论(0) 推荐(0) 编辑
摘要:IBM X System ServerGuide 8.41 支持操作系统: 32位: Microsoft Windows 2003/2003 R2 (Enterprise, Standard, Web and DataCenter UV) Microsoft Small Business Serve 阅读全文
posted @ 2016-06-28 11:40 lclc 阅读(17268) 评论(0) 推荐(0) 编辑
摘要:在应用Unix/Linux时,我们一般想让某个程序在后台运行,于是我们将常会 用 & 在程序结尾来让程序自动运行。比如我们要运行mysql在后台: /usr/local/mysql/bin/mysqld_safe –user=mysql &。可是有很多程序并不想mysqld一样,这样我们就需要noh 阅读全文
posted @ 2016-06-21 20:46 lclc 阅读(5279) 评论(0) 推荐(0) 编辑
摘要:举例: 开放10000端口的解决步骤如下: 1、修改/etc/sysconfig/iptables文件,增加如下一行: -A RH-Firewall-1-INPUT -m state --state NEW -m tcp -p tcp --dport 10000 -j ACCEPT 重启 iptab 阅读全文
posted @ 2016-06-07 12:23 lclc 阅读(296) 评论(0) 推荐(0) 编辑
摘要:。 二。查看linux版本: 1) 登录到服务器执行 lsb_release -a ,即可列出所有版本信息,例如: [root@SOR_SYS ~]# lsb_release -a LSB Version: :core-4.0-amd64:core-4.0-ia32:core-4.0-noarch: 阅读全文
posted @ 2016-05-26 20:07 lclc 阅读(2539) 评论(0) 推荐(0) 编辑
摘要:系统 # uname -a # 查看内核/操作系统/CPU信息 # head -n 1 /etc/issue # 查看操作系统版本 # cat /proc/cpuinfo # 查看CPU信息 # hostname # 查看计算机名 # lspci -tv # 列出所有PCI设备 # lsusb -t 阅读全文
posted @ 2016-05-26 16:04 lclc 阅读(300) 评论(0) 推荐(0) 编辑
摘要:Red Hat Enterprise Linux Release Dates UpdatedMay 10 2016 at 10:57 PM - English The tables below list the major and minor Red Hat Enterprise Linux upd 阅读全文
posted @ 2016-05-25 16:30 lclc 阅读(209) 评论(0) 推荐(0) 编辑
摘要:Red Hat Enterprise Linux 各个版本以及发布日期 Red Hat Enterprise Linux 7 Release/Update General Availability Date redhat-release Errata Date* Kernel Version RHE 阅读全文
posted @ 2016-05-25 16:29 lclc 阅读(4212) 评论(0) 推荐(0) 编辑
摘要:dell PowerEdge R720 自动重启分析 dell PowerEdge R720 自动重启分析 摘要: 一,问题描述: 在同一批服务器当中,碰到这样一台服务器,如果不跑任何服务时没有问题,但一跑任务就是自动重启。既然同样的系统别的服务器都没出现这种问题,此时通过快速服务代码找dell售后 阅读全文
posted @ 2016-05-25 15:17 lclc 阅读(4878) 评论(0) 推荐(0) 编辑
摘要:Linux下面如何运行.sh文件 Linux下面如何运行.sh文件 本文介绍Linux下面用命令如何运行.sh文件的方法,有两种方法: 一、直接./加上文件名.sh,如运行hello.sh为./hello.sh【hello.sh必须有x权限】 二、直接sh 加上文件名.sh,如运行hello.sh为 阅读全文
posted @ 2016-03-29 18:50 lclc 阅读(15558) 评论(0) 推荐(0) 编辑
摘要:查看 SELinux状态及关闭SELinux 2012-08-07 16:23:23 查看SELinux状态: 1、/usr/sbin/sestatus -v ##如果SELinux status参数为enabled即为开启状态 SELinux status: enabled 2、getenforc 阅读全文
posted @ 2016-03-18 14:42 lclc 阅读(208) 评论(0) 推荐(0) 编辑
摘要:打开配置文件 [root@localhost ~]# vi /etc/sysconfig/iptables 正确的配置文件 # Firewall configuration written by system-config-firewall # Manual customization of thi 阅读全文
posted @ 2016-03-17 20:20 lclc 阅读(1931) 评论(0) 推荐(0) 编辑
摘要:2013-09-11 22:10 by 潇湘隐者, 18968 阅读, 0 评论, 收藏, 编辑 VNC概述 VNC (Virtual Network Computing)是虚拟网络计算机的缩写。VNC 是一款优秀的远程控制工具软件,由著名的 AT&T 的欧洲研究实验室开发的。VNC 是在基于 UN 阅读全文
posted @ 2016-03-17 20:11 lclc 阅读(491) 评论(0) 推荐(0) 编辑

上一页 1 ··· 13 14 15 16 17
点击右上角即可分享
微信分享提示