发布时间:2013-11-05 12:02:44
测试程序[root@portal01 ~]# cat test.c #include <stdio.h>#include <malloc.h>#include <stdlib.h>#include <string.h>#include <unistd.h>int main (){char *p = NULL;int count = 1;while(1){p = (char *)malloc(1024*1024*10);if(!p){printf("malloc error!\n");return -1; &nb.........【阅读全文】
发布时间:2013-10-31 16:19:22
最近在网上看到一些Linux系统管理员的题目,于是整理了一下,未完待续。1、Linux挂载Winodws共享文件夹windows IP 192.168.1.200windows用户administrator 密码P@ssw0rd将C下的share设置成共享在linux下用root执行:mount -t cifs -o username=administrator,password=P@ssw0rd //192.168.1.200/share /mntcd /mn.........【阅读全文】
发布时间:2013-10-30 10:15:03
脚本如下#!/bin/bashfor u in `awk -F: '{print $1}' /etc/passwd`; do if [[ -d "/home/$u" ]]; then if [[ -r "/home/$u/.bash_history" ]]; then cat /home/$u/.bash_history > /tmp/$u.txtt fi&.........【阅读全文】
发布时间:2013-10-28 11:42:16
在实际应用中硬链接和软链接)很难区分,但它们的确是有区别的:硬链接,只能应用于文件,而不能应用于目录,而且不能跨文件系统(即分区);软链接可以应用于文件,而且可以应用于目录和可跨文件系统(分区);这是它们在应用上的区别; 底层的区别:.........【阅读全文】