我已经从 USB 记忆棒启动了 Linux Mint。一切正常,直到我尝试安装它。所以我启动Install Linux Mint
选择我的语言⇒设置WiFi连接⇒安装类型显示(已经与在线教程不同)。
我看到了什么:
如果我点击“立即安装”: No root file system is defined. Please correct this from the partitioning menu
如果我点击“+”:
如何解决这个问题?
我使用的是宏碁 s5 笔记本电脑。
答案1
有8GB以上的硬盘吗?上面有任何现有分区(或 MBR/GPT)吗?它出现在sudo parted -l
或中sudo fdisk -l
吗?
你能在最后一个屏幕上“+/-/更改”任何内容吗?或者是否有一个早期的屏幕,您可以在其中选择不同的选项,例如“与窗口一起安装/替换窗口/其他”,您可以在其中选择不同的选项?与此类似:
看看这些相关问题,您可能需要使用gparted
,甚至是新的 MBR/GPT 创建/格式化一些 ext 分区,或者只是从最后一个安装程序窗口(图像中的那个)中选择一些。或者可能sudo apt-get remove dmraid
如果上述内容没有任何帮助,Mint 安装程序将运行ubiquity
(显然是定制版本 2.18.8-1linuxmint8),“ubiquity 是 Ubuntu 的图形安装程序,主要用 Python 编写,使用 debian-installer (di) 作为其许多功能的后端。”
至少在 XFCE 上是这样,您可以通过查看可能位于桌面/~/Desktop
文件夹中或/usr/share/applications
文件夹中的 .desktop 文件来仔细检查您的文件(运行
find /usr -iname "*install*.desktop" -type f
也应该找到/usr/share/applications/mintInstall.desktop
)然后查看该文件中的Exec=sh -c 'ubiquity gtk_ui'
行以准确了解它运行的内容。
ubiquity
有一个“--debug”选项,因此您可以在终端中运行它来查看更多错误消息:
ubiquity --debug gtk_ui
这是手册页关于“--debug”的内容
-d, --debug
Run in debugging mode, sending verbose information to
/var/log/installer/debug that may be useful to developers. (The
/var/log/syslog file is usually required in any case, along with
/var/log/partman in the case of problems related to partitioning.)
Note that passwords will be logged in debugging mode!