<?xml version="1.0" encoding="utf-8"?>
<?xml-stylesheet type="text/xsl" href="../assets/xml/rss.xsl" media="all"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Knowledge Base (Posts about laptop)</title><link>https://bgstack15.ddns.net/blog/</link><description></description><atom:link href="https://bgstack15.ddns.net/blog/categories/laptop.xml" rel="self" type="application/rss+xml"></atom:link><language>en</language><copyright>Contents © 2025 &lt;a href="mailto:bgstack15@gmail.com"&gt;bgstack15&lt;/a&gt; 
&lt;a rel="license" href="https://www.gnu.org/licenses/gpl-3.0.html"&gt;
&lt;img alt="GNU General Public License v3.0"
style="border-width:0; margin-bottom:12px;"
src="https://bgstack15.ddns.net/.images/gplv3-127x51.png"&gt;&lt;/a&gt;</copyright><lastBuildDate>Sun, 08 Jun 2025 19:42:04 GMT</lastBuildDate><generator>Nikola (getnikola.com)</generator><docs>http://blogs.law.harvard.edu/tech/rss</docs><item><title>Devuan laptop: use external monitor with sound</title><link>https://bgstack15.ddns.net/blog/posts/2025/06/08/devuan-laptop-use-external-monitor-with-sound/</link><dc:creator>bgstack15</dc:creator><description>&lt;p&gt;I used arandr to set up 2-monitor display after plugging in the HDMI display, and saved the config to &lt;code&gt;~/.screenlayout/2mon.sh&lt;/code&gt;. I then added the pulseaudio command to set the default profile to output audio to the hdmi.&lt;/p&gt;
&lt;div class="code"&gt;&lt;pre class="code literal-block"&gt;xrandr --output eDP-1 --primary --mode 1920x1080 --pos 0x0 --rotate normal --output DP-1 --off --output HDMI-1 --off --output DP-2 --off --output HDMI-2 --mode 1920x1080 --pos 1920x0 --rotate normal
pacmd set-card-profile 0 output:hdmi-stereo
&lt;/pre&gt;&lt;/div&gt;

&lt;h2&gt;References&lt;/h2&gt;
&lt;ol&gt;
&lt;li&gt;&lt;code&gt;pacmd&lt;/code&gt; interactive terminal&lt;/li&gt;
&lt;/ol&gt;</description><category>arandr</category><category>devuan</category><category>display</category><category>laptop</category><category>pulseaudio</category><category>xrandr</category><guid>https://bgstack15.ddns.net/blog/posts/2025/06/08/devuan-laptop-use-external-monitor-with-sound/</guid><pubDate>Sun, 08 Jun 2025 12:35:00 GMT</pubDate></item><item><title>Installing Windows 7 on Alienware M17x-R4</title><link>https://bgstack15.ddns.net/blog/posts/2023/09/12/installing-windows-7-on-alienware-m17x-r4/</link><dc:creator>bgstack15</dc:creator><description>&lt;p&gt;I used to use a Windows-based process to copy the Windows 7 installer to a new hard disk which would then be installed in a new system, and then I would install the OS to that very drive from itself. It worked great. This was before 2015, the Year of Linux on the Desktop.&lt;/p&gt;
&lt;p&gt;Now that I use all GNU/Linux, but I needed to install Windows 7, I had a hard time getting this prepared. Here is how I did it.&lt;/p&gt;
&lt;p&gt;&lt;a href="https://bgstack15.ddns.net/blog/outbound/https:/askubuntu.com/questions/289559/how-can-i-create-a-windows-bootable-usb-stick-using-ubuntu"&gt;AskUbuntu&lt;/a&gt; indicated to use &lt;a href="https://bgstack15.ddns.net/blog/outbound/https:/github.com/WoeUSB/WoeUSB"&gt;WoeUSB&lt;/a&gt;, so i used the provided instructions.&lt;/p&gt;
&lt;p&gt;Deploying WoeUSB to a usb caused the win 7 installer to not be able to choose a disk at all (a failure of the windows installer, not WoeUSB), so I used WoeUSB to copy my win7x64 pro install iso to the SSD that I then placed in the system.&lt;/p&gt;
&lt;div class="code"&gt;&lt;pre class="code literal-block"&gt;time sudo bash ./woeusb-5.2.4.bash --target-filesystem NTFS --device /mnt/public/Support/SetupsBig/Windows/en_windows_7_professional_x64_dvd_x15-65805.iso /dev/sdZ
&lt;/pre&gt;&lt;/div&gt;

&lt;h2&gt;Why I did it&lt;/h2&gt;
&lt;p&gt;The graphics card in a (Dell) &lt;a href="https://bgstack15.ddns.net/blog/outbound/https:/www.dell.com/support/home/en-us/product-support/product/alienware-m17x-r4/drivers"&gt;Alienware M17x-R4&lt;/a&gt; graphics card is an &lt;a href="https://bgstack15.ddns.net/blog/outbound/https:/www.nvidia.com/Download/driverResults.aspx/153717/"&gt;Nvidia 660M&lt;/a&gt;. I was unable to get the debian-packaged &lt;a href="https://bgstack15.ddns.net/blog/outbound/https:/packages.debian.org/sid/nvidia-settings"&gt;drivers&lt;/a&gt; and the nvidia.com drivers to work on modern kernel (6.4.0.3). I concluded it was useful for retro gaming, if you call the Windows 7 era &lt;em&gt;retro gaming&lt;/em&gt;.&lt;/p&gt;
&lt;p&gt;I could have probably used an older release of Devuan GNU+Linux, but I use exclusively Devuan unstable, and I don't want to start using an older release now.&lt;/p&gt;
&lt;h2&gt;References&lt;/h2&gt;
&lt;ol&gt;
&lt;li&gt;&lt;a href="https://bgstack15.ddns.net/blog/outbound/https:/askubuntu.com/questions/289559/how-can-i-create-a-windows-bootable-usb-stick-using-ubuntu"&gt;https://askubuntu.com/questions/289559/how-can-i-create-a-windows-bootable-usb-stick-using-ubuntu&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://bgstack15.ddns.net/blog/outbound/https:/github.com/WoeUSB/WoeUSB"&gt;https://github.com/WoeUSB/WoeUSB&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://bgstack15.ddns.net/blog/outbound/https:/superuser.com/questions/320581/couldnt-find-boot-disk-error-while-installing-windows-7-using-usb"&gt;https://superuser.com/questions/320581/couldnt-find-boot-disk-error-while-installing-windows-7-using-usb&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;h3&gt;Auxiliary but not needed in the path I took&lt;/h3&gt;
&lt;ol&gt;
&lt;li&gt;&lt;a href="https://bgstack15.ddns.net/blog/outbound/https:/forums.tomshardware.com/threads/ssd-detected-but-cannot-install-windows-7-on-it.2759746/"&gt;https://forums.tomshardware.com/threads/ssd-detected-but-cannot-install-windows-7-on-it.2759746/&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://bgstack15.ddns.net/blog/outbound/https:/superuser.com/questions/919747/error-installing-windows-setup-was-unable-to-create-a-new-system-partition-or"&gt;https://superuser.com/questions/919747/error-installing-windows-setup-was-unable-to-create-a-new-system-partition-or&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;</description><category>imaging</category><category>laptop</category><category>windows</category><guid>https://bgstack15.ddns.net/blog/posts/2023/09/12/installing-windows-7-on-alienware-m17x-r4/</guid><pubDate>Tue, 12 Sep 2023 13:08:51 GMT</pubDate></item></channel></rss>