|
2017.12.07(四) lenovo聯想 電腦 2025.02.11(二) 手提電話 三星Samsung A16 $998.00 數碼通(堅尼地城) 2025.02.24(一) LG電視機 $1490.00 豐澤(西營盤) 2025.11.07(五) hp電腦 CORE i5 $833.00 救世軍家品店(太子) 2026.07.21(二) 蘋果滑鼠及鍵盤(A1314) $127.50 救世軍家品店(西營盤) USB: Hub-1: 1-0:1 info: hi-speed hub with single TT ports: 16 rev: 2.0 speed: 480 Mb/s lanes: 1 chip-ID: 1d6b:0002 class-ID: 0900 Device-1: 1-3:2 info: Maxxter Wireless Receiver type: keyboard,mouse driver: hid-generic,usbhid interfaces: 2 rev: 1.1 speed: 12 Mb/s lanes: 1 power: 50mA chip-ID: 248a:8566 class-ID: 0301 Device-2: 1-4:3 info: Lenovo New Calliope USB Keyboard type: keyboard,HID driver: hid-generic,usbhid interfaces: 2 rev: 2.0 speed: 1.5 Mb/s lanes: 1 power: 100mA chip-ID: 17ef:6100 class-ID: 0300 Device-3: 1-14:4 info: Realtek Bluetooth 4.2 Adapter type: bluetooth driver: btusb interfaces: 2 rev: 1.1 speed: 12 Mb/s lanes: 1 power: 500mA chip-ID: 0bda:b00a class-ID: e001 serial: <filter> Hub-2: 2-0:1 info: super-speed hub ports: 8 rev: 3.1 speed: 10 Gb/s lanes: 1 chip-ID: 1d6b:0003 class-ID: 0900 Sensors: System Temperatures: cpu: 48.0 C pch: 55.0 C mobo: N/A Fan Speeds (rpm): N/A Repos: Packages: pm: dpkg pkgs: 1877 No active apt repos in: /etc/apt/sources.list Active apt repos in: /etc/apt/sources.list.d/official-package-repositories.list 1: deb http: //packages.linuxmint.com zara main upstream import backport 2: deb http: //archive.ubuntu.com/ubuntu noble main restricted universe multiverse 3: deb http: //archive.ubuntu.com/ubuntu noble-updates main restricted universe multiverse 4: deb http: //archive.ubuntu.com/ubuntu noble-backports main restricted universe multiverse 5: deb http: //security.ubuntu.com/ubuntu/ noble-security main restricted universe multiverse Info: Memory: total: 8 GiB available: 7.62 GiB used: 1.32 GiB (17.3%) Processes: 271 Power: uptime: 10m states: freeze,mem suspend: deep wakeups: 0 hibernate: disabled Init: systemd v: 255 target: graphical (5) default: graphical Compilers: gcc: 13.3.0 Client: Unknown python3.12 client inxi: 3.3.34 |
|
Booting from the GRUB Command Line (Manual/Rescue Method)
grub> ls # Example output: (hd0) (hd0,gpt1) (hd0,gpt2) ... grub> ls (hd0,gpt2)/ # Look for the /boot directory or vmlinuz/initrd files Repeat ls (hdX,gpty)/ until you find the correct partition. Set the root partition: Once you identify the correct partition (e.g., (hd0,gpt2)), set it as the root for the boot process. grub> set root=(hd0,gpt2) Load the Linux kernel: Use the linux command to specify the kernel file. Use the Tab key for auto-completion to get the correct version name. You must also specify the root filesystem location using its device name (e.g., /dev/sda2) on the same line. grub> linux /boot/vmlinuz--<version> root=/dev/sda2 (Note: hd0,gpt2 in GRUB naming often corresponds to /dev/sda2 in Linux naming) Load the initial RAM disk (initrd): Similarly, load the initrd image, again using Tab for auto-completion. grub> initrd /boot/initrd.img-<version> Boot the system: Execute the boot command. grub> boot config-6.14.0-29-generic initrd.img.old config-6.14.0-36-generic System.map-6.14.0-29-generic config-6.14.0-37-generic System.map-6.14.0-36-generic efi System.map-6.14.0-37-generic grub vmlinuz initrd.img vmlinuz-6.14.0-29-generic initrd.img-6.14.0-29-generic vmlinuz-6.14.0-36-generic initrd.img-6.14.0-36-generic vmlinuz-6.14.0-37-generic initrd.img-6.14.0-37-generic vmlinuz.old |
👆回頂