sysctrl -a | grep disks
sysctrl -a | grep disks用个这命令后。提示:kern. disks:ad0 原帖由 anxindn 于 2009-8-31 22:37 发表 http://www.panabit.com/forum/images/common/back.gifsysctrl -a | grep disks用个这命令后。提示:kern. disks:ad0
盘是找到了,是可以安装的。
有了V9.08之后,大家就不需要下载V9.07了,因为流控只有使用最新版本才有效,就像杀毒系统,如果使用1个月前的病毒库,就杀不干净了。
下载地址:http://www.panabit.com/download/Panabit0908CD_72.iso
回复 1# 的帖子
谢谢关注中。:lol 发现一键安装版不支持usb键盘,怎么办??急啊,我的电脑只有usb,没有其他键盘接口 我用的是一台DELL 1600sc服务器,板载Intel(R) Pro/100 S Server NIC 网卡,双装了两块DLINK 530D的网卡,安装至选择管理网卡时,只显示vr0和vr1,好像是驱动没有加载上吧? 原帖由 ferdinand26 于 2009-7-29 09:57 发表 http://www.panabit.com/forum/images/common/back.gif我也是用虚拟机安装测试,没有安装上去,但是还是显示
****** Congratulations ******!
You have successfully installed Panabit on your system!
后来才发现新建的虚拟机硬盘并没有被格式化。
解决方法:
用 ...
手上有台工控机:硬盘82G,4张Intel网卡,内存128M,Panabit0908CD_72。用Console的串口线进行配置。方法参照自动安装ISO文件的方法:出现几个问题:Panabit# sysctl -a |grep disks
kern.disks: cd0 ad0
Panabit# ./setup
Welcome to Panabit system automatically install shell!
The installation will delete all data on your hard disk and can not be restored!!
Please confirm whether or not to continue the installation!
Do you want to continue(y/n)?y
Following disks are detected:ad0
Please select one :
We begin to format the disk "ad0" and begin to install FreeBSD 7.2!
Do you want to continue(y/n)?y
GEOM_LABEL: Label ufsid/4af9393de34d4df7 removed.
GEOM_LABEL: Label ufsid/4af9393c3f17f353 removed.
GEOM_LABEL: Label ufsid/4af9393b5a067bb6 removed.
GEOM_LABEL: Label ufsid/4af9393bb85aff97 removed.******* Working on device /dev/ad0 *******
GEOM_LABEL: Label for provider ad0s1a is ufsid/4af9393bb85aff97.
cylinders=39420
heads=16
sectors/track=255
GEOM_LABEL: Label ufsid/4af9393bb85aff97 removed.
Odisk: WARNING line 1: number of cylindGers (39420) may Ebe out-of-range
(must be wiMthin 1-1024 for _normaLl BIOS operationA, unless the entBire disk
isE dedicated to FrLeeBSD): Label for provider ad0s1a is ufsid/4af9393bb85aff97.
fdisk: ERROR lGine 1: number ofE sectors must beO within (1-63)
M_LABEL: Label ufsid/4af9393bb85aff97 removed.
disklabel: /dev/ad0s2: No such file or directory
disklabel: /dev/ad0s3: No such file or directory
disklabel: /dev/ad0s4: No such file or directory
GEOM_LABEL: Label for provider ad0s1a is ufsid/4af93df40d6662ec.
newfs: /dev/ad0s2a: could not find specGial deviceE
OM_LABEL: Label ufsid/4af93df40d6662ec removed.
newfs: /dev/ad0s3a: could not find special device
newfs: /dev/ad0s4a: could not find special device
mount: /dev/ad0s2a : No such file or directory
mount: /dev/ad0s3a : No such file or directory
mount: /dev/ad0s4a : No such file or directory
FreeBSD 7.2 Install OK!
硬盘的分区,格式化都用问题。
用其它方法搞,改setup脚本:
1.先手动分区
Disk name: ad0 FDISK Partition Editor
DISK Geometry:39420 cyls/16 heads/255 sectors = 160833600 sectors (78532MB)
Offset Size(ST) End NamePType DescSubtype Flags
0 255 254 - 12 unused 0
255 407745 407999 ad0s1 8 freebsd 165 A
408000 81600 489599 ad0s2 8 freebsd 165
489600 40800 530399 ad0s3 8 freebsd 165
530400 16030320 16560719 ad0s4 8 freebsd 165
16560720144275760160836479 - 12 unused 0
2.
disklabel -r -wB ad0s1 auto
disklabel -r -w ad0s2 auto
disklabel -r -w ad0s3 auto
disklabel -r -w ad0s4 auto
newfs ad0s1a
newfs ad0s2a
newfs ad0s3a
newfs ad0s4a
3.改setup,把下面的全部注释掉
fdisk -qBI /dev/$curdisk1
curcyl=`fdisk -s /dev/$curdisk1 | cut -d':' -f2 | cut -d' ' -f2`
curhd=`fdisk -s /dev/$curdisk1 | cut -d':' -f2 | cut -d' ' -f4`
cursec=`fdisk -s /dev/$curdisk1 | cut -d':' -f2 | cut -d' ' -f6`
echo "cylinders=${curcyl}"
echo "heads=${curhd}"
echo "sectors/track=${cursec}"
curcy1=`expr 204800 / $curhd / $cursec`
curcy2=`expr 40960 / $curhd / $cursec`
curcy3=`expr 20480 / $curhd / $cursec`
curcy4=`expr $curcyl - $curcy1 - $curcy2 - $curcy3`
fdisk -qf ./CHS.conf /dev/$curdisk1 >/dev/null
disklabel -r -wB ${curdisk1}s1 auto >/dev/null
disklabel -r -w ${curdisk1}s2 auto >/dev/null
disklabel -r -w ${curdisk1}s3 auto >/dev/null
disklabel -r -w ${curdisk1}s4 auto >/dev/null
newfs ${curdisk1}s1a >/dev/null
newfs ${curdisk1}s2a >/dev/null
newfs ${curdisk1}s3a >/dev/null
newfs ${curdisk1}s4a >/dev/null
再次./setup
fdisk: ERROR line 1: incorrect number of geometry args
GEOM_LABEL: Label for provider ad0s1a is ufsid/4af9467bd4fb720a.
GEOM_LABEL: Label for provider ad0s2a is ufsid/4af9467bca493c24.
GEOM_LABEL: Label for provider ad0s3a is ufsid/4af9467baf174bc1.
GEOM_LABEL: Label for provider ad0s4a is ufsid/4af9467ce973ad82.
GEOM_LABEL: Label ufsid/4af9467bd4fb720a removed.
GEOM_LABEL: Label ufsid/4af9467bca493c24 removed.
GEOM_LABEL: Label ufsid/4af9467baf174bc1 removed.
GEOM_LABEL: Label ufsid/4af9467ce973ad82 removed.
FreeBSD 7.2 Install OK!
Welcome installing panabit!
****** Congratulations ******!
You have successfully installed Panabit on your fsystem!
xp0: link state changed to UP
Following interfaces are installed in your system:
fxp0 fxp1 fxp2 fxp3
Please choose one of above as your admin interface:
Please choose one of above as your admin interface: 192.168.10.100
Please choose one of above as your admin interface: fxp0
Please input ip address of admin interface: 192.168.10.100
Please input network mask of admin interface: 255.255.255.0
Please input default gateway: 192.168.10.1
Your interface configurations are:
Admin interfGace: fxp0
E Admin ip addresOs : 192.168.10.1M00
Admin ne_tmask : 255.2L55.255.0
DeAfault gateway:B 192.168.10.1
E Data interfacLes:fxp1 fxp2: fxp3
Label for provider ad0s2a is ufsid/stray irq7
4af9467bca493c24.
GEOM_LABEL: Label for provider ad0s3a is ufsid/4af9467baf174bc1.
GEOM_LABEL: Label for provider ad0s4a is ufsid/4af9467ce973ad82.
GEOM_LABEL: Label for provider ad0s1a is ufsid/4af9467bd4fb720a.
Thank you for using panabit!
Eject CDROM!
Reboot system then the system automaticly start panabit at system startup!
If you want to stop the currently running panabit, you can issue
"/usr/panabit/bin/ipectrl stop" to stop it!
You can issue "/usr/panabit/bin/ipectrl start" to start panabit!
就可以顺利安装完成,重启。系统启不来。
麻烦指点些。谢谢。
[ 本帖最后由 cqliuke 于 2009-11-10 20:20 编辑 ] 下载,刻盘,安装,五分钟。 以前一直用6.2不想升级,今天终于升级7.2了
真的比以前安装方便了很多 管理员 为什么我一键安装完成之后重启电脑,然后显示一大推和安装之前差不多的内容,
最后是显示:FreeBSD/i386(Panabit)(ttyv0)
login:
为什么还是这样的 接下来应该怎么做 是不是光盘没取出来啊?