<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>tip &#8211; Yuanle&#039;s Blog</title>
	<atom:link href="https://blog2.emacsos.com/tag/tip/feed" rel="self" type="application/rss+xml" />
	<link>https://blog2.emacsos.com</link>
	<description></description>
	<lastBuildDate>Wed, 25 Mar 2026 02:17:49 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>

<image>
	<url>https://blog2.emacsos.com/wp-content/uploads/2025/05/favicon-150x150.png</url>
	<title>tip &#8211; Yuanle&#039;s Blog</title>
	<link>https://blog2.emacsos.com</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>how to upgrade bwrap for codex on debian 12 bookworm</title>
		<link>https://blog2.emacsos.com/how-to-upgrade-bwrap-for-codex-on-debian-12-bookworm.html</link>
		
		<dc:creator><![CDATA[sylecn]]></dc:creator>
		<pubDate>Wed, 25 Mar 2026 02:17:04 +0000</pubDate>
				<category><![CDATA[Programming and Software Engineering]]></category>
		<category><![CDATA[tip]]></category>
		<guid isPermaLink="false">https://blog2.emacsos.com/?p=127</guid>

					<description><![CDATA[If you get this error when using codex on debian 12 bookworm, this post is for you. The --argv0 parameter [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p>If you get this error when using codex on debian 12 bookworm, this post is for you.</p>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow">
<pre class="wp-block-code"><code>I’m currently blocked from editing your repo: every shell/tool call fails with:<br>bwrap: Unknown option --argv0</code></pre>
</blockquote>



<p>The <code>--argv0</code> parameter requires requires bubblewrap 0.9.0+, debian 12 bookworm has 0.8.0-2. To fix this issue, you can upgrade bwrap on your host.</p>



<p>Clone the source code from <a href="https://github.com/containers/bubblewrap">https://github.com/containers/bubblewrap</a></p>



<p>Install some dependencies</p>



<pre class="wp-block-code"><code>sudo apt instal -t bookworm-backports meson
sudo apt install libcap-dev ninja-build</code></pre>



<p>Get the code and build it</p>



<pre class="wp-block-code"><code>git clone <a href="https://github.com/containers/bubblewrap">https://github.com/containers/bubblewrap</a>
cd bubblewrap
meson build
cd build
ninja
sudo ninja install</code></pre>



<p>Confirm bwrap is installed</p>



<pre class="wp-block-code"><code>which bwrap
#/usr/local/bin/bwrap
bwrap --version
#bubblewrap 0.11.1</code></pre>



<p>Now the problem is codex only use /usr/bin/bwrap, so you have to copy it to that path.</p>



<pre class="wp-block-code"><code>sudo cp /usr/bin/bwrap /usr/bin/bwrap.old
sudo cp /usr/local/bin/bwrap /usr/bin/bwrap
ldd /usr/bin/bwrap</code></pre>



<p>Now restart codex, bwrap should work now. Happy coding.</p>



<p></p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Intel AX200 bluetooth and wifi suddenly not working in Linux GNOME</title>
		<link>https://blog2.emacsos.com/fix-intel-ax200-bluetooth.html</link>
		
		<dc:creator><![CDATA[sylecn]]></dc:creator>
		<pubDate>Sun, 04 May 2025 04:36:46 +0000</pubDate>
				<category><![CDATA[Linux Desktop]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[tip]]></category>
		<guid isPermaLink="false">https://blog2.emacsos.com/?p=14</guid>

					<description><![CDATA[Symptom You can&#8217;t toggle bluetooth on/off in GNOME applets. rfkill list show bluetooth is not blocked. bluetoothctl list show empty [&#8230;]]]></description>
										<content:encoded><![CDATA[
<h2 class="wp-block-heading">Symptom</h2>



<p>You can&#8217;t toggle bluetooth on/off in GNOME applets.</p>



<p><code>rfkill list</code> show bluetooth is not blocked.</p>



<p><code>bluetoothctl list</code> show empty bluetooth controller list.</p>



<h2 class="wp-block-heading">Solution</h2>



<pre class="wp-block-code"><code>sudo modprobe -r btusb<br>sudo modprobe btusb</code></pre>



<p>This will unload and reload btusb module, which may be able to fix the issue.</p>



<p>ref: <a href="https://bbs.archlinux.org/viewtopic.php?id=272643">[SOLVED] No bluetooth adaptater on AX200 / Kernel &amp; Hardware / Arch Linux Forums</a></p>



<p></p>
]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
