{"id":449,"date":"2021-01-03T18:54:56","date_gmt":"2021-01-03T23:54:56","guid":{"rendered":"https:\/\/www.mgreene.org\/?p=449"},"modified":"2021-01-11T18:47:24","modified_gmt":"2021-01-11T23:47:24","slug":"nuc7pjyh-installing-gentoo","status":"publish","type":"post","link":"https:\/\/www.mgreene.org\/?p=449","title":{"rendered":"NUC7PJYH:  Installing Gentoo"},"content":{"rendered":"<h2>Start<\/h2>\n<p>This project was a real rocky start. I was having a hard time booting off the USB and more trouble with a USB keyboard attached. However, when I could get the unit to boot, the chroot worked and I could compile. I was to the point think the unit was bad, so I stopped the install and started checking the problem by removing external hardware from the board. I was down to the RAM sticks, so I reseated both sticks, but as much compiling I had done on the unit, I would have expected a RAM issue show during heavy compiling.<\/p>\n<p>As a last effort, that should have been an earlier effort, <em><strong>I updated the BIOS\/UEFI<\/strong><\/em>. The unit had a 10\/15\/2019, version 1510. I had the same problem with the Asrock board, until I updated the firmware, it did not play nice. Now the unit shows the SATA drive as a possible boot option in the UEFI shell.<\/p>\n<p>No way I am going over the install of Gentoo, but here are a couple references:<\/p>\n<ul>\n<li><a href=\"https:\/\/wiki.gentoo.org\/wiki\/Handbook:AMD64\" target=\"_blank\" rel=\"noopener\">Gentoo install handbook<\/a><\/li>\n<li><a href=\"https:\/\/youtu.be\/6yxJoMa05ZM\" target=\"_blank\" rel=\"noopener\">A video that should show a full installation of Gentoo<\/a><\/li>\n<\/ul>\n<p>However, I can throw up a couple tips from years of installing Gentoo.<\/p>\n<h2>My Gentoo Install Tips<\/h2>\n<ul>\n<li><span style=\"text-decoration: underline;\">Use the Minimal Install CD<\/span>\u00a0 Not sure if there is a LiveDVD, but use the current <a href=\"https:\/\/www.gentoo.org\/downloads\/\" target=\"_blank\" rel=\"noopener\">minimal<\/a> because it is updated. Download the iso and <a href=\"https:\/\/wiki.gentoo.org\/wiki\/LiveUSB\" target=\"_blank\" rel=\"noopener\">burn it to a USB<\/a>.\u00a0<\/li>\n<li>Connect the system you are installing to via ethernet cable. After booting with the above USB, do the following:<\/li>\n<\/ul>\n<table class=\" aligncenter\" style=\"width: 86.2595%; border-collapse: collapse; height: 209px;\">\n<tbody>\n<tr style=\"height: 37px;\">\n<td style=\"width: 100%; height: 37px;\">1. use passwd to give the install system a root password<\/td>\n<\/tr>\n<tr style=\"height: 61px;\">\n<td style=\"width: 100%; height: 61px;\">2. edit \/etc\/ssh\/sshd_config to PasswordAuthentication yes (default is no) and PermitRootLogin yes (default is commented out and prohibit-password). Save the file.<\/td>\n<\/tr>\n<tr style=\"height: 37px;\">\n<td style=\"width: 100%; height: 37px;\">3. run \/etc\/init.d\/ sshd start<\/td>\n<\/tr>\n<tr style=\"height: 37px;\">\n<td style=\"width: 100%; height: 37px;\">4. do &#8216;ip a&#8217; to get the install machine&#8217;s IP address<\/td>\n<\/tr>\n<tr style=\"height: 37px;\">\n<td style=\"width: 100%; height: 37px;\">5. now you should be able to ssh and do the install from your main system.<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>\u00a0<\/p>\n<ul>\n<li>Once the install USB loads and I can ssh into the system, it is the drive configuration. I do that in next post, but for reference I &#8216;mkdir \/xxx&#8217; on the running install system and mount all my partitions. Then I run the script below which is in the root of all my Gentoo systems. With that done, all that is left is a &#8216;chroot \/xxx \/bin\/bash&#8217; and then &#8216;source \/etc\/profile&#8217;<\/li>\n<\/ul>\n<pre>#!\/bin\/bash<br \/><br \/>mount --types proc \/proc \/xxx\/proc<br \/>mount --rbind \/sys \/xxx\/sys<br \/>mount --make-rslave \/xxx\/sys<br \/>mount --rbind \/dev \/xxx\/dev<br \/>mount --make-rslave \/xxx\/dev<\/pre>\n<h2>Internals<\/h2>\n<p><strong>lspci<\/strong><\/p>\n<p><code>00:00.0 Host bridge: Intel Corporation Gemini Lake Host Bridge (rev 03)<br \/>00:02.0 VGA compatible controller: Intel Corporation UHD Graphics 605 (rev 03)<br \/>00:0c.0 Network controller: Intel Corporation Device 31dc (rev 03)<br \/>00:0e.0 Audio device: Intel Corporation Celeron\/Pentium Silver Processor High Definition Audio (rev 03)<br \/>00:0f.0 Communication controller: Intel Corporation Celeron\/Pentium Silver Processor Trusted Execution Engine Interface (rev 03)<br \/>00:12.0 SATA controller: Intel Corporation Device 31e3 (rev 03)<br \/>00:13.0 PCI bridge: Intel Corporation Gemini Lake PCI Express Root Port (rev f3)<br \/>00:13.2 PCI bridge: Intel Corporation Gemini Lake PCI Express Root Port (rev f3)<br \/>00:15.0 USB controller: Intel Corporation Device 31a8 (rev 03)<br \/>00:1c.0 SD Host controller: Intel Corporation Celeron\/Pentium Silver Processor SDA Standard Compliant SD Host Controller (rev 03)<br \/>00:1f.0 ISA bridge: Intel Corporation Device 31e8 (rev 03)<br \/>00:1f.1 SMBus: Intel Corporation Celeron\/Pentium Silver Processor Gaussian Mixture Model (rev 03)<br \/>01:00.0 Unassigned class [ff00]: Realtek Semiconductor Co., Ltd. RTS5229 PCI Express Card Reader (rev 01)<br \/>02:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111\/8168\/8411 PCI Express Gigabit Ethernet Controller (rev 15) <\/code><\/p>\n<p><strong>lsusb<\/strong><\/p>\n<p><code>Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub<br \/>Bus 001 Device 004: ID 8087:0aaa Intel Corp. Bluetooth 9460\/9560 Jefferson Peak (JfP)<br \/>Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub<\/code><\/p>\n<p><strong>Install CD boot inside chroot: lshw<\/strong><\/p>\n\n\n<pre class=\"wp-block-code\"><code>livecd                      \n    description: Computer\n    product: NUC7PJYH\n    vendor: Intel(R) Client Systems\n    version: J67992-404\n    serial: G6JY020001Q9\n    width: 4294967295 bits\n    capabilities: smbios-3.1 dmi-3.1 smp vsyscall32\n    configuration: boot=normal family=JY uuid=DBC56638-F377-2C29-5B8C-1C697A64A2F2\n  *-core\n       description: Motherboard\n       product: NUC7JYB\n       vendor: Intel Corporation\n       physical id: 0\n       version: J67969-404\n       serial: GEJY01400BA8\n       slot: Default string\n     *-firmware\n          description: BIOS\n          vendor: Intel Corp.\n          physical id: 0\n          version: JYGLKCPX.86A.0053.2019.1015.1510\n          date: 10\/15\/2019\n          size: 64KiB\n          capacity: 6592KiB\n          capabilities: pci upgrade shadowing cdboot bootselect socketedrom edd int13floppy1200 int13floppy720 int13floppy2880 int5printscreen int14serial int17printer acpi usb biosbootspecification uefi\n     *-memory\n          description: System Memory\n          physical id: 18\n          slot: System board or motherboard\n          size: 8GiB\n        *-bank:0\n             description: SODIMM DDR4 Synchronous 2400 MHz (0.4 ns)\n             product: CT4G4SFS824A.C8FE\n             vendor: Crucial\n             physical id: 0\n             serial: 22982412\n             slot: SODIMM1\n             size: 4GiB\n             width: 64 bits\n             clock: 2400MHz (0.4ns)\n        *-bank:1\n             description: SODIMM DDR4 Synchronous 2400 MHz (0.4 ns)\n             product: CT4G4SFS824A.C8FE\n             vendor: Crucial\n             physical id: 1\n             serial: 22990315\n             slot: SODIMM2\n             size: 4GiB\n             width: 64 bits\n             clock: 2400MHz (0.4ns)\n     *-cache:0\n          description: L1 cache\n          physical id: 24\n          slot: L\n          size: 224KiB\n          capacity: 224KiB\n          capabilities: synchronous internal write-back\n          configuration: level=1\n     *-cache:1\n          description: L2 cache\n          physical id: 25\n          slot: e\n          size: 4MiB\n          capacity: 4MiB\n          capabilities: synchronous internal write-back unified\n          configuration: level=2\n     *-cpu\n          description: CPU\n          product: Intel(R) Pentium(R) Silver J5005 CPU @ 1.50GHz\n          vendor: Intel Corp.\n          physical id: 26\n          bus info: cpu@0\n          version: Intel(R) Pentium(R) Silver J5005 CPU @ 1.50GHz\n          slot: SOCKET 0\n          size: 2696MHz\n          capacity: 2800MHz\n          width: 64 bits\n          clock: 100MHz\n          capabilities: x86-64 fpu fpu_exception wp vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 sdbg cx16 xtpr pdcm sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave rdrand lahf_lm 3dnowprefetch cpuid_fault cat_l2 pti cdp_l2 ssbd ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust smep erms mpx rdt_a rdseed smap clflushopt intel_pt sha_ni xsaveopt xsavec xgetbv1 xsaves dtherm ida arat pln pts umip rdpid md_clear arch_capabilities cpufreq\n          configuration: cores=4 enabledcores=4 threads=4\n     *-pci\n          description: Host bridge\n          product: Gemini Lake Host Bridge\n          vendor: Intel Corporation\n          physical id: 100\n          bus info: pci@0000:00:00.0\n          version: 03\n          width: 32 bits\n          clock: 33MHz\n        *-display UNCLAIMED\n             description: VGA compatible controller\n             product: UHD Graphics 605\n             vendor: Intel Corporation\n             physical id: 2\n             bus info: pci@0000:00:02.0\n             version: 03\n             width: 64 bits\n             clock: 33MHz\n             capabilities: pciexpress msi pm vga_controller bus_master cap_list\n             configuration: latency=0\n             resources: memory:a0000000-a0ffffff memory:90000000-9fffffff ioport:f000(size=64) memory:c0000-dffff\n        *-network\n             description: Wireless interface\n             product: Intel Corporation\n             vendor: Intel Corporation\n             physical id: c\n             bus info: pci@0000:00:0c.0\n             logical name: wlo2\n             version: 03\n             serial: f8:e4:e3:30:45:08\n             width: 64 bits\n             clock: 33MHz\n             capabilities: pm msi pciexpress msix bus_master cap_list ethernet physical wireless\n             configuration: broadcast=yes driver=iwlwifi driverversion=5.4.80-gentoo-r1-x86_64 firmware=46.4d093a30.0 latency=0 link=no multicast=yes wireless=IEEE 802.11\n             resources: irq:44 memory:a1314000-a1317fff\n        *-multimedia\n             description: Audio device\n             product: Celeron\/Pentium Silver Processor High Definition Audio\n             vendor: Intel Corporation\n             physical id: e\n             bus info: pci@0000:00:0e.0\n             version: 03\n             width: 64 bits\n             clock: 33MHz\n             capabilities: pm msi pciexpress bus_master cap_list\n             configuration: driver=snd_hda_intel latency=0\n             resources: irq:126 memory:a1310000-a1313fff memory:a1000000-a10fffff\n        *-communication UNCLAIMED\n             description: Communication controller\n             product: Celeron\/Pentium Silver Processor Trusted Execution Engine Interface\n             vendor: Intel Corporation\n             physical id: f\n             bus info: pci@0000:00:0f.0\n             version: 03\n             width: 64 bits\n             clock: 33MHz\n             capabilities: pm msi bus_master cap_list\n             configuration: latency=0\n             resources: memory:a131f000-a131ffff\n        *-storage\n             description: SATA controller\n             product: Intel Corporation\n             vendor: Intel Corporation\n             physical id: 12\n             bus info: pci@0000:00:12.0\n             version: 03\n             width: 32 bits\n             clock: 66MHz\n             capabilities: storage msi pm ahci_1.0 bus_master cap_list\n             configuration: driver=ahci latency=0\n             resources: irq:122 memory:a1318000-a1319fff memory:a131e000-a131e0ff ioport:f090(size=8) ioport:f080(size=4) ioport:f060(size=32) memory:a131d000-a131d7ff\n        *-pci:0\n             description: PCI bridge\n             product: Gemini Lake PCI Express Root Port\n             vendor: Intel Corporation\n             physical id: 13\n             bus info: pci@0000:00:13.0\n             version: f3\n             width: 32 bits\n             clock: 33MHz\n             capabilities: pci pciexpress msi pm normal_decode bus_master cap_list\n             configuration: driver=pcieport\n             resources: irq:120 memory:a1200000-a12fffff\n           *-generic\n                description: Unassigned class\n                product: RTS5229 PCI Express Card Reader\n                vendor: Realtek Semiconductor Co., Ltd.\n                physical id: 0\n                bus info: pci@0000:01:00.0\n                version: 01\n                width: 32 bits\n                clock: 33MHz\n                capabilities: pm msi pciexpress bus_master cap_list\n                configuration: driver=rtsx_pci latency=0\n                resources: irq:125 memory:a1200000-a1200fff\n        *-pci:1\n             description: PCI bridge\n             product: Gemini Lake PCI Express Root Port\n             vendor: Intel Corporation\n             physical id: 13.2\n             bus info: pci@0000:00:13.2\n             version: f3\n             width: 32 bits\n             clock: 33MHz\n             capabilities: pci pciexpress msi pm normal_decode bus_master cap_list\n             configuration: driver=pcieport\n             resources: irq:121 ioport:e000(size=4096) memory:a1100000-a11fffff\n           *-network\n                description: Ethernet interface\n                product: RTL8111\/8168\/8411 PCI Express Gigabit Ethernet Controller\n                vendor: Realtek Semiconductor Co., Ltd.\n                physical id: 0\n                bus info: pci@0000:02:00.0\n                logical name: eno1\n                version: 15\n                serial: 1c:69:7a:64:a2:f2\n                size: 1Gbit\/s\n                capacity: 1Gbit\/s\n                width: 64 bits\n                clock: 33MHz\n                capabilities: pm msi pciexpress msix bus_master cap_list ethernet physical tp mii 10bt 10bt-fd 100bt 100bt-fd 1000bt-fd autonegotiation\n                configuration: autonegotiation=on broadcast=yes driver=r8169 duplex=full firmware=rtl8168h-2_0.0.2 02\/26\/15 ip=192.168.1.149 latency=0 link=yes multicast=yes port=MII speed=1Gbit\/s\n                resources: irq:20 ioport:e000(size=256) memory:a1104000-a1104fff memory:a1100000-a1103fff\n        *-usb\n             description: USB controller\n             product: Intel Corporation\n             vendor: Intel Corporation\n             physical id: 15\n             bus info: pci@0000:00:15.0\n             version: 03\n             width: 64 bits\n             clock: 33MHz\n             capabilities: pm msi xhci bus_master cap_list\n             configuration: driver=xhci_hcd latency=0\n             resources: irq:123 memory:a1300000-a130ffff\n           *-usbhost:0\n                product: xHCI Host Controller\n                vendor: Linux 5.4.80-gentoo-r1-x86_64 xhci-hcd\n                physical id: 0\n                bus info: usb@1\n                logical name: usb1\n                version: 5.04\n                capabilities: usb-2.00\n                configuration: driver=hub slots=9 speed=480Mbit\/s\n              *-usb:0\n                   description: Mass storage device\n                   product: Cruzer Glide\n                   vendor: SanDisk\n                   physical id: 1\n                   bus info: usb@1:1\n                   version: 1.27\n                   serial: 4C530001270803117175\n                   capabilities: usb-2.00 scsi\n                   configuration: driver=usb-storage maxpower=200mA speed=480Mbit\/s\n              *-usb:1\n                   description: Keyboard\n                   product: 2.4G Receiver\n                   vendor: Compx\n                   physical id: 2\n                   bus info: usb@1:2\n                   version: 2.41\n                   capabilities: usb-1.10\n                   configuration: driver=usbhid maxpower=100mA speed=12Mbit\/s\n              *-usb:2 UNCLAIMED\n                   description: Bluetooth wireless interface\n                   product: Bluetooth 9460\/9560 Jefferson Peak (JfP)\n                   vendor: Intel Corp.\n                   physical id: 9\n                   bus info: usb@1:9\n                   version: 0.02\n                   capabilities: bluetooth usb-2.00\n                   configuration: maxpower=100mA speed=12Mbit\/s\n           *-usbhost:1\n                product: xHCI Host Controller\n                vendor: Linux 5.4.80-gentoo-r1-x86_64 xhci-hcd\n                physical id: 1\n                bus info: usb@2\n                logical name: usb2\n                version: 5.04\n                capabilities: usb-3.00\n                configuration: driver=hub slots=7 speed=5000Mbit\/s\n        *-generic\n             description: SD Host controller\n             product: Celeron\/Pentium Silver Processor SDA Standard Compliant SD Host Controller\n             vendor: Intel Corporation\n             physical id: 1c\n             bus info: pci@0000:00:1c.0\n             version: 03\n             width: 64 bits\n             clock: 33MHz\n             capabilities: pm bus_master cap_list\n             configuration: driver=sdhci-pci latency=0\n             resources: irq:39 memory:a131c000-a131cfff memory:a131b000-a131bfff\n        *-isa\n             description: ISA bridge\n             product: Intel Corporation\n             vendor: Intel Corporation\n             physical id: 1f\n             bus info: pci@0000:00:1f.0\n             version: 03\n             width: 32 bits\n             clock: 33MHz\n             capabilities: isa bus_master\n             configuration: latency=0\n        *-serial\n             description: SMBus\n             product: Celeron\/Pentium Silver Processor Gaussian Mixture Model\n             vendor: Intel Corporation\n             physical id: 1f.1\n             bus info: pci@0000:00:1f.1\n             version: 03\n             width: 64 bits\n             clock: 33MHz\n             configuration: driver=i801_smbus latency=0\n             resources: irq:20 memory:a131a000-a131a0ff ioport:f040(size=32)\n  *-scsi\n       physical id: 1\n       bus info: scsi@2\n       logical name: scsi2\n       capabilities: scsi-host\n       configuration: driver=usb-storage<\/code><\/pre>\n","protected":false},"excerpt":{"rendered":"<p>Start This project was a real rocky start. I was having a hard time booting off the USB and more trouble with a USB keyboard attached. However, when I could [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_publicize_message":"","jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":true,"jetpack_social_options":{"image_generator_settings":{"template":"highway","default_image_id":0,"font":"","enabled":false},"version":2},"_links_to":"","_links_to_target":""},"categories":[12,96],"tags":[57,98,93,94,95],"class_list":["post-449","post","type-post","status-publish","format-standard","hentry","category-gentoo","category-nuc7pjyh","tag-gentoo","tag-install","tag-intel-nuc","tag-nuc-kit","tag-nuc7pjyh"],"jetpack_publicize_connections":[],"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"jetpack-related-posts":[{"id":420,"url":"https:\/\/www.mgreene.org\/?p=420","url_meta":{"origin":449,"position":0},"title":"New Toy:  Intel NUC 7 Essential Kit NUC7PJYH","author":"Mike","date":"January 1, 2021","format":false,"excerpt":"I decided to start with an older, but a little higher end than the bottom NUC. At the time Walmart had the better price. On Ebay, a used unit can be had for $40 to $100 cheaper with some already containing RAM and an SSD. There is also a link\u2026","rel":"","context":"In &quot;Gentoo&quot;","block_context":{"text":"Gentoo","link":"https:\/\/www.mgreene.org\/?cat=12"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/www.mgreene.org\/wp-content\/uploads\/2021\/01\/nuc_bottom-1.png?resize=350%2C200&ssl=1","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/www.mgreene.org\/wp-content\/uploads\/2021\/01\/nuc_bottom-1.png?resize=350%2C200&ssl=1 1x, https:\/\/i0.wp.com\/www.mgreene.org\/wp-content\/uploads\/2021\/01\/nuc_bottom-1.png?resize=525%2C300&ssl=1 1.5x, https:\/\/i0.wp.com\/www.mgreene.org\/wp-content\/uploads\/2021\/01\/nuc_bottom-1.png?resize=700%2C400&ssl=1 2x"},"classes":[]},{"id":460,"url":"https:\/\/www.mgreene.org\/?p=460","url_meta":{"origin":449,"position":1},"title":"NUC7PJYH:  Gentoo UEFI Configure","author":"Mike","date":"February 20, 2021","format":false,"excerpt":"This is no fun exercise. I did this over a year ago with my Asrock system, but of course did not record the exact steps, so I had to learn all over again. The best start is to use the Gentoo Handbook example. I used a combination of fdisk and\u2026","rel":"","context":"In &quot;Gentoo&quot;","block_context":{"text":"Gentoo","link":"https:\/\/www.mgreene.org\/?cat=12"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":290,"url":"https:\/\/www.mgreene.org\/?p=290","url_meta":{"origin":449,"position":2},"title":"New toy &#8211; ASRock J3455-ITX","author":"Mike","date":"November 29, 2018","format":false,"excerpt":"Part because of a mistake and part for fun, I purchased an ASRock J3455-ITX.\u00a0 I tried to boot a couple different OSs without much luck, I could not get CoreOS to boot or even a Gentoo LiveCD. Granted, it is low power and slow, so it might have been my\u2026","rel":"","context":"In &quot;Gentoo&quot;","block_context":{"text":"Gentoo","link":"https:\/\/www.mgreene.org\/?cat=12"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/wordpress.greenenet.net\/wp-content\/uploads\/2018\/11\/j3455_memory.png?resize=350%2C200","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/wordpress.greenenet.net\/wp-content\/uploads\/2018\/11\/j3455_memory.png?resize=350%2C200 1x, https:\/\/i0.wp.com\/wordpress.greenenet.net\/wp-content\/uploads\/2018\/11\/j3455_memory.png?resize=525%2C300 1.5x"},"classes":[]},{"id":471,"url":"https:\/\/www.mgreene.org\/?p=471","url_meta":{"origin":449,"position":3},"title":"NUC7PJYH: Closing out Gentoo on the Intel NUC","author":"Mike","date":"February 20, 2021","format":false,"excerpt":"Well, the NUC is done and everything to working. It is definitely not a speed demon, Geekbench scores prove it with a 158 Single-Core Score and 570 Multi-Core Score. NUC: Gnome Screen NUC: Gnome Overview with settings window, dash to dock, and workspaces to dock. I did try Wayland, and\u2026","rel":"","context":"In &quot;Gentoo&quot;","block_context":{"text":"Gentoo","link":"https:\/\/www.mgreene.org\/?cat=12"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/www.mgreene.org\/wp-content\/uploads\/2021\/02\/about-1.png?resize=350%2C200&ssl=1","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/www.mgreene.org\/wp-content\/uploads\/2021\/02\/about-1.png?resize=350%2C200&ssl=1 1x, https:\/\/i0.wp.com\/www.mgreene.org\/wp-content\/uploads\/2021\/02\/about-1.png?resize=525%2C300&ssl=1 1.5x, https:\/\/i0.wp.com\/www.mgreene.org\/wp-content\/uploads\/2021\/02\/about-1.png?resize=700%2C400&ssl=1 2x"},"classes":[]},{"id":474,"url":"https:\/\/www.mgreene.org\/?p=474","url_meta":{"origin":449,"position":4},"title":"NUC7PJYH: Intel UHD Graphics 605 A problem video problem on the way to happiness","author":"Mike","date":"February 3, 2021","format":false,"excerpt":"The NUC J5005 uses built in Intel UHD Graphics 605 and I have it connected to a ViewSonic VG3448 34 Inch Ultra-Wide 21:9 WQHD. In the kernel config, it is configured as an i915. Short story, the first sign of problems is when the framebuffer is initialized which is followed\u2026","rel":"","context":"In &quot;Gentoo&quot;","block_context":{"text":"Gentoo","link":"https:\/\/www.mgreene.org\/?cat=12"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":859,"url":"https:\/\/www.mgreene.org\/?p=859","url_meta":{"origin":449,"position":5},"title":"New System76 Darter Pro 10 with Gentoo","author":"Mike","date":"December 28, 2024","format":false,"excerpt":"I decided to get a System76 Darter Pro 10. It was to replace my Thinkbook 14s which was over 5 years old. The Thinkbook had been a replacement for an IdeaPad Y470p purchased early in 2012. Before the IdeaPad and Thinkbook, there were Thinkpads of various types. I had a\u2026","rel":"","context":"In &quot;Gentoo&quot;","block_context":{"text":"Gentoo","link":"https:\/\/www.mgreene.org\/?cat=12"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/www.mgreene.org\/wp-content\/uploads\/2024\/12\/system76_DP_spec.png?resize=350%2C200&ssl=1","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/www.mgreene.org\/wp-content\/uploads\/2024\/12\/system76_DP_spec.png?resize=350%2C200&ssl=1 1x, https:\/\/i0.wp.com\/www.mgreene.org\/wp-content\/uploads\/2024\/12\/system76_DP_spec.png?resize=525%2C300&ssl=1 1.5x"},"classes":[]}],"_links":{"self":[{"href":"https:\/\/www.mgreene.org\/index.php?rest_route=\/wp\/v2\/posts\/449","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.mgreene.org\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.mgreene.org\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.mgreene.org\/index.php?rest_route=\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.mgreene.org\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=449"}],"version-history":[{"count":0,"href":"https:\/\/www.mgreene.org\/index.php?rest_route=\/wp\/v2\/posts\/449\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.mgreene.org\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=449"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.mgreene.org\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=449"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.mgreene.org\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=449"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}