Samsung NP730U3E-S03DE Ultrabook
Ubuntu 12.04.3 LTS
- BIOS: Secure Boot aus, Fastboot aus, UEFI+Legacy-Boot, Bootreihenfolge so dass es von USB-Stick startet
- 12.04.3 LTS von der AMD64 DVD starten im "nur ausprobieren" modus
- dort ubuntu installieren icon anklicken
- beim Partitionieren "etwas anderes" anwählen
- die letzten 2 Partitionen (ca. 1GB + 20GB) des originalen SSD-Inhalts sind für Windows8-Recovery. Wenn man ein anderes Tool benutzt, um das Notebook ggf. wieder herstellen zu können, kann man diese löschen und für Linux verwenden.
- weitere Installation ganz normal, aber am Ende nicht neu starten
- dann boot-repair anwenden (defaults + den Empfehlungen folgen)
- nach nem Neustart gibt's dann nen per EFI gebooteten grub mit Einträgen für Ubuntu und Windows
Hardware
Folgendes tut auf Anhieb:
- CPU Core i5-3x337u inkl. dyn. Taktumschaltung und VT-Support
- RAM 6GB
- Display 1920x1080 matt, weiter Blickwinkel (IPS?)
- Graphikchip (X.org.log: lädt fglrx (AMD/ATI) und Intel-Driver) glmark2 Score: 900 (GL_RENDERER: AMD Radeon (TM) HD 8500M/8700M)
- Sound Lautsprecher / int. Mikrofon
- SSD 128GB MZMTD128HAFV-000
- WLAN Intel Advanced-N 6235
- Bluetooth
- USB2 / USB3
- Tastatur inkl. Sondertasten heller/dunkler, lauter/leiser/aus
- Tastatur-Hintergrundbeleuchtung geht automatisch an bei wenig Umgebungs-Helligkeit
- Touchpad Grundfunktion, aber nur linke Taste, rechte Taste = 2-Finger-Touch
- Webcam
Nicht getestet:
- LAN
- Cardreader
- ext. Audio / Mikro
- ext. Display
lspci
00:00.0 Host bridge: Intel Corporation 3rd Gen Core processor DRAM Controller (rev 09) 00:01.0 PCI bridge: Intel Corporation Xeon E3-1200 v2/3rd Gen Core processor PCI Express Root Port (rev 09) 00:02.0 VGA compatible controller: Intel Corporation 3rd Gen Core processor Graphics Controller (rev 09) 00:14.0 USB controller: Intel Corporation 7 Series/C210 Series Chipset Family USB xHCI Host Controller (rev 04) 00:16.0 Communication controller: Intel Corporation 7 Series/C210 Series Chipset Family MEI Controller #1 (rev 04) 00:1a.0 USB controller: Intel Corporation 7 Series/C210 Series Chipset Family USB Enhanced Host Controller #2 (rev 04) 00:1b.0 Audio device: Intel Corporation 7 Series/C210 Series Chipset Family High Definition Audio Controller (rev 04) 00:1c.0 PCI bridge: Intel Corporation 7 Series/C210 Series Chipset Family PCI Express Root Port 1 (rev c4) 00:1c.3 PCI bridge: Intel Corporation 7 Series/C210 Series Chipset Family PCI Express Root Port 4 (rev c4) 00:1d.0 USB controller: Intel Corporation 7 Series/C210 Series Chipset Family USB Enhanced Host Controller #1 (rev 04) 00:1f.0 ISA bridge: Intel Corporation HM76 Express Chipset LPC Controller (rev 04) 00:1f.2 SATA controller: Intel Corporation 7 Series Chipset Family 6-port SATA Controller [AHCI mode] (rev 04) 00:1f.3 SMBus: Intel Corporation 7 Series/C210 Series Chipset Family SMBus Controller (rev 04) 01:00.0 Display controller: Advanced Micro Devices, Inc. [AMD/ATI] Mars [Radeon HD 8730M] 02:00.0 Network controller: Intel Corporation Centrino Advanced-N 6235 (rev 24) 03:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller (rev 06)
lsusb
Bus 001 Device 002: ID 8087:0024 Intel Corp. Integrated Rate Matching Hub Bus 002 Device 002: ID 8087:0024 Intel Corp. Integrated Rate Matching Hub Bus 003 Device 002: ID 0bda:0129 Realtek Semiconductor Corp. Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub Bus 003 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub Bus 004 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub Bus 001 Device 003: ID 2232:1045 Bus 002 Device 003: ID 8087:07da Intel Corp.
Touchpad optimieren
In die .bashrc;
synclient TapButton1=1 TapButton2=2 TapButton3=3
Danach: 1/2/3-Finger-Touch = linke/mittlere/rechte Maustaste
Stromverbrauch optimieren
unten in /etc/rc.local einbauen:
# SSD -> noop scheduler echo 'noop' > /sys/block/sda/queue/scheduler # VM writeback timeout echo '1500' > /proc/sys/vm/dirty_writeback_centisecs # turn off NMI watchdog echo '0' > /proc/sys/kernel/nmi_watchdog # autosuspend for USB for i in /sys/bus/usb/devices/*/power/autosuspend; do echo '1' > $i; done; for i in /sys/bus/usb/devices/*/power/level; do echo 'auto' > $i; done; # switch off BT rfkill block bluetooth # NOTE: a lot of power saving settings are now handled by pm-utils! exit 0
In /etc/pm/config.d/config:
SATA_ALPM_ENABLE=true PCI_DEVICES_PM_ENABLE=true