51CTO博客开发
NFS server 配置 OS ubuntu9.10 1安装 nfs server sudo apt-get install nfs-kernel-server nfs-common portmap2 配置 sudo dpkg-reconfigure portmap (是否需要edit /etc/default/portmap) 3 sudo /etc/ini
Mailing the crontab output By default cron saves the output in the user's mailbox (root in this case) on the local system. But you can also configure crontab to forward all output to a real email a
Neat scheduling tricks What if you'd want to run something every 10 minutes? Well you could do this: 0,10,20,30,40,50 * * * * /bin/execute/this/script.sh But crontab allows you to do this as well:
Schedule tasks on Linux using crontab
1 创建module#include <linux/init.h>#include <linux/module.h>MODULE_LICENSE("Dual BSD/GPL");static int hello_init(void){printk(KERN_ALERT "Hello, world\n");return 0;}static void hello_exit(vo
安装虚拟机遇到的问题问题kinit: name_to_dev_t(/dev/disk/by-uuid/bd656dcd-04b4-412f-a880-62a6553bd8b) = sda5(8,5) kinit: trying to resume from /dev/disk/by-uuid/bd656dcd-04b4-412f-a880-62a6553bd8b kinit: No resum
ubuntu 9.04 创建内核树1 uname -r 得到内核版本2 apt-cache search linux-source 查找内核src3 apt-get install linux-source-2.6.28 下载安装 src 下载目录为/usr/src 得到 linux-source-2.6.28.tar.bz2解压 tar jxvf linux-source
1 开头程序必须以下面的行开始(必须方在文件的第一行):#!/bin/sh符号#!用来告诉系统它后面的参数是用来执行该文件的程序。在这个例子中我们使用/bin/sh来执行程序。当编写脚本完成时,如果要执行该脚本,还必须使其可执行。要使编写脚本可执行:编译 chmod +x filename 这样才能用./filename 来运行 2 注释在进行shell编程时,以#开头的句子表示注释
1识别 processesa.struct task_structb.pid max value 32767 (PID_MAX_DEFAULT -1) /proc/sys/kernel/pid_max &nb
Linux系统中在应用程序运行过程中经常会遇到程序突然崩溃,提示:Segmentation fault,这是因为应用程序收到了SIGSEGV信号。这个信号提示当进程发生了无效的存储访问,当接收到这个信号时,缺省动作是:终止w/core。 终止w/core的含义是:在进程当前目录生成core文件,并将进程的内存映象复制到core文件中,core文件的默认名称就是“core”(这是Unix
curl command 名称 curl -transfer a URL 语法 curl [options] [URL...] 描述 curl 用于上传或是下载文件, 文档。 支持协议:HTTP, HTTPS, FTP, GOPHER
先介绍一下虚函数 虚函数的作用是实现动态联编,也就是在程序的运行阶段动态地选择合适的成员函数,在定义了虚函数后,可以在基类的派生类中对虚函数重新定义,在派生类中重新定义的函数应与虚函数具有相同的形参个数和形参类型。以实现统一的接口,不同定义过程。如果在派生类中没有对虚函数重新定义,则它继承其基类的虚函数。 析构函数呢 在类的对象脱离作用域是,自动执行的函数。主要做些清理工作。
派生类执行自己的构造函数前,会自动执行父类的构造函数。 派生类执行完自己的析构函数后,会自动执行父类的析构函数。
linux 最常用的查看进程命令就是[top] 和[ps] top 与ps的主要区别就是 top 是 ongoing (时时)的; ps 是 report. top command 能够得到 cpu 的使用率 内存的使用率 swap 的使用率 系统已运行的时间等。。。 主要是可以看到各个进程的状态。 如果只是单独查看内存的使用率 swap 的使
如何查看linux 版本 1 uname -aLinux localhost 2.6.18-128.el5 #1 SMP Wed Jan 21 10:44:23 EST 2009 i686 i686 i386 GNU/Linux 2 more /proc/versionLinux version 2.6.18-128.el5 (mockbuild@builde
最近不知怎的总是和正则表达式过不去。。。学习perl..又开始使用sed. 虽然sed 很出名,但是一直还是没有很熟练的掌握。这里我小节sed 的替换功能... s : 替换功能 [root@localhost test]# echo abc | sed 's/abc/sed/'sed 关于目录的替换,还有其他方式。个人认为这个好看一点[root@localh
Copyright © 2005-2025 51CTO.COM 版权所有 京ICP证060544号