02 2015 档案

摘要:mainline 、longterm、stable、linux-next、snapshot这些名词,都是linux kernel source的标记名称,可以理解为代号。 mainline mainline指由Linus Torvalds亲自制作的内核发布版,是官方当前最新版本的kernel source。在Torvalds对所有其他程序员所做出的重大变化进行整合,并且对先前版本的bug进行... 阅读全文
posted @ 2015-02-28 10:49 心哲 阅读(9160) 评论(0) 推荐(0)
摘要:From Wikipedia: Orion is a system-on-a-chip manufactured by Marvell Technology Group and used in network-attached storage. Based on the ARM architecture, it has on-chip support for Ethernet, SATA ... 阅读全文
posted @ 2015-02-28 10:32 心哲 阅读(301) 评论(0) 推荐(0)
摘要:NAME mount - 挂载文件系统 SYNOPSIS 总览 mount [-lhV] mount -a [-fFnrsvw] [-t vfstype] [-O optlist] mount [-fnrsvw] [-o options [,...]] device | dir mount [-fnrsvw] [-t vfstype] [-o options] device dir DE... 阅读全文
posted @ 2015-02-27 17:10 心哲 阅读(4085) 评论(0) 推荐(1)
摘要:First ,Symlinks and bind mounts are a whole different ballgame. ln -s you create a symbolic link,which is an inode pointing to a certain filesystem object. If you mount a filesystem with --bind, you... 阅读全文
posted @ 2015-02-27 16:42 心哲 阅读(1201) 评论(0) 推荐(0)
摘要:Lots of Unixes have some form of 'loopback' mounts, where you can mount a bit of an existing filesystem somewhere else; they're called loopback mounts by analogy with the loopback interface. The gen... 阅读全文
posted @ 2015-02-27 16:06 心哲 阅读(263) 评论(0) 推荐(0)
摘要:When you use the bind option of the mount command, you must be sure that the file systems are mounted in the correct order. In the following example, the /var/log directory must be mounted before... 阅读全文
posted @ 2015-02-26 21:15 心哲 阅读(351) 评论(0) 推荐(0)
摘要:对于以压缩包发布的软件,在它的目录下通常都有一个配置脚本configure,它的作用确定编译参数(比如头文件位置、连接库位置等),然后生成Makefile以编译程序。可以进入该软件的目录,执行"./configure --help"命令查看使用帮。 一个程序能正确编译、链接、运行需要满足3个条件:预处理时能找到头文件,连接时能找到库(静态库或动态库),运行时能找到库。下面介绍库文件的... 阅读全文
posted @ 2015-02-26 17:24 心哲 阅读(4259) 评论(0) 推荐(1)
摘要:Linux静态库和动态库的命名规则 静态函数库 静态库的名字一般是libxxx.a,利用静态库编译生成的文件比较大,因为整个静态库所有的数据都会被整合进目标代码中。 a) 优点: 编译后,可执行文件不需要外部支持; b) 缺点: 生成的可执行程序大;静态库改变了,就需要重新编译可执行程序。 动态函数库 动态库的名字一般是libxxx.so,相对于静态库,动态函数库在编译的时候并没有... 阅读全文
posted @ 2015-02-26 17:13 心哲 阅读(2800) 评论(0) 推荐(0)
摘要:对于以压缩包发布的软件,在它的目录下通常都有一个配置脚本configure,它的作用确定编译参数(比如头文件位置、连接库位置等),然后生成Makefile以编译程序。可以进入该软件的目录,执行"./configure --help"命令查看使用帮。 一个程序能正确编译、链接、运行需要满足3个条件:预处理时能找到头文件,连接时能找到库(静态库或动态库),运行时能找到库。下面介绍头文件... 阅读全文
posted @ 2015-02-26 17:10 心哲 阅读(12491) 评论(0) 推荐(1)
摘要:Windows Live Writer has the ability to allow users to see their blog as it'd be posted as they are composing. The standard editor for Windows Live Writer; editing with no theme means there's no fancy... 阅读全文
posted @ 2015-02-26 16:04 心哲 阅读(250) 评论(0) 推荐(0)
摘要:版本控制(Revision control)是一种软体工程技巧,籍以在开发的过程中,确保由不同人所编辑的同一档案都得到更新。 版本控制软件 版本控制软件提供完备的版本管理功能,用于存储、追踪目录(文件夹)和文件的修改历史,是软件开发者的必备工具,是软件公司的基础设施。版本控制软件的最高目标,是支持软件公司的配置管理活动,追踪多个版本的开发和维护活动,及时发布软件。... 阅读全文
posted @ 2015-02-26 11:36 心哲 阅读(332) 评论(0) 推荐(0)
摘要:Google says, "This package contains the libacl.so dynamic library which contains the POSIX 1003.1e draft standard 17 functions for manipulating access control lists." acl (tools for using POSIX Acces... 阅读全文
posted @ 2015-02-25 08:40 心哲 阅读(629) 评论(0) 推荐(0)
摘要:自己之前一直没搞清楚这两个交叉编译器到底有什么问题,特意google一番,总结如下,希望能帮到道上和我有同样困惑的兄弟….. 一. 什么是ABI和EABI 1) ABI: 二进制应用程序接口(Application Binary Interface (ABI) for the ARM Architecture) 在计算机中,应用二进制接口描述了应用程序(或者其他类型)和操作系... 阅读全文
posted @ 2015-02-25 08:35 心哲 阅读(369) 评论(0) 推荐(0)
摘要:在固件开发过程中常常遇到这样的情况:为测试某个新功能,必需修改某个系统文件。而这个文件在只读文件系统上(总不能为一个小小的测试就重刷固件吧),或者是虽然文件可写,但是自己对这个改动没有把握,不愿意直接修改。这时候mount --bind就是你的好帮手。 假设我们要改的文件是/etc/hosts,可按下面的步骤操作: 1. 把新的hosts文件放在/tmp下。当然也可放在硬盘或U盘上... 阅读全文
posted @ 2015-02-23 14:43 心哲 阅读(3160) 评论(0) 推荐(0)
摘要:mount 的 bind 选项将第一个目录克隆到第二个。一个目录中的改变将会在另一个中出现 — 毕竟,它是同一磁盘上的同一个块。 使用 bind 与对同一设备进行两次挂载的区别在于:您可以挂载子目录而无需挂载整个文件系统。 绑定挂载(bind mount)允许从任何其他位置访问任何文件或目录。 范例七:将 /home 这个目录暂时挂载到 /mnt/home 底下: [roo... 阅读全文
posted @ 2015-02-23 14:38 心哲 阅读(6942) 评论(0) 推荐(0)
摘要:linux initrd里的init脚本中的第一句为: mount -t proc /proc /proc 作用是把proc这个虚拟文件系统挂载到/proc目录。这说明initrd需要用到/proc,进而说明initrd也是一个系统(只是不够完整),没有/proc,initrd不能工作。 这种写法很让人误会。 如果在initrd中,应该写为 mount -t proc p... 阅读全文
posted @ 2015-02-23 10:44 心哲 阅读(2072) 评论(0) 推荐(0)
摘要:sed是一个很好的文件处理工具,本身是一个管道命令,主要是以行为单位进行处理,可以将数据行进行替换、删除、新增、选取等特定工作,下面先了解一下sed的用法 sed命令行格式为: sed [-nefri] ‘command’ 输入文本 常用选项: -n∶使用安静(silent)模式。在一般 sed 的用法中,所有来自 STDIN的资料一般都会被列出到萤幕上。但如果加上 -n 参数后... 阅读全文
posted @ 2015-02-23 10:29 心哲 阅读(125) 评论(0) 推荐(0)
摘要:什么是 chroot chroot,即 change root directory (更改 root 目录)。在 linux 系统中,系统默认的目录结构都是以 `/`,即是以根 (root) 开始的。而在使用 chroot 之后,系统的目录结构将以指定的位置作为 `/` 位置。 图 1. Linux 系统的目录结构 为何使用 chroot 在经过 chroot 之后,系统读取到的目录... 阅读全文
posted @ 2015-02-22 21:51 心哲 阅读(1533) 评论(0) 推荐(0)
摘要:命名规则 交叉编译工具链的命名规则为:arch [-vendor] [-os] [-(gnu)eabi] [-gcc] arch – 体系架构,如ARM,MIPS vendor – 工具链提供商 os – 目标操作系统 eabi – 嵌入式应用二进制接口(Embedded Application Binary Interface) 注意 没有vend... 阅读全文
posted @ 2015-02-22 20:24 心哲 阅读(9564) 评论(0) 推荐(3)
摘要:Bmake is a common makefile framework. Both support native build and cross build. Easy for use, modify and extend. Support Kconfig based config configurator like linux kernel, Easy for custom your proj... 阅读全文
posted @ 2015-02-22 12:04 心哲 阅读(735) 评论(0) 推荐(0)
摘要:sh-# export export CONSOLE="/dev/console" export HOME="/" export LD_LIBRARY_PATH="......." export OLDPWD export PATH="/bin:/usr/bin:/sbin:/usrbin" export PREVLEVEL="N" export PWD="... 阅读全文
posted @ 2015-02-21 22:26 心哲 阅读(4562) 评论(0) 推荐(0)
摘要:In Unix, the name of the tar command is short for tape archiving, the storing of entire file systems onto magnetic tape, which is one use for the command. However, a more common use for tar is to s... 阅读全文
posted @ 2015-02-21 20:36 心哲 阅读(309) 评论(0) 推荐(0)
摘要:http://www.uml.org.cn/pzgl/200610105.htm http://www.netbsd.org/docs/pkgsrc/pkgsrc.html 阅读全文
posted @ 2015-02-21 19:34 心哲 阅读(102) 评论(0) 推荐(0)
摘要:命令格式 source FileName 作用 在当前bash环境下读取并执行FileName中的命令。 注意 该命令通常用命令“.”来替代。如:source .bash_rc 与 . .bash_rc 是等效的。 source命令与shell scripts的区别是: source在当前bash环境下执行命令,而scripts是启动一个子shell来执行命... 阅读全文
posted @ 2015-02-21 17:39 心哲 阅读(438) 评论(0) 推荐(0)
摘要:What is this page? This page describes how to use pkgsrc on ARM architecture with EABI support. I bought TeraStation Live, which is called "TeraStation Living" in Japan, and wanted to use it as a hom... 阅读全文
posted @ 2015-02-21 14:51 心哲 阅读(405) 评论(0) 推荐(0)
摘要:给ln命令加上-s选项,则建立软链接。 格式:ln -s [真正的文件或者目录] [链接名] [链接名]可以是任何一个文件名或者目录名,并且允许它与原文件不在同一个文件系统中。 如果[链接名]是一个已经存在的文件,将不做链接。 如果[链接名]是一个已经存在的目录,linux系统会分两种情况自行进行处理: 若链接指向的是一个文件名,系统将在已经存在的目录下建立一个与源文件名同名的符号... 阅读全文
posted @ 2015-02-21 14:40 心哲 阅读(973) 评论(0) 推荐(0)
摘要:PKGSRC简介 pkgsrc: The NetBSD Packages Collection The NetBSD Packages Collection (pkgsrc) 是在NetBSD系统以及其他UNIX-Like系统中构建第三方软件的一个框架。现在包含了7300多个软件包。在所支持的平台上,它使得自由的配置软件成为可能,并切极易构建。 为什么使用 pkgsrc 首先,pkgsrc... 阅读全文
posted @ 2015-02-21 11:29 心哲 阅读(463) 评论(0) 推荐(0)
摘要:http://www.cyberciti.biz/tips/compiling-linux-kernel-26.html Native Toolchain http://second.ddo.jp/~okayama/memo/pkgsrc-arm/ http://blog.chinaunix.net/uid-10637191-id-2944689.html CodeSour... 阅读全文
posted @ 2015-02-21 11:25 心哲 阅读(142) 评论(0) 推荐(0)
摘要:Codesourcery G++是个商业软件, 不过它有个lite版本,是完全免费的,只不过没有IDE,只有commmand line。 Codesourcery G++支持coldfire, powerpc, ARM 和 MIPS. 每种都有windows和linxu下运行的版本。从其主页上看,Codesourcery应该是ARM和MIPS公司的合作伙伴了, 因此其提供的编译器各方面应该还是不... 阅读全文
posted @ 2015-02-21 10:53 心哲 阅读(968) 评论(0) 推荐(0)
摘要:Compiling custom kernel has its own advantages and disadvantages. However, new Linux user / admin find it difficult to compile Linux kernel. Compiling kernel needs to understand few things ... 阅读全文
posted @ 2015-02-21 10:24 心哲 阅读(438) 评论(0) 推荐(0)
摘要:例1 ddns-update-style interim; ignore client-updates; subnet 192.168.222.0 netmask 255.255.255.0 { # --- default gateway option routers 192.168.222.1; option subnet-mask ... 阅读全文
posted @ 2015-02-20 21:40 心哲 阅读(1694) 评论(0) 推荐(0)
摘要:ddns-update-style interim; //设置dhcp互动更新模式 ignore client-updates; //忽略客户端更新 #子网声明 subnet 192.168.12.0 netmask 255.255.255.0 { # --- default gateway option routers 192.168.12.1; //设置客户端默认网... 阅读全文
posted @ 2015-02-20 21:35 心哲 阅读(665) 评论(0) 推荐(0)
摘要:1.几个DHCP名词在介绍 DHCP工作原理以前,先解释这几个名词的含义: DHCP客户:DHCP客户是一通过DHCP来获得网络配置参数的Internet主机,通常就是普通用户的工作站。 DHCP服务器:DHCP服务器是提供网络设置参数给DHCP客户的Internet主机。 DHCP/BOOTP 中继代理:在DHCP客户和服务器之间转发DHCP 消息的主机或路由器。 DHCP是基于客户机/服务... 阅读全文
posted @ 2015-02-20 16:18 心哲 阅读(1387) 评论(0) 推荐(0)
摘要:一、安装和配置tftp服务 1、安装tftp-hpa ipkg install tftp-hpa tftp-hpa主要的配置文件有两个: /opt/etc/xinetd.conf /opt/etc/xinetd.d/tftp 前者的内容如下,基本无需作任何修改: # Copyright 1999-2004 Gentoo Foundati... 阅读全文
posted @ 2015-02-20 12:48 心哲 阅读(252) 评论(0) 推荐(0)
摘要:http://www.tipsnfreeware.com/ http://www.techienote.com https://kb.iu.edu/index.html https://docs.1h.com/1H_Software_Documentation http://www.funtoo.org/Funtoo_Filesystem_Guide,_Part_1 http://... 阅读全文
posted @ 2015-02-19 22:12 心哲 阅读(110) 评论(0) 推荐(0)
摘要:http://www.mylivesignature.com/ 阅读全文
posted @ 2015-02-19 17:53 心哲 阅读(108) 评论(0) 推荐(0)
摘要:WLW的模板插件:WLWTextTemplates 安装之后,如下图所示: 点击这个按键之后,出现下图: 按上图提示点击“Add new Template”,出现下图: 举个例子,在上图的“Inserted HTML”中,输入下面的代码作为模板代码: Happy Blog Life www.cnblogs.com Template必须保存为一个xml文件... 阅读全文
posted @ 2015-02-19 15:50 心哲 阅读(181) 评论(0) 推荐(0)
摘要:Posted on 09/09/2014 In almost all cases, when mounting a CIFS-share on a Linux host, you will need to supply some credentials. Either you could enter the credentials by hand every time you need t... 阅读全文
posted @ 2015-02-14 19:13 心哲 阅读(945) 评论(0) 推荐(0)
摘要:http://www.cyberciti.biz/tips/how-to-mount-remote-windows-partition-windows-share-under-linux.html by nixCraft on April 26, 2004 · 64 comments· LAST UPDATED August 3, 2007 in CentOS, File system, H... 阅读全文
posted @ 2015-02-14 18:43 心哲 阅读(238) 评论(0) 推荐(0)
摘要:Contents Required packages Basic method Better Method Even-better method Yet Another Even-better method OK, we live in the wonderful world of Linux. BUT, for many of us, having to... 阅读全文
posted @ 2015-02-14 18:42 心哲 阅读(404) 评论(0) 推荐(0)
摘要:Linux 下幾種網芳/Samba 目錄的 mount 方式,比較新的 Smaba 只能用 cifs 的 mount 方式。 [smbmount] smbmount -o username="Username",password="Password" //IP/share /mnt/smb smbumount /mnt/smb [mount] mount -t smbfs -o us... 阅读全文
posted @ 2015-02-13 23:06 心哲 阅读(273) 评论(0) 推荐(0)
摘要:ome commands to convert samba backend password-databases. If you use “passdb backend = smbpasswd” in your smb.conf you must convert your system-user accounts to smbpasswd: cat /etc/passwd | mksmbpas... 阅读全文
posted @ 2015-02-13 22:59 心哲 阅读(1464) 评论(0) 推荐(0)
摘要:Hi I tried to mount a network share (smbfs) but it complains about the lack of kernel support. To solve this, do i need to recompile the kernel, and if so, is there a guide that i can follow? here i... 阅读全文
posted @ 2015-02-13 17:52 心哲 阅读(401) 评论(0) 推荐(0)
摘要:Samba Server 自從 3.x 後改成使用 tdbsam 的方式來管理使用者的帳號及密碼,原本的帳號密碼都是存放在 /etc/samba 目錄之下,最近要做備份時,一時之間竟然找不到 Samba Server 存放使用者帳號及密碼的地方。 後來有想到,可以先把 tdbsam 格式匯出成 sampasswd 格式,再把 smbpasswd 格式轉成 tdbsam 格式 把 tdbs... 阅读全文
posted @ 2015-02-13 17:52 心哲 阅读(530) 评论(0) 推荐(0)
摘要:弟管理學校的網頁伺服器,該伺服器也同時是大家的分享檔案集散中心,是以Linux架設起來的,該伺服器以 Unicode 作為系統編碼,而其他Windows系統則是big5(MS950)編碼,最近我要讓另一台 Linux 的主機(Unicode)掛載該伺服器所分享的檔案,編碼轉換的問題讓我頭痛了一個禮拜,最後發現到該伺服器更新的內容並未於網頁中更新,以下便是弟從文件中找出來的設定: 目前(200... 阅读全文
posted @ 2015-02-13 11:07 心哲 阅读(3134) 评论(0) 推荐(0)
摘要:https://www.samba.org/samba/docs/man/ https://devel.samba.org/ http://www.ubiqx.org/cifs/ https://www.samba.org/samba/docs/man/manpages-3/samba.7.html http://www.linuxnix.com/2009/09/8-ways-to... 阅读全文
posted @ 2015-02-13 09:37 心哲 阅读(112) 评论(0) 推荐(0)
摘要:This series is compatible with Linux certification exam LPIC. A typical Linux user-level topics omitted, I am picked up the contents of the system management and server management. In addition, not on... 阅读全文
posted @ 2015-02-12 23:42 心哲 阅读(606) 评论(0) 推荐(0)
摘要:Only about 8 months from release of Samba 3.0.0, there is beginning to be the transition from 2.2.x. Here again, I will explain the Notes on new features and migration of Samba 3.0 series. (Editorial ... 阅读全文
posted @ 2015-02-12 23:32 心哲 阅读(228) 评论(0) 推荐(0)
摘要:Participation in the Active Directory Samba 3.0 series, as well as the OS since Windows 2000, is possible to participate in the Active Directory domain using Kerberos authentication. Because I think ... 阅读全文
posted @ 2015-02-12 23:28 心哲 阅读(350) 评论(0) 推荐(0)
摘要:Was addicted various After you upgrade the OS of old Samba server. Put it also was using a set of 2.x era become 3.x is seems to have emerged. Changes in 3.x Format and location of the standard pass... 阅读全文
posted @ 2015-02-12 23:26 心哲 阅读(344) 评论(0) 推荐(0)
摘要:What is pam_smb? pam_smb is a PAM module/server which allows authentication of UNIX users using an NT server. pam_smb是一个PAM模块/服务器,允许使用的NT服务器进行UNIX用户认证。 Features (v1 and v2): Authenticates Linu... 阅读全文
posted @ 2015-02-12 23:16 心哲 阅读(231) 评论(0) 推荐(0)
摘要:PAM(Pluggable Authentication Modules )是由 Sun 提出的一种用于实现应用程序的认证机制。其核心是一套共享库,目的是提供一个框架和一套编程接口,将认证工作由程序员交给管理员,PAM 允许管理员在多种认证方法之间作出选择,它能够改变本地认证方法而不需要重新编译与认证相关的应用程序,同时也便于向系统中添加新的认证手段。 PAM 最初是集成在 Solaris 中,... 阅读全文
posted @ 2015-02-12 16:38 心哲 阅读(3209) 评论(0) 推荐(0)
摘要:因为UAC的存在, 如果使用windows 7 的默认共享,比如 \abcc$ ,会被提示 无权限错误. 为了方便在局域网共享文件,找到了这个方法. Open the registry editor. Navigate all the way to HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionPolic... 阅读全文
posted @ 2015-02-11 18:10 心哲 阅读(148) 评论(0) 推荐(0)
摘要:8 Ways To Mount SMBfs (SAMBA FILE SYSTEM) In Linux. Sep 8, 2009 How to Mount smbfs (SAMBA file system) permanently in Linux.In this post I am going to give some examples how to do SMB (Server Mess... 阅读全文
posted @ 2015-02-11 16:58 心哲 阅读(325) 评论(0) 推荐(0)
摘要:There are three ways to pass options to the kernel and thus control its behavior: When building the kernel. Most of this book discusses these options. When starting the kernel. Usu... 阅读全文
posted @ 2015-02-11 15:07 心哲 阅读(1424) 评论(0) 推荐(0)
摘要:在Linux中,给kernel传递参数以控制其行为总共有三种方法: 1.build kernel之时的各个configuration选项。 2.当kernel启动之时,可以参数在kernel被GRUB或LILO等启动程序调用之时传递给kernel。 3.在kernel运行时,修改/proc或/sys目录下的文件。 这里我简单讲的就是第二种方式了,kernel在grub中配置的启动参数。 ... 阅读全文
posted @ 2015-02-11 14:57 心哲 阅读(5859) 评论(0) 推荐(0)
摘要:tftp 192.168.1.1 -c put myfile theirfile tftp 192.168.1.1 -m binary -c put myfile theirfile The tftp default transfer mode is ASCII and when you upload a ROM, the command should include “-... 阅读全文
posted @ 2015-02-11 14:42 心哲 阅读(1442) 评论(0) 推荐(0)
摘要:http://www.davidsudjiman.info/2006/03/27/installing-and-setting-tftpd-in-ubuntu/ http://www.cyberciti.biz/faq/install-configure-tftp-server-ubuntu-debian-howto/ https://tournasdimitrios1.wordpress.c... 阅读全文
posted @ 2015-02-11 14:30 心哲 阅读(161) 评论(0) 推荐(0)
摘要:以下资源都来自官方文档,原文摘录 PXELINUX is a SYSLINUX derivative, for booting Linux off a network server, using a network ROM conforming to the Intel PXE (Pre-Execution Environment) specification. PXELINUX is not ... 阅读全文
posted @ 2015-02-11 10:09 心哲 阅读(535) 评论(0) 推荐(0)
摘要:以下资源都来自官方文档,原文摘录 The SYSLINUX suite contains the following boot loaders ("derivatives"), for their respective boot media: SYSLINUX - MS-DOS/Windows FAT filesystem PXELINUX - PXE network booting ... 阅读全文
posted @ 2015-02-11 09:59 心哲 阅读(474) 评论(0) 推荐(0)
摘要:帮助正确认识SYSLINUX http://www.syslinux.org/wiki/index.php/Doc/syslinux http://www.syslinux.org/wiki/index.php/Doc/pxelinux http://www.syslinux.org/wiki/index.php/Doc/isolinux http://www.sysli... 阅读全文
posted @ 2015-02-10 20:45 心哲 阅读(482) 评论(0) 推荐(0)
摘要:The PXE configuration file defines the menu displayed to the pxe client host as it boots up and contacts the TFTP server. You need a PXE configuration file for PXE. The TFTP server is always lis... 阅读全文
posted @ 2015-02-09 11:02 心哲 阅读(548) 评论(0) 推荐(0)
摘要:http://freecode.com/ 阅读全文
posted @ 2015-02-09 10:17 心哲 阅读(91) 评论(0) 推荐(0)
摘要:http://www.kano.org.uk/projects/pxe/ http://howto.basjes.nl/linux/installing-fedora-linux-via-pxe-x86-64 http://www.syslinux.org/wiki/index.php/PXELINUX http://www.techienote.com/2011/12/how-to-pxe... 阅读全文
posted @ 2015-02-09 10:16 心哲 阅读(88) 评论(0) 推荐(0)
摘要:http://lehsys.blogspot.com/2013/03/windows-live-writer-how-to-change.html http://www.carlosag.net/tools/WindowsLiveWriter/ https://code.google.com/p/google-code-prettify/wiki/GettingStarted http://... 阅读全文
posted @ 2015-02-08 19:52 心哲 阅读(122) 评论(0) 推荐(0)
摘要:两种PXE启动芯片 开机显示:Inter® Boot Agent GE V1.2.45或者Intel UNDI PXE2.0 (Build 082);其中UNDI是Universal Network Driver Interface的缩写。 第一种显示信息对应的PXE启动芯片可以从网络中的DHCP中获得Gateway_IP。如果LAN中存在两个DHCP Server,且都配置了网关,... 阅读全文
posted @ 2015-02-05 20:00 心哲 阅读(235) 评论(0) 推荐(0)
摘要:expand tftpd.ex_ %windir%\system32\tftpd.exeinstsrv tftpd %windir%\system32\tftpd.exereg add hklm\system\currentcontrolset\services\tftpd\Parametersre... 阅读全文
posted @ 2015-02-04 10:59 心哲 阅读(345) 评论(0) 推荐(0)