一 检查用户是否是root权限的方式:#!/bin/bashROOT_UID=0 # Root
has $UID 0.E_WRONG_USER=65 # Not root?E_NOSUCHUSER=70SUCCESS=0if [ "$UID" -ne
"$ROOT_UID" ]...
分类:
其他好文 时间:
2014-06-10 14:59:50
阅读次数:
259
[root@VM_64_69_centos httpd]# curl
http://localhost:9001/pay301 Moved PermanentlyMoved PermanentlyThe document has
moved here.Apache/2.2.15 (CentOS) S...
分类:
其他好文 时间:
2014-06-10 13:26:18
阅读次数:
287
服务器:192.168.20.204客户端:192.168.20.2031.
在服务器配置/etc/export 添加可以共享的文件夹和允许的客户端地址/home/dir
192.168.20.203(rw,no_root_squash,async)要加上no_root_squash,async,不...
分类:
其他好文 时间:
2014-06-09 19:39:09
阅读次数:
358
1)命令: lsb_release -a[root@localhost tmp]#
lsb_release -aLSB Version:
:core-4.0-amd64:core-4.0-noarch:graphics-4.0-amd64:graphics-4.0-noarch:printin...
分类:
系统相关 时间:
2014-06-09 13:31:37
阅读次数:
526
服务器配置编辑/etc/exports,在文件中列出,要共享的目录。书写规则是:共享目录主机(参数)。并且每条规则占据一行。例如:/mnt/mp3
192.168.10.168(ro,sync, no_root_squash)上面的规则代表将/mnt/mp3目录以读写同步方式共享给主机192.168...
分类:
其他好文 时间:
2014-06-09 13:23:49
阅读次数:
378
一、编译安装cmake 2013-02-17 15:44:52|分类: linux应用
|标签:编译安装cmake |举报
|字号订阅编译安装cmake下载cmake源码包cmake-2.8.4.tar.gz,mv到/usr/local/src目录下[root@localhost
~]#cd /u....
分类:
数据库 时间:
2014-06-08 23:01:41
阅读次数:
409
参考文献:《ELF V1.2》《程序员的自我修养---链接、装载与库》第6章
可执行文件的装载与进程 第7章 动态链接《Linux GOT与PLT》开发平台:[root@tanghuimin dynamic_link]# uname -a
Linux tanghuimin 2.6.32-358.el...
分类:
其他好文 时间:
2014-06-08 21:36:40
阅读次数:
330
原题地址:https://oj.leetcode.com/problems/sqrtx/题意:Implementint
sqrt(int x).Compute and return the square root
ofx.解题思路:实现开平方函数。这里要注意的一点是返回的时一个整数。通过这一点我们可...
分类:
编程语言 时间:
2014-06-08 21:04:38
阅读次数:
329
通过ls -al命令可以查看到相应档案下的包含的文件及目录,如下;
drwx r-- r--. 1 root root ......
其中第一个字符分为如下几种情况:
1、当为【d】时为目录
2、当为【-】时为档案
3、当为【l】时为连接档(link file)
4、当为【b】时,表示为装置文件里面的可供存储的接口设备(可随机存取装置)
5、当为【c】时,表示为装置文件里面的串行端口...
分类:
其他好文 时间:
2014-06-08 05:53:13
阅读次数:
253
Description
A robot has been programmed to follow the instructions in its path. Instructions for the next direction the robot is to move are laid down in a grid. The possible instructions are
...
分类:
其他好文 时间:
2014-06-08 04:38:32
阅读次数:
386