Feb 14

BCDEdit Command-Line Options

 

Boot Configuration Data (BCD) files provide a store that is used to describe boot applications and boot application settings. The objects and elements in the store effectively replace Boot.ini.

BCDEdit is a command-line tool for managing BCD stores. It can be used for a variety of purposes, including creating new stores, modifying existing stores, adding boot menu options, and so on. BCDEdit serves essentially the same purpose as Bootcfg.exe on earlier versions of Windows, but with two major improvements:

  • BCDEdit exposes a wider range of boot options than Bootcfg.exe.
  • BCDEdit has improved scripting support. Continue reading
May 22

linux RPM命令详解

RPM 是 Red Hat Package Manager 的缩写,本意是Red Hat 软件包管理,顾名思义是Red Hat 贡献出来的软件包管理;在Fedora

、Redhat、Mandriva、SuSE、YellowDog等主流发行版本,以及在这些版本基础上二次开发出来的发行版采用;
RPM包里面都包含什么?里面包含可执行的二进制程序,这个程序和Windows的软件包中的.exe文件类似是可执行的;RPM包中还包括程序运行时所
需要的文件,这也和Windows的软件包类似,Windows的程序的运行,除了.exe文件以外,也有其它的文件;
一个RPM
包中的应用程序,有时除了自身所带的附加文件保证其正常以外,还需要其它特定版本文件,这就是软件包的依赖关系;依赖关系并不是Linux特有的,
Windows操作系统中也是同样存在的;比如我们在Windows系统中运行3D游戏,在安装的时候,他可能会提示,要安装Direct 9
;Linux和Windows原理是差不多的; Continue reading

May 22

rhE Linux4下NFS服务器安装和共享配置

    如果在安装系统的时候是全安装,则NFS是会被直接装好的,若无法确定系统是否已经安装NFS服务器,可用用rpm命令查看是否安装portmap跟nfs-utils,如下:rpm -qa | grep portmap ,rpm -qa | grep nfs ,更精确的查询是:rpm -q portmap,rpm -q nfs-utils。若提示not installed则必须自己手动安装了。 Continue reading

May 26

Linux下配置java环境

    早就想玩儿玩儿linux了,最近从同事那儿弄来了一个redhat linux的安装好了的虚拟机映像回来,直接用vmware打开就可以用,省了很多事儿。redhat也有带一个xwindow界面,看上去也挺漂亮。由于是用虚拟机装的,玩儿起界面来还是有点儿卡,后来同事说把它启动起来了搞了一个SecureCRT连接上去用命令行操作会舒服很多,就又搞了一个SecureCRT,感觉是屌了很多。下面言归正传,开始装java环境。 Continue reading