<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Topics tagged with macos]]></title><description><![CDATA[A list of topics that have been tagged with macos]]></description><link>https://lankadevelopers.lk/tags/macos</link><generator>RSS for Node</generator><lastBuildDate>Fri, 06 Mar 2026 02:23:57 GMT</lastBuildDate><atom:link href="https://lankadevelopers.lk/tags/macos.rss" rel="self" type="application/rss+xml"/><pubDate>Invalid Date</pubDate><ttl>60</ttl><item><title><![CDATA[How to Fix &quot;nvm not found&quot; Error in MacOS]]></title><description><![CDATA[<p dir="auto">When you install NVM using Homebrew, you still need to add the following lines to your shell configuration file (.bashrc, .zshrc, etc.)</p>
<pre><code class="language-bash">export NVM_DIR="$HOME/.nvm"
. "/usr/local/opt/nvm/nvm.sh"
</code></pre>
<p dir="auto">If you are using the Bash shell, open the ~/.bashrc file in your favorite text editor, and add the following lines at the end of the file:</p>
<pre><code class="language-bash">export NVM_DIR="$HOME/.nvm"
. "/usr/local/opt/nvm/nvm.sh"
</code></pre>
<p dir="auto">If you are using the Zsh shell, open the ~/.zshrc file in your favorite text editor, and add the following lines at the end of the file:</p>
<pre><code class="language-bash">export NVM_DIR="$HOME/.nvm"
. "/usr/local/opt/nvm/nvm.sh"
</code></pre>
<p dir="auto">After adding the lines to the appropriate file, save it and close the editor. Then, restart your terminal or run the source command to load the changes:</p>
<pre><code class="language-bash">source ~/.bashrc
</code></pre>
<pre><code class="language-bash">source ~/.zshrc
</code></pre>
]]></description><link>https://lankadevelopers.lk/topic/958/how-to-fix-nvm-not-found-error-in-macos</link><guid isPermaLink="true">https://lankadevelopers.lk/topic/958/how-to-fix-nvm-not-found-error-in-macos</guid><dc:creator><![CDATA[root]]></dc:creator><pubDate>Invalid Date</pubDate></item><item><title><![CDATA[How to Flush DNS on Mac – MacOS Clear DNS Cache]]></title><description><![CDATA[<table class="table table-bordered table-striped">
<thead>
<tr>
<th>MacOS Version</th>
<th style="text-align:center">Command</th>
</tr>
</thead>
<tbody>
<tr>
<td>macOS 12 (Monterey and above)</td>
<td style="text-align:center">sudo dscacheutil -flushcache; sudo killall -HUP mDNSResponder</td>
</tr>
<tr>
<td>macOS 11 (Big Sur)</td>
<td style="text-align:center">sudo dscacheutil -flushcache; sudo killall -HUP mDNSResponder</td>
</tr>
<tr>
<td>macOS 10.15 (Catalina)</td>
<td style="text-align:center">sudo dscacheutil -flushcache; sudo killall -HUP mDNSResponder</td>
</tr>
<tr>
<td>macOS 10.14 (Mojave)</td>
<td style="text-align:center">sudo killall -HUP mDNSResponder</td>
</tr>
<tr>
<td>macOS 10.13 (High Sierra)</td>
<td style="text-align:center">sudo killall -HUP mDNSResponder</td>
</tr>
<tr>
<td>macOS 10.12 (Sierra)</td>
<td style="text-align:center">sudo killall -HUP mDNSResponder</td>
</tr>
<tr>
<td>OS X 10.11 (El Capitan)</td>
<td style="text-align:center">sudo killall -HUP mDNSResponder</td>
</tr>
<tr>
<td>OS X 10.10 (Yosemite)</td>
<td style="text-align:center">sudo discoveryutil udnsflushcaches</td>
</tr>
<tr>
<td>OS X 10.9 (Mavericks)</td>
<td style="text-align:center">sudo killall -HUP mDNSResponder</td>
</tr>
<tr>
<td>OS X 10.8 (Mountain Lion)</td>
<td style="text-align:center">sudo killall -HUP mDNSResponder</td>
</tr>
<tr>
<td>Mac OS X 10.7 (Lion)</td>
<td style="text-align:center">sudo killall -HUP mDNSResponder</td>
</tr>
<tr>
<td>Mac OS X 10.6 (Snow Leopard)</td>
<td style="text-align:center">sudo dscacheutil -flushcache</td>
</tr>
<tr>
<td>Mac OS X 10.5 (Leopard)</td>
<td style="text-align:center">sudo lookupd -flushcache</td>
</tr>
<tr>
<td>Mac OS X 10.4 (Tiger)</td>
<td style="text-align:center">lookupd -flushcache</td>
</tr>
</tbody>
</table>
]]></description><link>https://lankadevelopers.lk/topic/957/how-to-flush-dns-on-mac-macos-clear-dns-cache</link><guid isPermaLink="true">https://lankadevelopers.lk/topic/957/how-to-flush-dns-on-mac-macos-clear-dns-cache</guid><dc:creator><![CDATA[root]]></dc:creator><pubDate>Invalid Date</pubDate></item></channel></rss>