题记:最近在做自动下载build的脚本,脚本已经测试完成了,要让脚本在固定时间run,需要使用linux的定时任务,一下是从网上摘录和整理的有关linux的资料 可以参考IBM的developerworks上的文章http://www.ibm.com/developerworks/cn/linux/l-job-scheduling.h...
1.# vi /etc/sysconfig/network NETWORKING=yes HOSTNAME=yourname //在这修改hostname NISDOMAIN=eng-cn.platform.com 2.修改/etc/hosts里面的名字 # vi /etc/hosts 127.0.0.1 localhost.localdomain localhost 172.17.33.169 yourname //在这修改hostname...
Get and display the file size and the directory size using du command. The du command ( disk usage ) gather and summarize about how much your disk space being used by your file and the disk space being use by directory in the Linux system...
linux一般使用du命令显示文件或者目录的大小 DU(1) User Commands DU(1) NAME du - estimate file space usage SYNOPSIS du [OPTION]... [FILE]... du [OPTION]... --files0-from=F DESCRIPTION Summarize disk usage of each FILE, recursively for directo...
安装.src.rpm 有些软件包是以.src.rpm结尾的,这类软件包是包含了源代码的rpm包,在安装时需要进行编译。这类软件包有两种安装方法: 方法一: 1. 执行rpm -i your-package.src.rpm 2. cd /usr/src/redhat/SPECS 3. rpmbuild -bp your-package.specs 一个和...
如何配置scp文件传输 实现scp在linux或unix之间传输文件,首先需要配置好scp,默认scp要使用密码的,通过以下配置可以不用输入密码,就完成linux或unix之间的文件传输 假设有2台linux, A server, B server(ip假设为xxxx8),需要将文件(包括目录)从A传输...
1、首先安装gcc环境 ftp://ftp.software.ibm.com/aix/freeSoftware/aixtoolbox/RPMS/ppc/gcc/ 下载gcc相关包 gcc-4.2.0-3.aix6.1.ppc.rpm, gcc-cplusplus-4.2.0-3.aix6.1.ppc.rpm, libgcc-4.2.0-3.aix6.1.ppc.rpm, libstdcplusplus-4.2.0-3.aix6.1.ppc.rp...
在linux和unix上有时不知道该使用LD_LIBRARY_PATH还是LIBPATH,经过搜索和实际使用,实际的情况如下 OS Environment Variable Name Linux LD_LIBRARY_PATH Solaris 32-bit ruby LD_LIBRARY_PATH_32 or LD_LIBRARY_PATH Solaris 64-bit ruby LD_LIBRARY_PATH_...
以前一直以为只要知道root用户的密码,以任何用户登录时都可以以root执行命令,今天才发现不是这样的。首先系统需要安装sudo-1.7.2p2-9.el6.i686这样的软件,这样才有sudo命令,其次,要配置/etc/sudoers,设置那些用户可以使用sudo,使用sudo时可以以什么用...