在线笔记
全部博文(596)
发布时间:2013-08-01 09:26:17
CPPFLAGS is supposed to be for flags for the C PreProcessor; CXXFLAGS is for flags for the C++ compiler.The default rules in make (on my machine, at any rate) pass CPPFLAGS to just about everything,CFLAGS is only passed when compiling and linking C, and&.........【阅读全文】
发布时间:2013-07-22 22:21:39
$ls /dev/sd*$ fdisk /dev/sdb n 新建 p ... w 写入$mkfs.ext4 /dev/sdb1$vi /etc/fstab/dev/sdb1 /work ext4 rw 0 0$reboot......【阅读全文】
发布时间:2013-04-10 09:52:45
#!/bin/shpushd,popd不能用ubuntu 9.10中,/bin/sh ->bin/dash那么怎么把sh改为指向bash呢?最暴力的方法当然是直接把/bin/sh的软链接改到bash中,如:ln -s /bin/bash /bin/sh但是,有优雅一些的方法,sudo dpkg-reconfigure dashhttp://learn.akae.cn/media/ch31s01.htmlShell的作用是解释执行用户的命令.........【阅读全文】
发布时间:2013-04-10 09:08:27
http://blog.csdn.net/wuxinyicomeon/article/details/6292132网络文件服务器(Network File System,简称NFS),是分布式计算系统的一个组成部分,可实现在异种网络上共享和装配远程文件系统。NFS由Sun公司开发,目前已经成为文件服务的一种标准(RFC1904,RFC1813)。其最大的功能就是可以通过网络,让不同操作系统的.........【阅读全文】
发布时间:2013-04-04 11:23:05
http://www.sealinger.com/archives/406/linux系统内存实际使用率图中的例子很典型,就是:多数的linux系统在free命令后会发现free(剩余)的内存很少,而自己又没有开过多的程序或服务。对于上述的情况,正确的解释是:linux的内存管理机制与windows的有所不同。具体的机制我们无需知道,我们需要知道.........【阅读全文】