Wie installiere ich Windows 7 (mit Intel RST) und Linux, um auf einem Dell XPS 15 einen Doppelstart durchzuführen?

8959
Aethylred

Ich habe einen neuen $workLaptop, einen Dell XPS 15 mit einem 128 GB-mSATA-Laufwerk und eine 1 TB 5400-HDD erhalten. Es wurde mit Windows 8 installiert, das von meinem Arbeitgeber nicht unterstützt wird und mit Windows 7 neu installiert werden muss. Für einige meiner Arbeiten muss Linux (Ubuntu 12.10) ausgeführt werden. Meistens verwende ich jedoch nur Windows und SSH in Linux.

Es gibt mehrere Bedingungen, die ich zu erfüllen versuche:

  • Windows 7 sollte auf dem 1-TB-Laufwerk installiert sein und die Intel Smart Response Technology (SRT) mit dem mSATA-Laufwerk als Cache verwenden
  • Linux sollte auf dem freien Speicherplatz auf dem mSATA-Laufwerk installiert sein, das als einfaches RAID0-Volume angezeigt wird .
  • Es müssen Factory-Restore-Medien für die Installation von Dell Windows 8 erstellt werden.

Ich habe hier ähnliche Fragen gestellt , aber ich hatte nicht erwartet, Win7 neu installieren zu müssen. Diese Frage wurde erstellt, anstatt die alte neu zu verwenden.

Verweise

Ich habe eine Reihe ähnlicher Beiträge gesehen:

6
Ich habe das [Dell Factory Restore-Medium] erstellt (http://superuser.com/questions/522355/how-do-i-create-factory-restore-medial-for-a-dell-laptop-with-windows-8). Aethylred vor 11 Jahren 0
Die ursprüngliche Partitionierung der Laufwerke ist merkwürdiger als erwartet. - Festplatte 0 (1 TB 5400 RPM HDD): - 500 MB EFI-Systempartition - 40 MB OEM-Partition - 500 MB Wiederherstellungspartition - 923 GB Betriebssystem (C :) - 7.64 GB Wiederherstellungspartition - Festplatte 1 (128 GB mSATA-SSD): - 89 GB Daten (D :) - 8.27DE Primäre Partition * Hinweis: * Die Partitionen auf der SSD addieren sich nicht zu ihrer Kapazität. Der von RST belegte Speicherplatz ist für das Betriebssystem nicht sichtbar. Aethylred vor 11 Jahren 0
Also habe ich [Windows 7 mit UEFI und Intel RST] installiert (http://superuser.com/questions/523313/how-do-i-install-windows-7-to-boot-with-uefi-and-intel-rst ) Aethylred vor 11 Jahren 0
Möglicherweise versuchen Sie es als nächstes http://ubuntuforums.org/showthread.php?t=2020155 Aethylred vor 11 Jahren 0

1 Antwort auf die Frage

6
Aethylred

Install Windows

Using this answer prepared earlier.

Preparation

Download an install ISO of the Ubuntu Secure Remix for 12.10 x86_64. UEFI boot has the least issues with Ubuntu 12.10 and the secure remix has some tools that will be required.

Use UNetBootin to create a bootable USB stick for the installation.

Before you leave Windows, disable acceleration with the Intel Rapid Storage Technology. Don't worry, the cache will be safe if you leave its partition alone. Ideally, the volumes on your mSATA disk should be labelled something sensible like "SRT_Cache" and "Linux", these names will be needed later to identify them.

Install Ubuntu

Insert your installer USB, reboot and press the magic key required for your boot menu (F12 for my Dell XPS 15 L521x), choose to UEFI boot the USB drive. Choose to Try Ubuntu. There are some things that need to be done before the install will work.

Once the Ubuntu desktop has started, open a terminal and change to root and perform the commands from here to get Linux to detect the RAID volumes on the mSATA:

# modprobe dm_mod # dmraid -ay # ls -la /dev/mapper/ 

Note that one of the devices in /dev/mapper ends with the name of the spare volume of your mSATA device, this is the one to install Ubuntu to.

Run Install Ubuntu from the desktop shortcut or Unity bar shortcut. Click through and choose to "do something else" rather than wipe your existing disks (the foolish and selfish default option). This should launch the Ubuntu Installer disk partitioning tool. Choose the /dev/mapper device that's named as the Linux partition and create a partition table, create an ext4 partition to be mounted as root (/). Create a swap partition too if required, but if there is lots of memory, it's probably not required.

Continue the Ubuntu install as usual from here, when done shutdown, remove the install USB drive and power back on. It should boot to Ubuntu by default.

Update Ubuntu with:

# apt-get update # apt-get dist-upgrade 

Install Bumblebee to get the nVidia drivers with Optima working correctly, otherwise the nVidia graphics accelerator will drain all the batteries and run all the fans.

sudo apt-get install python-software-properties sudo add-apt-repository ppa:bumblebee/stable sudo add-apt-repository ppa:ubuntu-x-swat/x-updates sudo apt-get update sudo apt-get install bumblebee bumblebee-nvidia 

Reboot back to Ubuntu.

Fix the boot loader

The Ubuntu Secure Remix includes Boot-repair, run this now, let it detect all the things including UEFI, then click the top button to allow it to do its default repair sequence.

Use your favorite editor to edit /etc/default/grub and set the default boot and timeouts (Windows should be named Windows UEFI loader) and run update-grub.

Reboot, you should now have a complete list of boot options for all the OSes installed.

Restore Intel RST

Boot to Windows, open the Intel Rapid Storage Technology application, and enable acceleration, it should remember its settings and switch back on.

Done!

Ich bin mir sicher, dass diese Methode für andere Systeme geeignet wäre. Ich habe einfach keine zur Hand, um sie zu testen. Aethylred vor 11 Jahren 0
das sieht nützlich aus - können Sie sagen, ob es meiner Situation entspricht? http://askubuntu.com/questions/316670/how-do-i-dual-boot-12-04-2-windows-8-on-an-ssss--hdd-machine Jede Eingabe wird geschätzt! :) d3vid vor 10 Jahren 0
Ihr sieht ähnlich aus, ich vermute, dass es mit Win8 funktioniert, aber es hängt davon ab, wie Sie Ihre SSD aufteilen möchten. Intel RST kann nur bis zu 60 GB verwenden. Aethylred vor 10 Jahren 0