02 2012 档案

ubuntu11.10 samba服务器配置
摘要:安装samba可以实现linux下文件和window共享,这样window下就可以操作linux的文件了。 1、关闭LINUX防火墙 sudo ufw disable 注:ufw是linux下的防火墙操作命令,相关的操作可以查看命令帮助 2、先卸载samba-common sudo apt-get remove samba-common 3、安装samba服务器 sudo apt-get install samba sudo vi /etc/samba/smb.conf 在文件末尾增加如下内容[Share]comment = Shared Folder with userna... 阅读全文

posted @ 2012-02-27 16:47 千兵卫博士 阅读(719) 评论(0) 推荐(0)

errno定义
摘要:Linux 的errno定义,头文件#include <errno.h> 124 EMEDIUMTYPE Wrong medium type 123 ENOMEDIUM No medium found 122 EDQUOT Disk quota exceeded 121 EREMOTEIO Remote I/O error 120 EISNAM Is a named type file 119 ENAVAIL No XENIX semaphores available 118 ENOTNAM Not a XENIX named type file 117 EUCLEAN S... 阅读全文

posted @ 2012-02-15 16:48 千兵卫博士 阅读(874) 评论(0) 推荐(1)

uboot makefile 之make
摘要:uboot根目录下makefileVERSION = 2010 PATCHLEVEL = 03 SUBLEVEL = EXTRAVERSION = ifneq "$(SUBLEVEL)" "" U_BOOT_VERSION = $(VERSION).$(PATCHLEVEL).$(SUBLEVEL)$(EXTRAVERSION) else U_BOOT_VERSION = $(VERSION).$(PATCHLEVEL)$(EXTRAVERSION) endif TIMESTAMP_FILE = $(obj)include/timestamp_autog 阅读全文

posted @ 2012-02-14 16:26 千兵卫博士 阅读(1290) 评论(0) 推荐(0)

uboot makefile分析之 make xx_config
摘要:makemini2440_config 分析:Uboot第一步--make xxx_config。 mini2440_config: unconfig @$(MKCONFIG) $(@:_config=) arm arm920t mini2440 tekkamanninja s3c24x0 unconfig的定义--unconfig: @rm -f $(obj)include/config.h $(obj)include/config.mk \ $(obj)board/*/config.tmp $(obj)board/*/*/config.tmp \ ... 阅读全文

posted @ 2012-02-14 16:19 千兵卫博士 阅读(2988) 评论(0) 推荐(0)

ubuntu nfs配置 以及mount.nfs:access denied by server while mounting问题解决
摘要:1.安装nfs服务,$ apt-get install nfs-commonnfs-kernel-server 2.配置参数:$ gedit /etc/exports ,内容如下: # /etc/exports: the access control list for filesystems which may be exported # to NFS clients. See exports(5). # # Example for NFSv2 and NFSv3: # /srv/homes hostname1(rw,sync,no_subtree_check) hostname2(ro,.. 阅读全文

posted @ 2012-02-03 17:42 千兵卫博士 阅读(10137) 评论(0) 推荐(0)

导航