Home
Packages
Forums
Wiki
GitLab
Security
AUR
Download
コンテンツにスキップ
メインメニュー
メインメニュー
サイドバーに移動
非表示
案内
メインページ
目次
コミュニティに貢献
最近の出来事
おまかせ表示
特別ページ
交流
ヘルプ
貢献
最近の更新
最近の議論
新しいページ
統計
リクエスト
ArchWiki
検索
検索
表示
アカウント作成
ログイン
個人用ツール
アカウント作成
ログイン
GPD Pocketのソースを表示
ページ
議論
日本語
閲覧
ソースを閲覧
履歴を表示
ツール
ツール
サイドバーに移動
非表示
操作
閲覧
ソースを閲覧
履歴を表示
全般
リンク元
関連ページの更新状況
ページ情報
表示
サイドバーに移動
非表示
←
GPD Pocket
あなたには「このページの編集」を行う権限がありません。理由は以下の通りです:
この操作は、次のグループに属する利用者のみが実行できます:
登録利用者
。
このページのソースの閲覧やコピーができます。
[[Category:ノートパソコン]] [[en:GPD Pocket]] {{Related articles start}} {{Related|GPD Win}} {{Related articles end}} こちらは [https://www.indiegogo.com/projects/gpd-pocket-7-0-umpc-laptop-ubuntu-or-win-10-os-laptop--2#/ GPD Pocket] を Arch Linux で動作させるガイドです。 == スペック == * ディスプレイ: 7インチ IPS 1920x1200 * CPU: Intel Atom X7-Z8750 * メモリ: 8GB LPDDR3-1600 * ストレージ: 128GB eMMC SSD (交換不可) * バッテリー: 7000mAH * WiFi: Broadcom 4356 802.11ac * Bluetooth: Broadcom 2045 * オーディオ: Realtek ALC5645 * 端子: 1 x USB 3 type A, 1 x MicroHDMI, 1 x USB 3 type C 1 x 3.5mm ヘッドホンジャック == インストール == 起動時にコンソールを回転するためにカーネル行に {{ic|<nowiki>fbcon=rotate:1</nowiki>}} を追加してください。USB Ethernet を使って[[インストールガイド]]に従ってインストールします。インストール時に {{ic|/etc/pacman.conf}} に以下を追加してカスタムリポジトリを追加してください: {{hc|/etc/pacman.conf|<nowiki> [gpd-pocket] SigLevel = Optional TrustAll Server = https://github.com/njkli/$repo/releases/download/$arch </nowiki>}} 以下のコマンドでカスタムカーネルとファン制御をインストールしてください: # pacman -S --force gpd-pocket-support == 設定 == === バックライトと初期 KMS === バックライトの制御には ''linux-jwrdegoede'' (Hans) カーネルに含まれている ''pwm_lpss'' と ''pwm_lpss_platform'' モジュールが必要です。4.14 までの標準カーネルには含まれていません。Hans カーネルは gpd-pocket-support パッケージの依存パッケージとしてインストールされます。 起動の初期段階で [[Kernel_Mode_Setting#Early_KMS_start|KMS を起動]]する場合、上記のモジュールと一緒に ''i915'' をロードしないと、正しくロードされないので注意してください。 === 電源とファン === [[TLP]] をインストールして、{{ic|/etc/default/tlp}} の以下の行を編集してください: {{hc|/etc/default/tlp|<nowiki> ... DISK_DEVICES="mmcblk0" DISK_IOSCHED="deadline" ... </nowiki>}} 以下のコマンドでファンの設定をコピーして設定をアンコメントしてください: # cp /etc/default/gpd-fan.example /etc/default/gpd-fan === WiFi === {{Note|以下の設定は [https://github.com/njkli/gpd-pocket/tree/master/gpd-pocket-support gpd-pocket-support] パッケージに含まれています。}} [https://github.com/cawilliamson/ansible-gpdpocket/tree/master/roles/common/files こちら] から {{ic|brcmfmac4356-pcie.txt}} と {{ic|brcmfmac4356-pcie.bin}} をダウンロードして {{ic|/lib/firmware/brcm/}} にコピーしてください。そして以下のコマンドを実行: # modprobe -r brcmfmac # modprobe brcmfmac {{Note|起動時に以下のエラーが発生する場合: brcmfmac: brcmf_chip_recognition: chip backplane type 15 is not supported brcmfmac: brcmf_pcie_probe: failed 14e4:43ec {{Pkg|broadcom-wl-dkms}} をインストールしてみてください。}} === Bluetooth === bluetooth をロードするには btusb モジュールを有効にします: {{hc|/etc/modules-load.d/btusb.conf|<nowiki> btusb </nowiki>}} === Xorg === {{ic|/etc/X11/xorg.conf.d/20-intel.conf}} を作成してグラフィックを設定: {{hc|/etc/X11/xorg.conf.d/20-intel.conf|<nowiki> Section "Device" Identifier "Intel Graphics" Driver "intel" Option "AccelMethod" "sna" Option "TearFree" "true" Option "DRI" "3" EndSection </nowiki>}} {{ic|/etc/X11/xorg.conf.d/40-monior.conf}} を作成してモニターを回転: {{hc|/etc/X11/xorg.conf.d/40-monior.conf|<nowiki> Section "Monitor" Identifier "DSI1" Option "Rotate" "right" EndSection </nowiki>}} {{ic|/etc/X11/xorg.conf.d/99-touchscreen.conf}} を作成してタッチスクリーンを回転: {{hc|/etc/X11/xorg.conf.d/99-touchscreen.conf|<nowiki> Section "InputClass" Identifier "calibration" MatchProduct "Goodix Capacitive TouchScreen" Option "TransformationMatrix" "0 1 0 -1 0 1 0 0 1" EndSection </nowiki>}} もしくは [https://github.com/nexus511/gpd-ubuntu-packages/tree/master/packages/gpdpocket-xorg/files/config こちら] のファイルをコピーして使うこともできます。 === マウススクロールのエミュレーション === 右クリックを押しながらのスクロールは {{ic|/etc/X11/xorg.conf.d/80-trackpoint.conf}} で設定できます: {{hc|/etc/X11/xorg.conf.d/80-trackpoint.conf|<nowiki> Section "InputClass" Identifier "GPD trackpoint" MatchProduct "SINO WEALTH Gaming Keyboard" MatchIsPointer "on" Driver "libinput" Option "MiddleEmulation" "1" Option "ScrollButton" "3" Option "ScrollMethod" "button" EndSection </nowiki>}} === サウンド === [https://github.com/nexus511/gpd-ubuntu-packages/tree/master/packages/gpdpocket-audio/files こちら] から {{ic|chtrt5645.conf}} と {{ic|HiFi.conf}} をダウンロードして {{ic|/usr/share/alsa/ucm/chtrt5645/}} にコピーしてください。そして {{ic|/etc/pulse/default.pa}} に以下の行を追加: {{hc|/etc/pulse/default.pa|<nowiki> set-card-profile alsa_card.platform-cht-bsw-rt5645 HiFi set-default-sink alsa_output.platform-cht-bsw-rt5645.HiFi__hw_chtrt5645_0__sink set-sink-port alsa_output.platform-cht-bsw-rt5645.HiFi__hw_chtrt5645_0__sink [Out] Speaker </nowiki>}} {{ic|/etc/pulse/daemon.conf}} を編集して realtime_scheduleing をオフにしてください: {{ic|<nowiki>realtime-scheduling = no</nowiki>}}。 === DPI === [[HiDPI]] を参照してください。 === タッチスクリーンのジェスチャ === [[touchegg]] をインストールして [https://github.com/nexus511/gpd-ubuntu-packages/tree/master/packages/gpdpocket-touchegg-config/files こちら] から設定ファイルをダウンロードしてパーミッションを設定してください: # cp touchegg.conf /usr/share/touchegg/ # chmod 0644 /usr/share/touchegg/touchegg/touchegg.conf # cp 01_touchegg /etc/X11/xinit/xinitrc.d/ # chmod 0755 /etc/X11/xinit/xinitrc.d/01_touchegg === GNOME Wayland / GDM === {{ic|~/.config/monitors.xml}} を編集してください (存在しない場合は作成してください): {{hc|~/.config/monitors.xml|<nowiki> <monitors version="2"> <configuration> <logicalmonitor> <x>0</x> <y>0</y> <scale>2</scale> <primary>yes</primary> <transform> <rotation>right</rotation> <flipped>no</flipped> </transform> <monitor> <monitorspec> <connector>DSI-1</connector> <vendor>unknown</vendor> <product>unknown</product> <serial>unknown</serial> </monitorspec> <mode> <width>1200</width> <height>1920</height> <rate>60.384620666503906</rate> </mode> </monitor> </logicalmonitor> </configuration> </monitors> </nowiki>}} 上記の設定で向き ({{ic|<rotation>right</rotation>}}) とスケールファクタ ({{ic|<scale>2</scale>}}) が設定されます。スケールについては [[HiDPI#GNOME]] を参照してください。 [[GDM]] を使用する場合、上記の {{ic|~/.config/monitors.xml}} を {{ic|/var/lib/gdm/.config/monitors.xml}} にコピーすることで向きが正しく設定されます。 == 既知の問題 == 標準の Arch カーネルではバッテリーの状態やディスプレイの輝度制御が機能しません。[http://hansdegoede.livejournal.com/17445.html Hans Kernel] を使ってください。Wifi はカーネル 4.12 から、Bluetooth はカーネル 4.14 から標準カーネルで動作するようになっています。 == 参照 == * https://github.com/njkli/gpd-pocket/ * https://github.com/cawilliamson/ansible-gpdpocket/ * https://github.com/nexus511/gpd-ubuntu-packages * https://www.reddit.com/r/GPDPocket/comments/6rszbo/project_linux_installer_for_gpd_pocket * http://hansdegoede.livejournal.com/
このページで使用されているテンプレート:
テンプレート:AUR
(
ソースを閲覧
)
テンプレート:Bc
(
ソースを閲覧
)
テンプレート:Hc
(
ソースを閲覧
)
テンプレート:Ic
(
ソースを閲覧
)
テンプレート:META Related articles start
(
ソースを閲覧
)
テンプレート:Note
(
ソースを閲覧
)
テンプレート:Related
(
ソースを閲覧
)
テンプレート:Related articles end
(
ソースを閲覧
)
テンプレート:Related articles start
(
ソースを閲覧
)
GPD Pocket
に戻る。
検索
検索
GPD Pocketのソースを表示
話題を追加