「ノートパソコン/Lenovo」の版間の差分
Kusanaginoturugi (トーク | 投稿記録) (→L シリーズ: 記事を差し替え) |
(→Lenovo: CPPC を有効にするを翻訳して追加) |
||
(同じ利用者による、間の4版が非表示) | |||
292行目: | 292行目: | ||
|} |
|} |
||
− | ==Lenovo== |
+ | == Lenovo == |
+ | |||
+ | === バッテリー節約モード === |
||
+ | |||
+ | バッテリー節約モードは、バッテリー寿命を延ばすためにバッテリーの充電を容量の 55 〜 60% に制限する機能で、ラップトップが外部電源で動作することが多い場合に最も役立ちます。これは、IdeaPad や Thinkbook シリーズなどの多くの Lenovo ラップトップで動作します。ラップトップがサポートされているかどうかを確認するには、Windows 上の Vantage アプリでバッテリー節約モードを設定してみてください。Windows で動作する場合は、次の方法で Linux で有効または無効にできます。 |
||
+ | |||
+ | * まず、{{ic|lsmod}} コマンドを使用して、{{ic|ideapad_laptop}} カーネルモジュールがロードされていることを確認します。 |
||
+ | * 有効になっている場合は、root として次のコマンドを実行してバッテリー節約モードを有効にします:{{bc|# echo 1 > /sys/bus/platform/drivers/ideapad_acpi/VPC2004:00/conservation_mode}} |
||
+ | * {{ic|0}} を指定すると、この機能が無効になります。 |
||
+ | |||
+ | {{Note|1=<br> |
||
+ | * この機能の有無と実装はモデルによって異なります。特に、フォルダー '''VPC2004:00''' の名前は異なる場合があります。 |
||
+ | * 上記がラップトップで機能しない場合は、[https://forums.linuxmint.com/viewtopic.php?f=49&t=286237#p1583578 ここ] で説明されている別の方法を試すことができます。これには、(さらに) いくつかの処理が必要になる場合があります。 |
||
+ | }} |
||
+ | |||
+ | [[GNOME]] を使用する場合は、[https://extensions.gnome.org/extension/2992/ideapad/ Ideapad] 拡張機能をインストールすると、簡単に切り替えることができます ([https://github.com/laurento/gnome-shell-extension-ideapad#additional-required-settings sudo を設定することも忘れないでください]) |
||
+ | |||
+ | === 特殊ボタン === |
||
+ | |||
+ | 一部の特別なボタンはキーコード数の制限により X サーバーでサポートされておらず、[[Wayland]] でも認識されない可能性があります。以下に最も一般的な 2 つを示しますが、他にも発生する可能性があります。 |
||
+ | |||
+ | {| class="wikitable" style="text-align:center" |
||
+ | |- |
||
+ | ! キーの組み合わせ !! スキャンコード !! キーコード |
||
+ | |- |
||
+ | | {{ic|Fn+F11}} || {{ic|0x49}} || {{ic|374}} {{ic|KEY_KEYBOARD}} |
||
+ | |- |
||
+ | | {{ic|Fn+F12}} || {{ic|0x45}} || {{ic|364}} {{ic|KEY_FAVORITES}} |
||
+ | |} |
||
+ | |||
+ | 次の設定を作成することで、サポートされていないキーを再マップして、X で検出してマップできるようにすることができます。 |
||
+ | |||
+ | {{hc|/etc/udev/hwdb.d/90-thinkpad-keyboard.hwdb|<nowiki> |
||
+ | evdev:name:ThinkPad Extra Buttons:dmi:bvn*:bvr*:bd*:svnLENOVO*:pn* |
||
+ | KEYBOARD_KEY_45=prog1 |
||
+ | KEYBOARD_KEY_49=prog2 |
||
+ | </nowiki>}} |
||
+ | |||
+ | {{Note|{{ic|prog1}} と {{ic|prog2}} は {{ic|/usr/include/linux/input-event-codes.h}} の {{ic|KEY_PROG1}} と {{ic|KEY_PROG2}} に対応します。定義された値が 255 未満のキーコードであれば、どのようなものでも使用できます。hwdb が期待するキーコードは、上記の入力イベントコードヘッダファイルの {{ic|KEY_}} に続く小文字のテキストです。例えば、{{ic|KEY_COFFEE}} は {{ic|coffee}} となります。}} |
||
+ | |||
+ | 次に、[[スキャンコードをキーコードにマップ#udev を使う]] の手順に従います。 |
||
+ | |||
+ | === BIOS/ファームウェアのアップデート === |
||
+ | |||
+ | Lenovo は、一部のデバイス (ThinkSeries) に対して、[[fwupd]] 経由でファームウェアと BIOS のアップデートのサポートを提供します。その他のデバイスの場合、Lenovo は Windows インストーラーとしてのみアップデートを配布します。マシンに Windows をインストールせずにこれらの更新プログラムをインストールするには、次の手順を試してください。 |
||
+ | |||
+ | {{Warning|次の手順を実行すると、デバイスが起動不能になる可能性があります。自己責任で続行してください。}} |
||
+ | |||
+ | これらの手順は [https://wiki.archlinux.org/title/Lenovo_Yoga_9_14ITL5 Lenovo Yoga 9 14ITL5] (Phoenix BIOS) でテストされましたが、他のデバイスにも同様に適用できるはずです。 |
||
+ | |||
+ | 現在の BIOS とファームウェアのバージョンを確認するには、{{pkg|dmidecode}} を使用します。 |
||
+ | |||
+ | {{bc|# dmidecode --type bios}} |
||
+ | |||
+ | BIOS アップデートを実行するときは、中間バージョンをスキップしないでください。現在バージョン {{ic|1.1}} を使用していて、バージョン {{ic|1.2}} および {{ic|1.4}} へのアップデートがある場合は、最初にアップデートを {{ic|1.2}} に適用してから、順番に {{ic|1.4}} までアップデートして下さい。 |
||
+ | |||
+ | BIOS/ファームウェアをアップデートするには: |
||
+ | |||
+ | # [https://support.lenovo.com/ Lenovo サポートページ] からデバイスの ファームウェア/BIOS アップデートをダウンロードします。 |
||
+ | # インストーラがアーカイブに圧縮されている場合、.exe ファイルが残るまで解凍してください。 |
||
+ | # .exe ファイルから成果物を取り出すには {{pkg|innoextract}} を使ってください。 |
||
+ | # [[Windows PE]] に従ってブート可能な USB メモリを作成し、解凍した成果物のあるディレクトリをオーバーレイとして使用する。 |
||
+ | # デバイスを外部電源に接続する |
||
+ | # Windows PE イメージで再起動する |
||
+ | # ディレクトリを {{ic|X:}} に変更する。 |
||
+ | # インストーラーを実行します: {{ic|install.bat}} (BIOS の場合) または {{ic|MEUpdate.CMD}} (インテル ME ファームウェアの場合) |
||
+ | |||
+ | === 高度な UEFI オプション === |
||
+ | |||
+ | {{Warning|何をやっているか理解して、オプションを変更して下さい。変更すると、'''デバイスに永久的な損傷''' が発生し、'''保証が無効になる''' 可能性があります。}} |
||
+ | |||
+ | 一部の Ideapad および Legion モデルでは、より高度な UEFI オプションの一部がロックされています。ロックを解除すると便利な場合があります。高度なオプションのロックを解除できる既知の方法がいくつかあります。 |
||
+ | |||
+ | ==== EFI 変数 ==== |
||
+ | |||
+ | 2022 年より前の一部のモデルでは、[[Unified Extensible Firmware Interface#UEFI 変数|EFI 変数]]、{{ic|6ACCE65D-DA35-4B39-B64B-5ED927A7DC7E-cE!}} を作成し、それを {{ ic|1}} を使用して詳細オプションを有効にします。ユーザー空間 {{Pkg|efivar}} を使用して、この変数を作成できます。 |
||
+ | |||
+ | # echo 1 > param |
||
+ | # efivar --name '6ACCE65D-DA35-4B39-B64B-5ED927A7DC7E-cE!' --write --datafile=param |
||
+ | # rm param |
||
+ | |||
+ | ==== 実行時に EFI モジュールにパッチを適用する ==== |
||
+ | |||
+ | 現在メンテナンスされていないツール [https://github.com/SmokelessCPUv2/SmokelessRuntimeEFIPatcher SmokelessRuntimeEFIPatcher] を使用して、実行時にパッチ/導入を行うことができます。ここでいくつかのパッチが提供されています: https://github.com/SmokelessCPUv2/SREP-Community-Patches |
||
+ | |||
+ | 例えば |
||
+ | |||
+ | * SmokelessRuntimeEFIPatcher の EFI バイナリをダウンロードまたはビルドし、EFI を ESP に保存します(例:{{ic|/boot/efi/efi/srep/SREP.efi}}) |
||
+ | * [https://github.com/SmokelessCPUv2/SREP-Community-Patches SREP-Community-Patches] で、あなたのファームウェアに適したパッチを見つけ、そのパッチを {{ic|SREP_Config.cfg}} として ESP のトップレベル・ディレクトリに保存する。 |
||
+ | * SREP EFI バイナリを実行するための [[Unified_ Extensible Firmware Interface#UEFI variables|UEFI variable]] を作成します。 |
||
+ | * UEFI ブートメニューで SREP ブートエントリを選択して、実行時にモンキーパッチされたファームウェアで UEFI セットアップユーティリティを実行する。 |
||
+ | |||
+ | === CPPC を有効にする === |
||
+ | |||
+ | {{ic|amd_pstate}} ドライバーを使用するには、[https://docs.kernel.org/admin-guide/acpi/cppc_sysfs.html CPPC] を有効にする必要があります。詳細については、[[CPU 周波数スケーリング#スケーリングドライバ]] を参照してください。 |
||
+ | |||
+ | === IdeaPad === |
||
− | ===IdeaPad=== |
||
{{HCL/Laptops table header}} |
{{HCL/Laptops table header}} |
||
| Lenovo IdeaPad 120S || 2018-04-26 || {{Yes}} || {{Yes}} || {{Grey|NA}} || {{Yes}} || {{Yes}} || {{Yes}} || {{Grey|NA}} || 問題なく動作 || |
| Lenovo IdeaPad 120S || 2018-04-26 || {{Yes}} || {{Yes}} || {{Grey|NA}} || {{Yes}} || {{Yes}} || {{Yes}} || {{Grey|NA}} || 問題なく動作 || |
2023年10月15日 (日) 22:17時点における最新版
関連記事
ノートパソコンメインページ |
Acer - Apple - Asus - Compaq (廃業) - Dell - Fujitsu - HP - IBM/Lenovo - MSI - Samsung - Sony - Toshiba - その他 |
このページでは IBM および Lenovo 製ノートパソコンの互換性と、適切に設定するための記事をモデル別に紹介しています。
目次
- 1 IBM/Lenovo
- 2 Lenovo
- 3 Special Notes (*):
IBM/Lenovo
ThinkPad
Edge シリーズ
機種 | Arch Linux インストール CD バージョン |
ハードウェアのサポート | 備考 | |||||||
---|---|---|---|---|---|---|---|---|---|---|
ビデオ | サウンド | Ethernet | ワイヤレス | Bluetooth | 電源管理 | モデム | その他 | |||
Lenovo ThinkPad Edge E130 | - | Yes | Yes | Yes | Yes | Yes | Yes | Yes | ウェブカメラ | |
Lenovo ThinkPad Edge E330 | - | Yes | Yes | Yes | Yes | Yes | Yes | NA | ||
Lenovo ThinkPad Edge E335 | - | Yes | Yes | Yes | Yes | NA | Yes | NA | ||
Lenovo ThinkPad Edge E420s | - | Yes | Yes | Yes | Yes | Yes | NA | NA | ||
Lenovo ThinkPad Edge E430 | - | Yes | Yes | Yes | 未検証 | Yes | NA | NA | SD カードリーダー ウェブカメラ (トラックポイント未検証) |
|
Lenovo ThinkPad Edge E455 | 2015.04.01 | Yes | Yes | Yes | Yes | Yes | Yes | NA | ||
Lenovo ThinkPad Edge E470 | 2017.09.01 | Yes | Yes | Yes | Yes | 未検証 | NA | NA | トラックポイント | |
Lenovo ThinkPad Edge E530 | - | Yes | Yes | Yes | Yes | Yes | NA | NA | SD カードリーダー (指紋リーダー未検証) |
|
Lenovo ThinkPad Edge E540 | 2015.08.01 | Yes | Yes | Yes | Yes | Yes | Yes | NA | SD カードリーダー 指紋リーダー タッチパッド トラックポイント ウェブカメラ |
|
Lenovo ThinkPad Edge E545 | - | Yes | Yes | Yes | Yes | 未検証 | Yes | NA | SD カード タッチパッド トラックポイント ウェブカメラ |
wifi は broadcom-wl-dkms で動作 |
Lenovo ThinkPad Edge E580 | 2018.05.01 | Yes | Yes | Yes | Yes | Yes | Yes | NA | 指紋センサーはファームウェアがプロプライエタリなので動作しません |
E シリーズ
機種 | Arch Linux インストール CD バージョン |
ハードウェアのサポート | 備考 | |||||||
---|---|---|---|---|---|---|---|---|---|---|
ビデオ | サウンド | Ethernet | ワイヤレス | Bluetooth | 電源管理 | モデム | その他 | |||
Lenovo ThinkPad E485 | 2018-10-01 | Yes | Yes | Yes | Yes | Yes | Yes | NA | ACPI テーブルに IVRS マップが欠けているため、カーネルパラメータに amd_iommu=pt ivrs_ioapic[32]=00:14.0 を追加してください。X を動かすには、カーネルパラメータに iommu=soft を追加します (Linux 4.20 のみ)。マイクロ SD (SDHCI) を使うには、echo 'options sdhci debug_quirks2="0x8000"' > /etc/modprobe.d/sdhci.conf を実行して /etc/mkinitcpio.conf でモジュールのロード順序を変更: MODULES=(sdhci sdhci_pci) (7行目)。設定後 mkinitcpio -p linux を実行してください。
| |
Lenovo ThinkPad E585 | 2018-11-01 | Yes | Yes | Yes | Yes | Yes | Yes | NA | 同上 |
L シリーズ
機種 | Arch Linux インストール CD バージョン |
ハードウェアのサポート | 備考 | |||||||
---|---|---|---|---|---|---|---|---|---|---|
ビデオ | サウンド | Ethernet | ワイヤレス | Bluetooth | 電源管理 | モデム | その他 | |||
ThinkPad L380 Yoga | 2018-09-21 | Yes | Yes | Yes | Yes | Yes | Yes | |||
ThinkPad L390 | 2021-03-01 | Yes | Yes | Yes | Yes | Yes | Yes | Touchscreen 20NRCTO1WW partial with blacklisting raydium_i2c_ts
| ||
ThinkPad L390 Yoga | 2019-09-05 | Yes | Yes | Untested | Yes | Yes | Untested | Untested: Touchscreen SD card reader |
Fingerprint sensor not supported by libfprint, see [1] | |
ThinkPad L420 | 2014-11-23 | Yes | Yes | Yes | Yes | Untested | Yes | |||
ThinkPad L430 | 2014-11-23 | Yes | Yes | Yes | Yes | Yes | Yes | |||
ThinkPad L440 | 2019-01-24 | Yes | Yes | Yes | Yes | Yes | Yes | |||
ThinkPad L450 | 2019-11-01 | Yes | Yes | Yes | Yes | Yes | Yes | |||
ThinkPad L460 | 2019-06-24 | Yes | Yes | Yes | Yes | Yes | Yes | |||
ThinkPad L470 | 2022-01-24 | Yes | Yes | Yes | Yes | Untested | Yes | Trackpoint, Fingerprint reader, SD Card Reader | ||
ThinkPad L490 | 2020-12-13 | Yes | Yes | Yes | Yes* | Yes | Yes** | Untested: Fingerprint reader | *RTL8822BE **Configure fans to avoid thermal throttling (e.g. thinkfanAUR). | |
ThinkPad L520 | 2018-09-01 | Yes | Yes | Yes | Yes | Untested | Untested | Untested | ||
ThinkPad L530 | 2014-11-23 | Yes | Yes | Yes | Yes | Yes | Yes | |||
ThinkPad L560 | 2018-12-28 | Yes | Yes | Yes | Yes | Untested | Untested | |||
ThinkPad L13 Yoga Gen2 | 2021-08-10 | Yes | Yes | Yes | Yes | Yes | Yes | Untested: Smartcard-Reader | To enable Trackpoint and touchpad buttons use the fix for Elantech touchpads | |
ThinkPad L14 Gen1 (Intel) | 2020-09-17 | Yes | Yes | Yes | Yes | Untested | Yes | No: Touchpad physical buttons Trackpoint Untested: MicroSD card reader | ||
ThinkPad L14 Gen1 (AMD) | 2021-04-20 | Yes | Yes | Yes | Yes | Yes | Yes | No: Fingerprint reader (No driver available) | ||
ThinkPad L15 Gen1 (AMD) | 2021-01-30 | Yes | Yes | Yes | Yes* | Untested | Yes | No: Fingerprint reader (No driver available) | iommu=soft required for UEFI≤1.13, acpi_backlight=vendor allows saving/loading backlight brightness.* Random disconnections require disabling power saving in iwlmvm. | |
ThinkPad L15 Gen2 (AMD) | 2021-07-20 | Yes | Yes | Yes | Yes | Yes | Yes | |||
ThinkPad L14 Gen2 (AMD) | 2021-07-02 | Yes | Yes | Yes | Yes | Yes | No: IR-Camera | |||
ThinkPad L14 Gen2a (AMD) | 2021-09-06 | Yes | Yes | Yes | Yes | Yes | Partial* | *No sleep, IRQ86 and IRQ88 consume a lot of CPU. see on BBS and on reddit. |
A シリーズ
機種 | Arch Linux インストール CD バージョン |
ハードウェアのサポート | 備考 | |||||||
---|---|---|---|---|---|---|---|---|---|---|
ビデオ | サウンド | Ethernet | ワイヤレス | Bluetooth | 電源管理 | モデム | その他 | |||
Lenovo ThinkPad A485 | 2018.12 | Yes | Yes | Yes | Yes | Yes | Yes | NA | タッチパッド/トラックポイント (yes), ウェブカメラ (yes) | Laptop Mode Tools の runtime-pm モジュールを使うと bluetooth が機能しません
|
P シリーズ
機種 | Arch Linux インストール CD バージョン |
ハードウェアのサポート | 備考 | |||||||
---|---|---|---|---|---|---|---|---|---|---|
ビデオ | サウンド | Ethernet | ワイヤレス | Bluetooth | 電源管理 | モデム | その他 | |||
Lenovo ThinkPad P50 | 2016.04 | Yes | Yes | Yes | Yes | Yes | サスペンド (ハイバネートは未検証) |
NA | SD カード ウェブカメラ 指紋リーダー (libfprint-vfs0090-gitAUR[リンク切れ: パッケージが存在しません]) |
Wifi を使うにはカーネル 4.3.3 以上が必要 |
Lenovo ThinkPad P70 | 2016.04 | Yes | Yes | Yes | Yes | Yes | サスペンド (ハイバネートは未検証) |
NA | SD カード ウェブカメラ (指紋リーダー未検証) |
カーネル 4.3.3 以降で WiFi が使用可能 |
Lenovo ThinkPad P51 | Unknown | Yes | Yes | Yes | Yes | Yes | Yes | Yes (No GNSS/GPS) |
|
HDMI audio requires nvhda module |
Lenovo ThinkPad P52 | 2018.09 | Yes | Yes | Yes | Yes | Yes | サスペンド (ハイバネートは未検証) |
NA | ウェブカメラ (yes), IR カメラ (yes), タッチパッド (yes), SD カードリーダー (yes), Smartcard リーダー (yes with pcscd installed), 指紋リーダー (no) | |
Lenovo ThinkPad P1 | 2018.12 | Yes | Yes | Yes | Yes | Yes | サスペンド (ハイバネートは未検証) |
NA | ウェブカメラ (Yes), マルチモニター (yes) | |
Lenovo ThinkPad P1 (Gen 2) | 2019.09.01 | Yes | Yes | Yes | Yes | Yes | サスペンド (ハイバネートは未検証) |
NA | ウェブカメラ (not tested), マルチモニター (yes) | |
Lenovo ThinkPad P52s | 2019.02 | Yes* (See Remarks) | Yes | Yes | Yes | Yes | サスペンド (Yes), ハイバネート (Yes) | Not tested | ウェブカメラ (Yes), マルチモニター (Yes), Card リーダー (Yes), Smartcard リーダー (Yes), NFC (No, see this), 指紋リーダー (No, see this) | *Intel graphics needs to be specified in the Xorg config for Xorg to work, see Lenovo ThinkPad P52s |
Lenovo ThinkPad P53 | 2019.12 | Yes | Yes | Yes | Yes | Yes | サスペンド (ハイバネートは未検証) |
NA | ウェブカメラ (Yes), マルチモニター (Yes), Hybrid nvidia/intel (Yes), Card リーダー (Yes), Smartcard リーダー (Yes), 指紋リーダー (Yes with libfprint and current beta firmware) | Use nvidia-prime to switch between cards. External outputs are connected to the nvidia gpu. |
Lenovo ThinkPad P53s | 2019.10 | Yes | Yes | Yes | Yes | Not tested | Not tested | Not tested | ウェブカメラ (Yes), マルチモニター (Not testes), Card リーダー (Not tested), Smartcard リーダー (Not tested), 指紋リーダー (Not tested) | Trackpad is really bad compared to the Thinkpad T480. |
Lenovo ThinkPad P73 | 2020.06 | Yes | Yes | Yes | Yes | Not tested | Not tested | Not tested | ウェブカメラ (Yes), マルチモニター (No), Card リーダー (Not tested), Smartcard リーダー (Not tested), 指紋リーダー (Not tested) | |
Lenovo ThinkPad P43s | 2020.07 | Yes | Yes | Yes | Yes | Not tested | Not tested | Not tested | ウェブカメラ (Yes - both types), マルチモニター (Yes), Card リーダー (Yes), Smartcard リーダー (Not tested), 指紋リーダー (Not tested) | Also tested with Thunderbolt 3 eGPU and works well. |
Lenovo ThinkPad P15s | 2020.05 | Yes | Yes | Yes | Yes | Yes | Yes | NA | ウェブカメラ (Yes - both types), マルチモニター (Yes), Card リーダー (Yes), Smartcard リーダー (Not tested), 指紋リーダー (Not tested) | Also tested with Thunderbolt 3 dock (monitor, usb) and works well. |
Lenovo ThinkPad P17 (Gen 1) | 2020.06 | Yes | Yes | Yes | Yes | Yes | Suspend (Yes), Hibernate (Unconfirmed) | NA | ウェブカメラ (Yes, but IR not tested), マルチモニター (Yes, HDMI port and USB-C to HDMI via adapter), Card リーダー (Not tested), Smartcard リーダー (Yes), 指紋リーダー (Not tested), TrackPoint (Yes), TouchPad (Yes) | Thunderbolt 3 dock (Not tested). Graphics tested in Discrete mode only. Screen Brightness adjustment buttons may require kernel 5.1 |
|}
R シリーズ
機種 | Arch Linux インストール CD バージョン |
ハードウェアのサポート | 備考 | |||||||
---|---|---|---|---|---|---|---|---|---|---|
ビデオ | サウンド | Ethernet | ワイヤレス | Bluetooth | 電源管理 | モデム | その他 | |||
Lenovo ThinkPad R60 | - | Yes | Yes | Yes | Yes | Yes | NA | NA |
T シリーズ
機種 | Arch Linux インストール CD バージョン |
ハードウェアのサポート | 備考 | |||||||
---|---|---|---|---|---|---|---|---|---|---|
ビデオ | サウンド | Ethernet | ワイヤレス | Bluetooth | 電源管理 | モデム | その他 | |||
IBM ThinkPad T60 | - | Yes | Yes | Yes | Yes | Yes | 不明 | NA | ||
IBM ThinkPad T60p | - | Yes | Yes | Yes | Yes | Yes | 不明 | NA | ThinkFinger | |
IBM ThinkPad T61 | - | Yes | Yes | Yes | Yes | Yes | NA | NA | ||
IBM ThinkPad T61p | - | Yes | Yes | Yes | Yes | Yes | NA | NA | ||
Lenovo ThinkPad T400 | - | Yes | Yes | Yes | Yes | Yes | NA | NA | ||
Lenovo ThinkPad T400s | - | Yes | Yes | Yes | Yes | Yes | NA | NA | ||
Lenovo ThinkPad T410 | - | Yes | Yes | Yes | Yes | Yes | NA | NA | ||
Lenovo ThinkPad T420 | - | Yes | Yes | Yes | Yes | Yes | Yes | NA | カードリーダー 指紋スキャナ (動作せず) |
|
Lenovo ThinkPad T420s | - | Yes | Yes | Yes | Yes | Yes | NA | NA | カードリーダー | |
Lenovo ThinkPad T430 | - | Yes | Yes | Yes | Yes | Yes | Yes | 未検証 | ||
Lenovo ThinkPad T440p | - | Yes | Yes | Yes | Yes | Yes | NA | NA | カードリーダー | 下を参照 |
Lenovo ThinkPad T440s | - | Yes | Yes | Yes | Yes | Yes | Yes | NA | 無線の詳細については、 wiki ページを参照してください | |
Lenovo ThinkPad T450s | 2015.10.01 | Yes | Yes | Yes | Yes | Yes | 未検証 | NA | SD カードリーダー 指紋リーダー |
|
Lenovo ThinkPad T460s | - | Yes | Yes | Yes | Yes | Yes | Yes | NA | SD カードリーダー | |
Lenovo ThinkPad T25 | - | Yes | Yes | Yes | Yes | Yes | Yes | NA | SD カードリーダー 指紋スキャナ タッチスクリーン |
|
Lenovo ThinkPad T470 | - | Yes | Yes | Yes | Yes | Yes | Yes | NA | SD カードリーダー 指紋スキャナ |
|
Lenovo ThinkPad T470s | - | Yes | Yes | Yes | Yes | Yes | Yes | NA | SD カードリーダー | |
Lenovo ThinkPad T480 | 2018.07.01 | Yes | Yes | Yes | Yes | Yes | 未検証 | NA | Thunderbolt 3 (USB-C) SD カードリーダー 指紋スキャナ |
|
Lenovo ThinkPad T480s | 2018.03.01 | Yes | Yes | Yes | Yes | Yes | Yes | NA | SD カードリーダー Thunderbolt 3 (USB-C) |
|
Lenovo ThinkPad T500 | - | Yes | Yes | Yes | Yes | Yes | NA | NA | ||
Lenovo ThinkPad T520 | - | Yes | Yes | Yes | Yes | Yes | NA | NA | ||
Lenovo ThinkPad T530 | - | Yes | Yes | Yes | Yes | Yes | Yes | NA | ||
Lenovo ThinkPad T550 | - | Yes | Yes | Yes | Yes | Yes | Yes | NA | DisplayPort | |
Lenovo ThinkPad T560 | - | Yes | Yes | Yes | Yes | Yes | Yes | NA | MiniDP Nvidia GPU SD カードリーダー |
|
Lenovo ThinkPad T570 | - | Yes | Yes | Yes | Yes | 未検証 | Yes | NA | 未検証 | |
Lenovo ThinkPad T580 | 2018.5.2 | Yes | Yes | Yes | Yes | Yes | Yes | NA | SD カードリーダー 指紋リーダーは未サポート |
Linux 4.16.5 で確認 |
W シリーズ
機種 | Arch Linux インストール CD バージョン |
ハードウェアのサポート | 備考 | |||||||
---|---|---|---|---|---|---|---|---|---|---|
ビデオ | サウンド | Ethernet | ワイヤレス | Bluetooth | 電源管理 | モデム | その他 | |||
Lenovo ThinkPad W510 | - | Yes | Yes | Yes | Yes | Yes | Yes | NA | SD カード ウェブカメラ タッチスクリーン 指紋リーダー (未検証) |
2017年4月 Linux 4.10.8 で確認 |
Lenovo ThinkPad W540 | - | Yes | Yes | Yes | Yes | Yes | Yes | NA | SD カード ウェブカメラ 指紋リーダー |
2017年4月 Linux 4.10.8 で確認 |
Lenovo ThinkPad W550s | - | Yes | Yes | Yes | Yes | Yes | Yes | NA | ウェブカメラ 指紋リーダー (SD カードリーダー未検証) |
X シリーズ
機種 | Arch Linux インストール CD バージョン |
ハードウェアのサポート | 備考 | |||||||
---|---|---|---|---|---|---|---|---|---|---|
ビデオ | サウンド | Ethernet | ワイヤレス | Bluetooth | 電源管理 | モデム | その他 | |||
Lenovo ThinkPad X23 | - | Yes | Yes | NA | NA | Yes | NA | NA | ||
IBM ThinkPad X60s | - | Yes | Yes | Yes | Yes | Yes | NA | NA | ||
Lenovo ThinkPad X61 | - | Yes | Yes | Yes | Yes | Yes | 未検証 | 未検証 | SD カード | |
Lenovo ThinkPad X61s | - | Yes | Yes | Yes | Yes | Yes | Yes | NA | SD カード | |
Lenovo ThinkPad X100e | - | Yes | Yes | Yes | Yes | Yes | 未検証 | NA | SD カード ウェブカメラ |
|
Lenovo ThinkPad X200 | - | Yes | Yes | Yes | Yes | Yes | NA | NA | ||
Lenovo ThinkPad X200S | - | Yes | Yes | Yes | Yes | 未検証 | NA | 未検証 | 指紋リーダー・SD カード・ウェブカメラは未検証 | |
Lenovo ThinkPad X201 | - | Yes | Yes | Yes | Yes | Yes | Yes | 未検証 | ||
Lenovo ThinkPad X220 | - | Yes | Yes | Yes | Yes | Yes | Yes | NA | SD カード ウェブカメラ |
|
Lenovo ThinkPad X230 | - | Yes | Yes | Yes | Yes | Yes | Yes | NA | SD カード ウェブカメラ |
|
Lenovo ThinkPad X240 | - | Yes | Yes | 未検証 | Yes | Yes | Yes | NA | 指紋リーダー | 報告されている問題 |
Lenovo ThinkPad X250 | - | Yes | Yes | Yes | Yes | Yes | 未検証 | NA | 指紋リーダー | |
Lenovo ThinkPad X260 | - | Yes | Yes | Yes | Yes | Yes | 未検証 | NA | SD カード ウェブカメラ 指紋リーダー |
4.4 以降のカーネルが必要 |
Lenovo ThinkPad X270 | - | Yes | Yes | Yes | Yes | 未検証 | Yes | NA | ウェブカメラ | |
Lenovo ThinkPad X280 | - | Yes | Yes | Yes | Yes | 未検証 | Yes | NA | ウェブカメラ (Yes) | |
Lenovo ThinkPad X1 Carbon | - | Yes | Yes | Yes | Yes | プロプライエタリ | Yes | NA | ||
Lenovo ThinkPad X1 Carbon (Gen 2) | - | Yes | Yes | Yes | Yes | Yes | Yes | NA | ||
Lenovo ThinkPad X1 Carbon (Gen 3) | - | Yes | Yes | Yes | Yes | Yes | Yes | NA | ||
Lenovo ThinkPad X1 Carbon (Gen 4) | - | Yes | Yes | Yes | Yes | Yes | Yes | NA | ||
Lenovo ThinkPad X1 Carbon (Gen 5) | - | Yes | Yes | Yes | Yes | Yes | Yes | Yes | ||
Lenovo ThinkPad X1 Carbon (Gen 6) | - | Yes | Yes | Yes | Yes | Yes | Yes | Yes | ||
Lenovo ThinkPad X1 Extreme | - | Yes | Yes | Yes | Yes | Yes | Yes | NA | 指紋リーダーは未対応、Thunderbolt 端子は未検証 | グラフィックは動かすのに設定が必要 |
Lenovo ThinkPad X1 Extreme (Gen 2) | - | Yes | Yes | Yes | Yes | Yes | Yes | NA | 指紋リーダーは対応中、 Thunderbolt 端子は未検証 |
Yoga シリーズ
機種 | Arch Linux インストール CD バージョン |
ハードウェアのサポート | 備考 | |||||||
---|---|---|---|---|---|---|---|---|---|---|
ビデオ | サウンド | Ethernet | ワイヤレス | Bluetooth | 電源管理 | モデム | その他 | |||
Lenovo ThinkPad Yoga 14 | 2015 | Yes | Yes | Yes | Yes | Yes | SD card (Yes), Webcam (Yes), Touchscreen (Yes), Tablet (Partial) | The Lenovo ThinkPad Yoga 14 (20FY) is a convertible 14-inch Ultrabook developed by Lenovo in 2015. It is one of many iterations in the ThinkPad line. It's also known as P40 Yoga (type 20GR, 20GQ), S3 (20G0, 20G1) and Yoga 460 (20EM, 20EL). A hardware maintenance manual is provided online. | ||
Lenovo ThinkPad Yoga 260 | 2015 | Yes | Yes | Yes | Yes | Yes | Unknown | Yes | SD カード ウェブカメラ タッチスクリーン タブレット (部分的) 指紋リーダー (未検証) 加速度センサー (動作せず) |
カーネル4.3.3 以降で WiFi が使用可能 |
Lenovo ThinkPad Yoga 370 | 2017 | Yes | Yes | Yes | Yes | Yes | Yes | Not tested | SD card (Yes), SD card (Yes), Stylus (Yes), Fingerprint Reader (Yes), Touchscreen (Yes), Tablet mode sensor (Yes), Accelerometer (Yes) | |
Lenovo Yoga 530 | 2018 | Yes | Yes | Not tested | Yes | Not tested | Not tested | Not tested | SD card (Not tested), Webcam (Yes), Fingerprint Reader (Not tested), Touchscreen (Yes), Tablet (Partial) | Trouble with touchpad, but worked with kernel parameters "i8042.noloop i8042.nomux i8042.nopnp i8042.reset" and xf86-input-synaptics |
Lenovo Yoga 710 | 2016 | Yes | Yes | Yes | Yes | Not tested | Yes | Not tested | SD card (Yes), Webcam (Yes), Touchscreen | Everything works |
Lenovo Yoga 720 | 2018 | Yes | Yes | NA | Yes | Yes | Yes | Fingerprint (No), Touchscreen (Yes), Digitizer (Yes) | Digitizer tested in Krita on 720-13ikb | |
Lenovo Yoga S740-15IRH | 2019 | Yes | Yes | Not tested | Yes | Yes | Yes | Not tested | Fingerprint Reader (Not tested), Webcam (Yes), Microphone (Yes), SD card (No) | |
Lenovo Yoga 9 14ITL5 | 2020 | Yes | Yes | N/A | Yes | Yes | Yes | N/A | Webcam (Yes), Touchscreen (Yes), Tablet (Yes), Accelerometer (Yes), Fingerprint Reader (No) | See Lenovo Yoga 9 14ITL5 for more details. |
Lenovo Yoga 920 | 2017 | Yes | Yes | Yes | Yes | Yes | Yes | Not tested | Webcam (Yes), Fingerprint Reader (No), Touchscreen (Yes), Active Pen (Yes), Accelerometer (Yes), Automatic Keyboard and Touchpad Disable (Yes, when the screen is flipped all the way) | On KDE, Autorotation can be achieved with custom scripts, the hardware supports it. Not sure whether automatic tablet mode like in Windows could work, would have to find sensor output. |
Lenovo Yoga c930 | 2018 | Yes | Partially (Fix needed for hinge soundbar, bottom speakers not working. Microphone not working) | N/A | Yes | Not tested | Yes | N/A | Webcam (Yes), Touchscreen | See https://github.com/droserasprout/lenovo-yoga-c930-linux for more information and fixes. |
Lenovo Yoga Slim 7 (AMD Ryzen 5) | 2020 | Yes | Yes | N/A | Yes | Yes | Yes, but no Suspend to RAM | N/A | Webcam (Yes), SD card (Yes), Fingerprint Reader (Unknown) | See https://github.com/jrandiny/yoga-slim7-ubuntu for more information and fixes. |
Lenovo Yoga Slim 7 Pro (AMD Ryzen 7) | 2021 | Yes* (See remarks) | Yes | N/A | Yes | Yes | Yes* (See Remarks) | N/A | Webcam (Yes) | BIOS version G7CN16WW (and possibly above) needed for S3 sleep to work. |
Lenovo Yoga Slim 7i Pro (Intel Core i7) | 2021-10-01 | Yes* | Yes* | N/A | Yes | Yes | Not tested | N/A | Webcam (Yes), Keyboard (Yes*) | Panel Self Refresh needs to be disabled with i915.enable_psr=0 to prevent screen flickering. sof-firmware is required for the sound to work. Keyboard needs i8042.direct and i8042.dumbkbd kernel parameters.
|
Lenovo Yoga Slim 9 14ITL5 | 2021-04-11 | Yes | No | N/A | Yes | Yes | Yes | N/A | Webcam (Yes), Touchscreen (Yes) | Touchpad requires additional work, keyboard needs special kernel parameter. |
Lenovo Yoga C740 | 2021-01-17 | Yes | Yes* | N/A | Yes | Yes | Yes | N/A | Webcam (Yes), Fingerprint Reader (No) | *sof-firmware is required for microphone support. Maximum charge can be limited with the ideapad_acpi driver. See #Battery Conservation Mode on IdeaPad laptops |
Lenovo Yoga Duet 7 13IML05 | 2020-05-27 | Yes | No | N/A | Yes | Yes | Yes | N/A | Webcam (Yes), Touchscreen (Yes), Tablet (Yes), Accelerometer (Yes), Detachable keyboard/trackpad (Not when detached), SD Card (Not tested). | No fix for sound at present. Detachable keyboard/trackpad will connect via Bluetooth, but no events are received. |
Lenovo Yoga 9i 15IMH5 | 2021 | Yes | Yes | N/A | Yes | Yes | Yes | N/A | Webcam (Yes), Fingerprint Reader (No), Touchscreen (Yes), Touchpad (Yes) | Issue with bottom speakers. Touchscreen on Xorg not well handeled with finger, with stylus it's OK, works perfectly with Wayland. |
Helix シリーズ
機種 | Arch Linux インストール CD バージョン |
ハードウェアのサポート | 備考 | |||||||
---|---|---|---|---|---|---|---|---|---|---|
ビデオ | サウンド | Ethernet | ワイヤレス | Bluetooth | 電源管理 | モデム | その他 | |||
Lenovo ThinkPad Helix | - | Yes | Yes | NA | Yes | Yes | NA | タッチスクリーン (yes), ペン (yes), センサー (yes) | ||
Lenovo ThinkPad Helix 2nd Gen | 2018.04.01 (USB) | Yes | Yes | NA | Yes | 未検証 | [最新 BIOS Yes] | タッチスクリーン (yes), ペン (未検証), センサー (カーネルにパッチ必要) | suspend-to-idle ("freeze") のみサポート |
Lenovo
バッテリー節約モード
バッテリー節約モードは、バッテリー寿命を延ばすためにバッテリーの充電を容量の 55 〜 60% に制限する機能で、ラップトップが外部電源で動作することが多い場合に最も役立ちます。これは、IdeaPad や Thinkbook シリーズなどの多くの Lenovo ラップトップで動作します。ラップトップがサポートされているかどうかを確認するには、Windows 上の Vantage アプリでバッテリー節約モードを設定してみてください。Windows で動作する場合は、次の方法で Linux で有効または無効にできます。
- まず、
lsmod
コマンドを使用して、ideapad_laptop
カーネルモジュールがロードされていることを確認します。 - 有効になっている場合は、root として次のコマンドを実行してバッテリー節約モードを有効にします:
# echo 1 > /sys/bus/platform/drivers/ideapad_acpi/VPC2004:00/conservation_mode
0
を指定すると、この機能が無効になります。
GNOME を使用する場合は、Ideapad 拡張機能をインストールすると、簡単に切り替えることができます (sudo を設定することも忘れないでください)
特殊ボタン
一部の特別なボタンはキーコード数の制限により X サーバーでサポートされておらず、Wayland でも認識されない可能性があります。以下に最も一般的な 2 つを示しますが、他にも発生する可能性があります。
キーの組み合わせ | スキャンコード | キーコード |
---|---|---|
Fn+F11 |
0x49 |
374 KEY_KEYBOARD
|
Fn+F12 |
0x45 |
364 KEY_FAVORITES
|
次の設定を作成することで、サポートされていないキーを再マップして、X で検出してマップできるようにすることができます。
/etc/udev/hwdb.d/90-thinkpad-keyboard.hwdb
evdev:name:ThinkPad Extra Buttons:dmi:bvn*:bvr*:bd*:svnLENOVO*:pn* KEYBOARD_KEY_45=prog1 KEYBOARD_KEY_49=prog2
次に、スキャンコードをキーコードにマップ#udev を使う の手順に従います。
BIOS/ファームウェアのアップデート
Lenovo は、一部のデバイス (ThinkSeries) に対して、fwupd 経由でファームウェアと BIOS のアップデートのサポートを提供します。その他のデバイスの場合、Lenovo は Windows インストーラーとしてのみアップデートを配布します。マシンに Windows をインストールせずにこれらの更新プログラムをインストールするには、次の手順を試してください。
これらの手順は Lenovo Yoga 9 14ITL5 (Phoenix BIOS) でテストされましたが、他のデバイスにも同様に適用できるはずです。
現在の BIOS とファームウェアのバージョンを確認するには、dmidecode を使用します。
# dmidecode --type bios
BIOS アップデートを実行するときは、中間バージョンをスキップしないでください。現在バージョン 1.1
を使用していて、バージョン 1.2
および 1.4
へのアップデートがある場合は、最初にアップデートを 1.2
に適用してから、順番に 1.4
までアップデートして下さい。
BIOS/ファームウェアをアップデートするには:
- Lenovo サポートページ からデバイスの ファームウェア/BIOS アップデートをダウンロードします。
- インストーラがアーカイブに圧縮されている場合、.exe ファイルが残るまで解凍してください。
- .exe ファイルから成果物を取り出すには innoextract を使ってください。
- Windows PE に従ってブート可能な USB メモリを作成し、解凍した成果物のあるディレクトリをオーバーレイとして使用する。
- デバイスを外部電源に接続する
- Windows PE イメージで再起動する
- ディレクトリを
X:
に変更する。 - インストーラーを実行します:
install.bat
(BIOS の場合) またはMEUpdate.CMD
(インテル ME ファームウェアの場合)
高度な UEFI オプション
一部の Ideapad および Legion モデルでは、より高度な UEFI オプションの一部がロックされています。ロックを解除すると便利な場合があります。高度なオプションのロックを解除できる既知の方法がいくつかあります。
EFI 変数
2022 年より前の一部のモデルでは、EFI 変数、6ACCE65D-DA35-4B39-B64B-5ED927A7DC7E-cE!
を作成し、それを 1
を使用して詳細オプションを有効にします。ユーザー空間 efivar を使用して、この変数を作成できます。
# echo 1 > param # efivar --name '6ACCE65D-DA35-4B39-B64B-5ED927A7DC7E-cE!' --write --datafile=param # rm param
実行時に EFI モジュールにパッチを適用する
現在メンテナンスされていないツール SmokelessRuntimeEFIPatcher を使用して、実行時にパッチ/導入を行うことができます。ここでいくつかのパッチが提供されています: https://github.com/SmokelessCPUv2/SREP-Community-Patches
例えば
- SmokelessRuntimeEFIPatcher の EFI バイナリをダウンロードまたはビルドし、EFI を ESP に保存します(例:
/boot/efi/efi/srep/SREP.efi
) - SREP-Community-Patches で、あなたのファームウェアに適したパッチを見つけ、そのパッチを
SREP_Config.cfg
として ESP のトップレベル・ディレクトリに保存する。 - SREP EFI バイナリを実行するための UEFI variable を作成します。
- UEFI ブートメニューで SREP ブートエントリを選択して、実行時にモンキーパッチされたファームウェアで UEFI セットアップユーティリティを実行する。
CPPC を有効にする
amd_pstate
ドライバーを使用するには、CPPC を有効にする必要があります。詳細については、CPU 周波数スケーリング#スケーリングドライバ を参照してください。
IdeaPad
機種 | Arch Linux インストール CD バージョン |
ハードウェアのサポート | 備考 | |||||||
---|---|---|---|---|---|---|---|---|---|---|
ビデオ | サウンド | Ethernet | ワイヤレス | Bluetooth | 電源管理 | モデム | その他 | |||
Lenovo IdeaPad 120S | 2018-04-26 | Yes | Yes | NA | Yes | Yes | Yes | NA | 問題なく動作 | |
Lenovo IdeaPad Flex 10 | - | Yes | NA | Yes | Yes | Yes | NA | NA | タッチスクリーン | |
Lenovo IdeaPad S10-3 | - | Yes | Yes | Yes | Yes | Yes | NA | NA | ||
Lenovo IdeaPad Yoga 900 | - | Yes | Yes | Yes | Yes | Yes | 未検証 | NA | ウェブカメラ カードリーダー |
|
Lenovo IdeaPad S400 Touch | - | Yes | Yes | Yes | Yes | Yes | 未検証 | NA | ||
Lenovo IdeaPad U430p | - | Yes | Yes | Yes | Yes | Yes | 未検証 | NA | ||
Lenovo IdeaPad Y700 | 2015.12.01 | Yes | Yes | Yes | Yes | Yes | 未検証 | NA | ||
Lenovo IdeaPad Z580 | - | Yes | Yes | Yes | Yes | Yes | Yes | NA | ||
Lenovo IdeaPad 720s | - | Yes | Yes | Yes | Yes | Yes | 未検証 | NA | 指紋リーダーは未検証ですがおそらく動作しません |
B シリーズ
機種 | Arch Linux インストール CD バージョン |
ハードウェアのサポート | 備考 | |||||||
---|---|---|---|---|---|---|---|---|---|---|
ビデオ | サウンド | Ethernet | ワイヤレス | Bluetooth | 電源管理 | モデム | その他 | |||
Lenovo B50 | - | Yes | Yes | Yes | Yes | 未検証 | 未検証 | 未検証 | ||
Lenovo B50-70 | - | Yes | Yes | Yes | Yes | Yes | 未検証 | NA | ||
Lenovo B450 | - | Yes | Yes | Yes | Yes | NA | 未検証 | NA |
K シリーズ
機種 | Arch Linux インストール CD バージョン |
ハードウェアのサポート | 備考 | |||||||
---|---|---|---|---|---|---|---|---|---|---|
ビデオ | サウンド | Ethernet | ワイヤレス | Bluetooth | 電源管理 | モデム | その他 | |||
Lenovo K450e | - | Yes | Yes | Yes | Yes | 未検証 | Yes | 未検証 |
N シリーズ
機種 | Arch Linux インストール CD バージョン |
ハードウェアのサポート | 備考 | |||||||
---|---|---|---|---|---|---|---|---|---|---|
ビデオ | サウンド | Ethernet | ワイヤレス | Bluetooth | 電源管理 | モデム | その他 | |||
Lenovo N200(300) | - | Yes | Yes | Yes | Yes | Yes | NA | NA |
S シリーズ
機種 | Arch Linux インストール CD バージョン |
ハードウェアのサポート | 備考 | |||||||
---|---|---|---|---|---|---|---|---|---|---|
ビデオ | サウンド | Ethernet | ワイヤレス | Bluetooth | 電源管理 | モデム | その他 | |||
Lenovo S21e-20 | 2015.07.01 | Yes | Yes | NA | Yes | 未検証 | Yes | NA | SD カード USB 3.0 タッチパッド HDMI 出力 (未検証) |
U シリーズ
機種 | Arch Linux インストール CD バージョン |
ハードウェアのサポート | 備考 | |||||||
---|---|---|---|---|---|---|---|---|---|---|
ビデオ | サウンド | Ethernet | ワイヤレス | Bluetooth | 電源管理 | モデム | その他 | |||
Lenovo U31-70 | 2015.10.01 | Yes | Yes | Yes | Yes | Yes | Yes | NA | SD カード USB 3.0 HDMI 出力 タッチパッド ウェブカメラ |
V シリーズ
機種 | Arch Linux インストール CD バージョン |
ハードウェアのサポート | 備考 | |||||||
---|---|---|---|---|---|---|---|---|---|---|
ビデオ | サウンド | Ethernet | ワイヤレス | Bluetooth | 電源管理 | モデム | その他 | |||
Lenovo V110-15ISK | - | Yes | Yes | Yes | Yes | 未検証 | Yes | NA | SD カード (未検証) USB 3.0 (未検証) HDMI 出力 (未検証) タッチパッド ウェブカメラ |
|
Lenovo V330-15IKB | 2018.10.01 | Yes | Yes | Yes | Yes | 未検証 | Yes | NA | 指紋リーダー (動作せず、Validity/Synaptics 06cb:0081 のドライバーは存在しません), タッチパッド (Yes), ウェブカメラ (Yes) |
Y シリーズ
機種 | Arch Linux インストール CD バージョン |
ハードウェアのサポート | 備考 | |||||||
---|---|---|---|---|---|---|---|---|---|---|
ビデオ | サウンド | Ethernet | ワイヤレス | Bluetooth | 電源管理 | モデム | その他 | |||
Lenovo Legion Y520 | 2018.11.01 | Yes | Yes | Yes | Yes | Yes | Yes | Yes | SD カード (未動作), ウェブカメラ (Yes), USB & USB 3.0 (Yes), HDMI (Yes), USB-C (未検証), タッチパッド (Yes), NVMe M.2 SSD (Yes), GeForce GTX 1050 Ti (Yes) | 2018年12月 Linux 4.19.12 で確認。BIOS で SATA の設定を RAID から AHCI に変更しないと SSD が認識せず。 |
Lenovo Legion Y520 | ??? | Yes | Yes | Yes | Yes | Yes | Yes | Yes | SD カード (未動作), ウェブカメラ (Yes), USB & USB 3.0 (Yes), HDMI (Yes), USB-C (未検証), タッチパッド (Yes), NVMe M.2 SSD (Yes), GeForce GTX 1050 (Yes) | 2019年6月 Linux 5.1.5 で確認。BIOS で SATA の設定を RAID から AHCI に変更しないと SSD が認識せず。CPU の制約が存在。参照: [2] |
Special Notes (*):
Lenovo U31-70
Wireless needs linux >= 4.3 and latest linux-firmware, both packages are currently in testing. Copy one of the firmware blobs eeprom_ar6320_2p1_NFA345i.bin
or eeprom_ar6320_2p1_NFA345i_highTX.bin
from the windows driver to /usr/lib/firmware/ath10k/QCA6174/hw2.1/board-pci-168c:0041:17aa:3545.bin
.
Wireless with firmware blobs from windows driver may no longer work on linux >= 4.4. Download firmware blob https://github.com/kvalo/ath10k-firmware/blob/f428f53b36b144971c9c4c3d2ebd5fa8cae86c89/QCA6174/hw2.1/board-2.bin and copy it to /usr/lib/firmware/ath10k/QCA6174/hw2.1/board-2.bin
. Tested with linux 4.4.5-1 and linux-firmware 20160113.40e9ae8-1nu
With packages linux 4.6.1-2 and linux-firmware 20160516.80d463b-1 being in stable, wireless works without any additional steps needed.
Lenovo B50-70
- UEFI:
- to be able to disable Secure Boot (necessary for dual boot, not needed for Linux only), you have to switch from "UEFI first" to "UEFI only" (or something like this) in UEFI setup menu; the Secure Boot option appears then on the Security tab
- after UEFI update having Linux and Windows installed, the Linux bootloader ceased to be the default one, UEFI started to load Windows by default and it was impossible to select the Linux one in the UEFI boot menu and in the UEFI setup - reinstalling the bootloader helped; having no access to a boot media that supports UEFI, a solution might be also replacing the Windows EFI bootloader file with a Linux one temporalily, in order to be able to boot Linux from HDD
- for the UEFI update, a Windows OS is needed
- Touchpad:
- Synaptics - works after installing Synaptics drivers from repo, possible to change behaviour (like reaction for double tap) according to your wish
- Video:
- in laptops with dual video card (Intel and ATI) - detects both, Intel is active as a default, not checked if it's possible at all to switch between them
Operation with a HDD caddy
When you install an SSD in the place of the plate HDD drive and you want to have your HDD still inside the laptop, it is possible to install it in the place of the optical drive in a special "HDD caddy". The optical drive is of 9 mm height, but a 9,5 mm caddy (ultra slim) fits in the slot. A caddy with a SATA interface is needed. It is difficult to separate the front bezel from the original optical drive (and opening its case does not help, but brings a danger of making a mess in the opening mechanism; the only option is just to pull the bezel using a bit of force, but you risk breaking the latches).
While the HDD installed instead of the optical drive operates flawlessly in Windows, it was not going to work out of the box in Linux, at least in one case. The kernel tries to establish a connection with the disk, but fails to do it (SATA link down entry in /var/log/messages). The solution is to force a 1.5 Gbps transfer speed (instead of 6 Gbps) by adding a libata.force= kernel parameter. See [3] for details.
Lenovo K450e
After installing Arch Linux and booting, a single beep may be heard. To disable this beep, press F1 during startup, then change Boot Priority to 'UEFI First', as well as enabling 'CSM'.
ThinkPad X1 Carbon 3rd
Lenovo 3000 N200
- Sound:
- You may have to append
options snd_hda_intel model=lenovo
to/etc/modprobe.d/modprobe.conf
for sound to work.
- You may have to append
Lenovo ThinkPad T430
- Bluetooth (0a5c:21e6 Broadcom Corp. BCM20702 Bluetooth 4.0 [ThinkPad]) appears to be functional, even during standby or hibernation.
Lenovo ThinkPad T440p
- ClickPad: トラックパッド全体がクリックし、古いバージョンの synclient を使ってトラックパッドを無効にすると、トラックポイントが使えなくなってしまいます。この問題は新しいバージョンの xf86-input-synaptics で解決されています。
- this article と previous version を参照してください
- 代替ドライバとして、xf86-input-mtrackAUR をインストールしてください
- オーディオ:
- HDMI オーディオはデフォルトのオーディオ出力デバイスです。デフォルトの変更の詳細については、ALSA ページを参照してください。
- X100e/Mini10 のように、マスターに対してヘッドセットとスピーカー出力を別々にミュートすることが可能です。スピーカー出力をミュートすると、ヘッドセットポートの低音出力が改善されます。
- システムのスリープ解除に失敗すると、内蔵オーディオカードとの同期が取れなくなり、スピーカー/ヘッドフォンが動作しなくなることがあります。この場合、システムをスリープ状態にして、再度スリープ解除すると、オーディオ機能が回復します。
- 指紋センサーは Validity VFS5011 です。fprint で利用可能です。
- thinkpad_acpi:
- Fn-Lock を切り替えるには、Fn + Esc を押すとキーボードの LED が切り替わります。Fn の LED が点灯している間はすべての Fn 機能が意図したとおりに動作します。
- Controlling the 'glowing I' LED is apparently not possible.
- ファンコントロールは機能しないようです。
- グラフィックとビデオ:
- インテグレーテッド GPU では、ドック経由で接続されたディスプレイを着脱する際に、xrandr がクラッシュすることがあります。
- 内蔵の miniDisplayPort は I²C の問題がカーネルログに出力されることがあります。
- 大きなメディアファイルを CPU でデコードするよりも、ハードウェアビデオアクセラレーションの方が圧倒的にパフォーマンスが高いので、強く推奨します。
- BIOS はバージョン 1.14 以降にアップグレードしないでください。新しい BIOS を Bumblebee と一緒に使用するとメモリが破損します。 Bumblebee GitHub を参照してください。
- コネクティビティ:
- Bluetooth は 非常に 壊れやすいです。コントローラはほとんどの場合正常に動作しますが、スリープ時に接続が有効であった場合など、スリープ/ウェイクサイクルで完全にウェッジすることがあります。スリープ前に
bluetoothctl
でコントローラを無効にしてください。
- Bluetooth は 非常に 壊れやすいです。コントローラはほとんどの場合正常に動作しますが、スリープ時に接続が有効であった場合など、スリープ/ウェイクサイクルで完全にウェッジすることがあります。スリープ前に
Lenovo ThinkPad T560
- No automatic brightness adjusting when switching power supply battery <-> AC
- Hardware specifications of test device
- CPU: Intel CORE i7-6600U @ 2.60GHz or Intel CORE i5-6200U @ 2.30GHz or Intel CORE i5-6300U @ 2.40GHz
- GPU Primary: Intel HD 520
- GPU Secondary: Nvidia GeForce 940MX or None
- WiFi: Intel 8260
- Ethernet: Intel I219-LM
- Card reader: Realtek RTS522A
Lenovo S21e-20
- Tested with broadcom-wl-dkms 802.11 wireless driver
- Synaptics touchpad required 3 patches to linux:drivers/hid/hid-rmi.c on 2015-07-26 (bug report, kernel recipe patch). The current 4.3 kernel includes these patches. You will also need to install the xf86_64-input-synaptics package([4])
tpacpi-bat
There is an issue with tpacpi-bat not reporting the right value for the stop threshold. This seems to be related to a buggy BIOS and can not be fixed application wise.
See https://github.com/teleshoes/tpacpi-bat/issues/44
ThinkPad Edge E420s Delay with Space Bar
Solution: Update BIOS (at least 1.08).
Lenovo IdeaPad Y700
- The subwoofer does not work out of the box.
- Updating to Kernel 4.15 or later seems to fix the subwoofer.
Lenovo IdeaPad V330-14ARR
- Lenovo only provide BIOS updates as a WinX64 package. The 3.08 release has been extracted and can be installed in DOS (installation has been confirmed using freeDOS) using H2OFFT-D.EXE and is available online, ensure you have an arch install media on hand to reset your bootloader.
- The installed wireless card (atheros based) has shown itself to be troublesome with many pci errors, most caught and corrected but very occasionally the card would fail to come up on boot or drop out during use. intel-9260 works with no errors (tested with bios 3.05) intel-9560 was not initialised by the bios.
Thinkpad X260
- There seems to be a bug in the intel video driver that causes microfreezes every few minutes. This is fixed by adding i915.enable_psr=0 to kernel options.
Thinkpad T14
- In order to get sound you need to install sof-firmware
- On the AMD version, the internal microphone requires a kernel version of at least 5.8-rc7. 4-pin jack plugs work with a linux kernel of 5.7.