マイコンピュータにLinux MintブータブルUSBドライブがある場合は、Linux Mintをインストールするか、GrubにLinux Mint設定をインストールするかどうかを尋ねるメッセージが表示されます(それがそうであるように、UbuntuをMintに置き換えたくありません)。ドライブにUbuntuがある場合は、インストールせずに実行できるオプションがあります。これはLinuxミントに含まれていません。すべてのファイルが消えてしまうリスクを取って回復するのに時間を費やす代わりに、専門家に連絡することにしました。
答え1
はいインストールオプションを選択すると、ディスク上のインストールプロセスが開始され、プロセスが完了したらハードドライブを上書きできます。
代わりにすることができます次のリンクは、Linux Mintの永続的なUSBインストールを設定する方法を示しています。永続的なUSBインストールはリムーバブルハードドライブへのインストールと非常によく似ており、Live-CDとは異なり、再起動後も変更は保持されます。
http://tuxtweaks.com/2014/03/create-linux-mint-pertant-live-usb/
注:この記事ではUSBインストールを作成するための基礎としてMintを使用していますが、Ubuntuインストールでも簡単に実行できます。
頑張ってください!
答え2
一般的なLinux Mint ISOには、すべてMintを「ライブ」としてのみ実行するオプションが必要です。一度実行すると、デスクトップに「Linux Mintのインストール」アイコンが表示されます。したがって、正しく起動してデスクトップに移動すると、はいリアルタイムで実行され、インストールは不要です。
それでもいくつかの新しいプログラムをインストールしてファイルを保存できますが、すべてがRAMにあり、物理ドライブに書き込まれていない変更は再起動時に失われます。永続性を使用すると、インストールされたプログラムと特定のファイルを起動可能なUSBに直接保存できますが、ライブで実行する必要はありません。
起動可能なUSBをどのように作成しますか? 17.2 ISOのデフォルトブートメニューオプションには「Install Mint」はありません。次のようになります(基本的に同じですが、ブート方法や私が考えているメディアに応じてisolinuxまたはgrub)。
grub.cfg には以下が含まれます。
menuentry "Start Linux Mint 17.2 Xfce 32-bit" {
set gfxpayload=keep
linux /casper/vmlinuz file=/cdrom/preseed/linuxmint.seed boot=casper iso-scan/filename=${iso_path} quiet splash --
initrd /casper/initrd.lz
}
menuentry "Start Linux Mint 17.2 Xfce 32-bit (compatibility mode)" {
linux /casper/vmlinuz file=/cdrom/preseed/linuxmint.seed boot=casper xforcevesa iso-scan/filename=${iso_path} ramdisk_size=1048576 root=/dev/ram rw noapic noacpi nosplash irqpoll --
initrd /casper/initrd.lz
}
menuentry "Check the integrity of the medium" {
linux /casper/vmlinuz boot=casper integrity-check iso-scan/filename=${iso_path} quiet splash --
initrd /casper/initrd.lz
}
isolinux.cfg には以下が含まれます。
label live
menu label Start Linux Mint
kernel /casper/vmlinuz
append file=/cdrom/preseed/linuxmint.seed boot=casper initrd=/casper/initrd.lz quiet splash --
menu default
label xforcevesa
menu label Start in compatibility mode
kernel /casper/vmlinuz
append file=/cdrom/preseed/linuxmint.seed boot=casper xforcevesa nomodeset b43.blacklist=yes initrd=/casper/initrd.lz ramdisk_size=1048576 root=/dev/ram rw noapic noacpi nosplash irqpoll --
label forcepaeoption
menu label Start with PAE forced
kernel /casper/vmlinuz
append file=/cdrom/preseed/linuxmint.seed boot=casper initrd=/casper/initrd.lz quiet splash -- forcepae
label check
menu label Integrity check
kernel /casper/vmlinuz
append boot=casper integrity-check initrd=/casper/initrd.lz quiet splash --
label memtest
menu label Memory test
kernel /casper/memtest
label local
menu label Boot from local drive
COM32 chain.c32
APPEND hd0