我的某一个软件需要通过光驱来安装,但是hp-ux却提示光驱没有mount上去。也就是插入光盘后,在桌面环境下点击CDROM,打开的文件夹里面什么都没有。 现请问,通过什么方法或者命令,可以把光驱mount上去,让系统可以读到光驱里的数据啊。当然,系统是绝对不能重新安装的!!!
by liyongh007 - HP-UX - 2003-11-21 15:09:49 阅读(1142) 回复(4)
通过adb命令查看HP主机的系统信息介绍 The adb command provides a way to gain useful information about a number of the systems configuration areas. To determine the physical memory (RAM) : for HP-UX 10x example: echo physmem/D | adb /stand/vmunix /dev/kmem physmem: physmem: 24576 for HP-UX 11.x systems running on 32 bit architecture: example: echo phys_mem_pages/D | adb /stand/vmunix /dev/kmem phy...
How do I mount a DOS partition under Solaris? mounting a DOS partition under Solaris x86 is fairly simple. This document assumes a hard disk(s) is already installed with one or more DOS partitions. Note that it isn't necessary for the DOS partition you want to mount to be on the same drive as Solaris. Use the command: # mount -F pcfs /dev/dsk/c0d0p0:c /mnt # IDE Drive # mount -F pcfs /dev...
mount -t ufs /dev/hdb1 /mnt/free 提示:mount: wrong fs type, bad option, bad superblock on /dev/hdb1, or too many mounted file systems mount -t u2fs /dev/hdb1 /mnt/free 提示:mount: fs type u2fs not supported by kernel 我用的是 Red hat 9.0
solaris 8 下 mount 第二块硬盘的 windows 文件系统,可以 mount 上 C 盘 D 盘, 但是以后的分区都 mount 不上了, 请问有哪位大侠清楚?
freebsd系统下如何使用系统调用mount, 高手帮个忙啊! manual page函数原型是这样 int mount(const char *type, const char *dir, int flags, void *data); 关键是第四个参数data该如何指定,说明的比较含糊: The data argument is a pointer to a structure that contains the type specific arguments to mount. The format for these argument structures is described in the manual page for each file system. By conventi...