Skip to content

Instantly share code, notes, and snippets.

View Crazycurly's full-sized avatar

Sam Crazycurly

View GitHub Profile

ROG Zephyrus G16 (2025, GU605CX) Linux Installation Notes and Troubleshooting

GU605CX-0028E285H-NBLO

  • Intel® Core™ Ultra 9 Processor 285H 2.9 GHz
  • NVIDIA® GeForce RTX™ 5090 Laptop GPU 24GB GDDR7
  • 64GB LPDDR5X 7467 on board (Memory Max.64GB)
  • 1TB PCIe® 4.0 NVMe™ M.2 Performance SSD

This document records the main issues and solutions encountered when installing Linux (using Ubuntu as an example) on the ASUS ROG Zephyrus G16 (2025, model GU605CX).

{
"meta": {
"theme": "elegant"
},
"awards": [
{
"title": "2019 台大電機創客松 Best AI 獎",
"date": "2019-03-31",
"summary": "參加 2019 台大電機創客松,獲得 Best AI 獎以及遠傳企業獎,題目是透過 NLP AI模型優化使用者體驗的互動式海報,設計的作品使用者只需要用手指按下想要取得資訊的海報,並對著麥克風詢問問題,稍待片刻,便能透過喇叭聽到解答,背後的技術運用了閱讀理解模型,結合 IOT 、Raspberry Pi,識別使用者的問題,抽取到海報網頁上最相近的答案。"
},
@Crazycurly
Crazycurly / installJdkTarGzUbuntu.sh
Last active September 1, 2019 04:32 — forked from filipelenfers/installJdkTarGzUbuntu.sh
Install JDK from tar.gz Ubuntu
wget https://github.com/frekele/oracle-java/releases/download/8u212-b10/jdk-8u212-linux-x64.tar.gz
#Login as root
sudo su
#create jdk directory
mkdir /opt/jdk
#uncompress, change to your file name
tar -zxf jdk-8u212-linux-x64.tar.gz -C /opt/jdk