1,U盘镜像刻录完成,重启U盘启动时出现not a COM32R image解决方法
方法一
在boot: 后面输入install就可以继续了
方法二:
解决办法: 打开U盘上的文件:syslinux/syslinux.cfg ,将default
vesamenu.c32 一行用#号注释掉即可。
2 用U盘安装的过程中,出现cd-rom无法挂载。提示错误Your installation CD-ROM couldn't
be mounted。
参考国外的http://serverfault.com/questions/685302/unattended-installation-of-Ubuntu-from-usb-drive-not-mounted-correctly
方法如下:
安装kali2.0过程中,安装界面(就是选择语言,设置用户名密码,分区等引导的界面)倒数第二个会有个execute a
shell选项。
选择execute a shell后,会有执行shell的窗口。
第一步:df -m
此时会看到挂载信息,最下面的是/dev/xyz /media
这个是U盘设备挂载到了/media,导致cd-rom不能被挂载。
第二步:umount /media
上面那个国外的解决方案还要继续mount /dev/xyz /cd-rom
但本机测试不用自己挂载,安装程序会自己挂载。自己挂载反而会引起后面出现GRUB安装失败。
Un-mount the USB drive
from /media:
umount /media/
Identify the USB
drive sdXin
the device list (sda,sdb,sdc, …)
ls -l /sys/block/sd* | grep usb
(注:我这一不并没有找到usb hdd)
Mount the USB drive to /cdrom
mount /dev/sdX /cdrom
Go back to the main
terminal tty1
by
pressing alt+F1 and
press yes to retry
mounting the "CD-ROM".
As mentioned in the question, this is a workaround which is not
a solution for an unattended installation.
第三步:exit
退出命令窗口后,继续安装。