2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Install Ubuntu 12.04 LTS on ThinkPad T450 with Windows 8.1

Last updated at Posted at 2015-03-25

About

This post describes how to clean-install Ubuntu and Windows on Lenovo ThinkPad T450 Laptop.

Prepare Install Media

  1. Ubuntu 12.04.5 LTS Desktop
  2. Windows 8.1 Professional JP
  3. refind USB Flash drive image

Install Ubuntu

  1. BIOS Configuration

    • Check your machine boots with "UEFI only"
    • Check boot order, and "boot on USB flash" at first.
  2. Install Ubuntu using USB flash install media

    • Check install update on Internet

    • Create new partition table of 500GB HDD like below:

      File System Size
      EFI 500 MB
      ext4 / 300 GB
      swap 1 GB
      unformated 200GB

Install Windows

  1. Install Windows using USB flash install media
    • split pertition table as follow:

      File System Size
      EFI 500 MB
      ext4 / 300 GB
      swap 1 GB
      MSR(reserved) ???(auto)
      ntfs ≒200GB(auto)

Post-config

  1. fix boot loader

    • Now normal GRUB Boot Manager will NOT shows, so we use refind boot manager instead
    • Boot refind using refind usb flash drive image
    • Move cursor to Ubuntu
    • Press 'F2' twice to edit boot command
    • Add nomodeset noapic to the end of line which starts with ro
    • Boot with fixed command
  2. Install refind boot manager on ubuntu

    • Open a terminal and execute follow commands:

$ sudo add-apt-repository ppa:yannubuntu/boot-repair
$ sudo apt-get update
$ sudo apt-get upgrade
$ sudo apt-get install boot-repair
$ boot-repair

	- Select "Advanced options"
	- Show "GRUB location" pane, and check "Separate /boot/efi partition"
	- Press "Apply" button
	- Again back to the terminal, and execute below:

	```bash
$ sudo apt-get install emacs23-nox
$ sudo emacs /etc/default/grub
- Change `GRUB_CMD_LINE_LINUX_DEFAULT="quiet splash"` to `GRUB_CMD_LINE_LINUX_DEFAULT="nomodeset noapic"`
- Save and exit
- execute `sudo update-grub2`
  1. Install refind boot loader

    • execute commands:

$ sudo add-apt-repository ppa:rodsmith/refind
$ sudo apt-get update
$ sudo apt-get install refind

5. Boot order configuration
	- Now reboot the computer, and press 'Enter' to enter BIOS settings
	- Change boot order and set "refind" at first

6. Reboot

# Future Work
- left/right-click does not work on Ubuntu
	- need to edit evdev settings?
- Intel Graphics driver does not work on Ubuntu
	- Intel still does not serve latest driver for ubuntu on apt
2
2
2

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?