<?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>MAC OS X &#8211; Arun&#8217;s blog</title>
	<atom:link href="https://arunns.net/category/operating-systems/mac-os-x/feed/" rel="self" type="application/rss+xml" />
	<link>https://arunns.net</link>
	<description>Arun&#039;s blog</description>
	<lastBuildDate>Mon, 23 Oct 2023 18:41:30 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.4.2</generator>
	<item>
		<title>How to Reindex for Better Results &#8211; MAC OS X spotlight search</title>
		<link>https://arunns.net/mac-os-x-re-index-spotlight-search/</link>
					<comments>https://arunns.net/mac-os-x-re-index-spotlight-search/#respond</comments>
		
		<dc:creator><![CDATA[Arun N.]]></dc:creator>
		<pubDate>Sat, 08 Aug 2020 07:11:05 +0000</pubDate>
				<category><![CDATA[MAC OS X]]></category>
		<category><![CDATA[mac os x search issues]]></category>
		<category><![CDATA[mac osx spotlight reindex]]></category>
		<category><![CDATA[spotlight]]></category>
		<guid isPermaLink="false">https://letushare.com/?p=882</guid>

					<description><![CDATA[Spotlight search is a powerful tool on macOS, helping you quickly find files, applications, and information on your computer. However, there are times when you might encounter issues where it doesn&#8217;t return the right results. When this happens, reindexing your system can be the solution to improve the accuracy of your searches. I Step 1: [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p></p>



<p>Spotlight search is a powerful tool on macOS, helping you quickly find files, applications, and information on your computer. However, there are times when you might encounter issues where it doesn&#8217;t return the right results. When this happens, reindexing your system can be the solution to improve the accuracy of your searches. I</p>



<p><strong>Step 1: Open Terminal as Root</strong></p>



<p>Open Terminal on your macOS system. To perform system-level tasks, you&#8217;ll need to access the Terminal as the root user. You can do this with the following command:</p>



<p><code>sudo -s</code></p>



<p><strong>Step 2: Turn Off Spotlight Indexing</strong></p>



<p>Next, you&#8217;ll want to turn off indexing for Spotlight using the <code>mdutil</code> command. This command stops the indexing process for all volumes:</p>



<p><code>mdutil -a -i off</code></p>



<p><strong>Step 3: Unload the Metadata Daemon</strong></p>



<p>unload the Metadata Daemon service to make changes to the indexing process. Use the <code>launchctl</code> command with the <code>unload</code> option:</p>



<p><code>launchctl unload -w /System/Library/LaunchDaemons/com.apple.metadata.mds.plist</code></p>



<p><strong>Step 4: Load the Metadata Daemon</strong></p>



<p>After unloading the Metadata Daemon, you&#8217;ll need to load it again to apply the changes:</p>



<p><code>launchctl load -w /System/Library/LaunchDaemons/com.apple.metadata.mds.plist</code></p>



<p><strong>Step 5: Turn On Spotlight Indexing</strong></p>



<p>Finally, turn on indexing for Spotlight again using the <code>mdutil</code> command:</p>



<p><code>mdutil -a -i on</code></p>



<p></p>
]]></content:encoded>
					
					<wfw:commentRss>https://arunns.net/mac-os-x-re-index-spotlight-search/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>#git switch to branch without merge on local repo</title>
		<link>https://arunns.net/git-switch-to-branch-without-merge/</link>
					<comments>https://arunns.net/git-switch-to-branch-without-merge/#respond</comments>
		
		<dc:creator><![CDATA[Arun N.]]></dc:creator>
		<pubDate>Thu, 23 Jul 2020 12:13:44 +0000</pubDate>
				<category><![CDATA[GIT]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[MAC OS X]]></category>
		<category><![CDATA[git]]></category>
		<category><![CDATA[git branch]]></category>
		<category><![CDATA[git checkout]]></category>
		<category><![CDATA[git pull branch]]></category>
		<guid isPermaLink="false">http://arunns.com/?p=872</guid>

					<description><![CDATA[To switch from master to a branch or branch to another without merge. git branch*master $ git fetch origin &#60;new_branch> $ git checkoutBranch legacy set up to track remote branch legacy from origin.Switched to a new branch ‘new_branch' $ git pull $ git branch* new_branchmaster]]></description>
										<content:encoded><![CDATA[
<p>To switch from master to a branch or branch to another without merge.<br><br><code>git branch<br>*ma</code>ster<br><br><code>$ git fetch origin &lt;new_branch></code></p>



<p><code>$ git checkout<br>Branch legacy set up to track remote branch legacy from origin.<br>Switched to a new branch ‘new_branch'</code></p>



<p><code>$ git pull</code></p>



<p><code>$ git branch</code><br><code>* new_branch<br>master<br></code></p>
]]></content:encoded>
					
					<wfw:commentRss>https://arunns.net/git-switch-to-branch-without-merge/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>git # move directory or file</title>
		<link>https://arunns.net/git-move-directory-or-file/</link>
					<comments>https://arunns.net/git-move-directory-or-file/#respond</comments>
		
		<dc:creator><![CDATA[Arun N.]]></dc:creator>
		<pubDate>Wed, 22 Jul 2020 07:06:20 +0000</pubDate>
				<category><![CDATA[GIT]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[MAC OS X]]></category>
		<category><![CDATA[git]]></category>
		<category><![CDATA[git mv]]></category>
		<category><![CDATA[gitlab]]></category>
		<guid isPermaLink="false">http://arunns.com/?p=867</guid>

					<description><![CDATA[Move or rename a file, a directory, or a symlink # clone the repogit clone &#60;repo-url>git mv &#60;source_file_or_directory> &#60;destination>git status # will show the change detailsgit commit -am "comment_for_the_change"git push # push changes to repo]]></description>
										<content:encoded><![CDATA[
<p>Move or rename a file, a directory, or a symlink</p>



<p># clone the repo<br><code>git clone &lt;repo-url></code><br><code>git mv &lt;source_file_or_directory> &lt;destination></code><br><code>git status</code> # will show the change details<br><code>git commit -am "comment_for_the_change"</code><br><code>git push</code> # push changes to repo<br></p>



<p></p>



<p></p>



<p></p>



<p></p>



<p></p>



<p></p>
]]></content:encoded>
					
					<wfw:commentRss>https://arunns.net/git-move-directory-or-file/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Create bootable USB on OSX</title>
		<link>https://arunns.net/create-bootable-usb-on-osx/</link>
					<comments>https://arunns.net/create-bootable-usb-on-osx/#respond</comments>
		
		<dc:creator><![CDATA[Arun N.]]></dc:creator>
		<pubDate>Sun, 26 Jan 2014 18:45:49 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[MAC OS X]]></category>
		<category><![CDATA[Create bootable USB on OSX]]></category>
		<guid isPermaLink="false">http://arunnsblog.com/?p=779</guid>

					<description><![CDATA[&#8211; Identify the disk number for the USB disk inserted, usually you can find it from the &#8220;Name&#8221; and &#8220;Size&#8221; field. Below eg: , We inserted a USB with 4.1 GB size (so as the identified: &#8220;disk2&#8221;.) Open terminal and execute the following commands: sh-3.2$ diskutil list /dev/disk0 #: TYPE NAME SIZE IDENTIFIER 0: GUID_partition_scheme [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>&#8211; Identify the disk number for the USB disk inserted, usually you can find it from the &#8220;Name&#8221; and &#8220;Size&#8221; field.<br />
Below eg: , We inserted a USB with 4.1 GB size (so as the identified: &#8220;disk2&#8221;.)<br />
Open terminal and execute the following commands:</p>
<p>sh-3.2$ diskutil list<br />
/dev/disk0<br />
#:                       TYPE NAME                    SIZE       IDENTIFIER<br />
0:      GUID_partition_scheme                        *120.0 GB   disk0<br />
1:                        EFI EFI                     209.7 MB   disk0s1<br />
2:          Apple_CoreStorage                         119.0 GB   disk0s2<br />
3:                 Apple_Boot Recovery HD             650.0 MB   disk0s3<br />
/dev/disk1<br />
#:                       TYPE NAME                    SIZE       IDENTIFIER<br />
0:                  Apple_HFS Macintosh HD           *118.7 GB   disk2<br />
/dev/disk2<br />
#:                       TYPE NAME                    SIZE       IDENTIFIER<br />
0:                            UNTITLED        *4.1 GB     disk2</p>
<p>&#8211; Unmount the disk<br />
sh-3.2$ diskutil unmountDisk /dev/disk3<br />
Unmount of all volumes on disk3 was successful</p>
<p>&#8211; write the ISO file to USB using dd command<br />
sh-3.2$ sudo dd if=Downloads/ubuntu-12.04.3-desktop-i386.iso of=/dev/disk2 bs=1m<br />
Password:<br />
707+0 records in<br />
707+0 records out<br />
741343232 bytes transferred in 139.059398 secs (5331126 bytes/sec)</p>
<p>&#8211; Unmount the disk<br />
sh-3.2$ diskutil eject /dev/disk3<br />
Disk /dev/disk3 ejected</p>
]]></content:encoded>
					
					<wfw:commentRss>https://arunns.net/create-bootable-usb-on-osx/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Convert multiple JPEG to single PDF MAC OS</title>
		<link>https://arunns.net/convert-multiple-jpeg-to-single-pdf-mac-os/</link>
					<comments>https://arunns.net/convert-multiple-jpeg-to-single-pdf-mac-os/#respond</comments>
		
		<dc:creator><![CDATA[Arun N.]]></dc:creator>
		<pubDate>Tue, 12 Feb 2013 08:42:44 +0000</pubDate>
				<category><![CDATA[MAC OS X]]></category>
		<category><![CDATA[Convert multiple JPEG to single PDF MAC OS]]></category>
		<category><![CDATA[image to pdf]]></category>
		<category><![CDATA[jpeg to pdf]]></category>
		<category><![CDATA[MAC tips]]></category>
		<guid isPermaLink="false">http://arunnsblog.com/?p=677</guid>

					<description><![CDATA[It is rather easy to convert Multiple images files as single PDF. &#8211; Select all the files, and open with preview &#8211; Print, and select &#8220;save as pdf&#8221; &#8211; this will create a single PDF file with all jpeg in. ./arun]]></description>
										<content:encoded><![CDATA[<p>It is rather easy to convert Multiple images files as single PDF.</p>
<p>&#8211; Select all the files, and open with preview<br />
&#8211; Print, and select &#8220;save as pdf&#8221;<br />
&#8211; this will create a single PDF file with all jpeg in.</p>
<p>./arun</p>
]]></content:encoded>
					
					<wfw:commentRss>https://arunns.net/convert-multiple-jpeg-to-single-pdf-mac-os/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Root and install google play in Amazon Kindle Fire HD 10 (8.1.4)</title>
		<link>https://arunns.net/root-and-install-google-play-in-amazon-kindle-fire-hd-10-8-1-4/</link>
					<comments>https://arunns.net/root-and-install-google-play-in-amazon-kindle-fire-hd-10-8-1-4/#respond</comments>
		
		<dc:creator><![CDATA[Arun N.]]></dc:creator>
		<pubDate>Wed, 23 Jan 2013 21:40:02 +0000</pubDate>
				<category><![CDATA[Amazon Kindle]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[MAC OS X]]></category>
		<category><![CDATA[google play has stopped]]></category>
		<category><![CDATA[Install google apps in amazon kindle 8.1.4]]></category>
		<category><![CDATA[Install google play store in amazone kindle 10]]></category>
		<category><![CDATA[Root amazon kindle]]></category>
		<category><![CDATA[Root amazon kindle 8.1.4]]></category>
		<category><![CDATA[Root and install google apps in amazon kindle]]></category>
		<guid isPermaLink="false">http://arunnsblog.com/?p=665</guid>

					<description><![CDATA[This is a working procedure to root and install google play Amazon Kindle HD 10&#8243; (8.1.4). Root Kindle Fire HD, I followed the procedure described in here http://forum.xda-developers.com/showthread.php?t=1886460 Download Root_with_Restore_by_Bin4ry_v18 from http://uploaded.net/file/0fpyh5c5 Extract the 7zip file and execute RunMe.sh (if you using MAC/Linux) $ ./RunMe.sh Select the option 1) Normal Now your device is root&#8217;d, you [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>This is a working procedure to root and install google play Amazon Kindle HD 10&#8243; (8.1.4).</p>
<p><strong>Root Kindle Fire HD,</strong></p>
<p>I followed the procedure described in here<a href="http://forum.xda-developers.com/showthread.php?t=1886460" target="_blank" rel="noopener"> http://forum.xda-developers.com/showthread.php?t=1886460</a></p>
<ul>
<li>Download Root_with_Restore_by_Bin4ry_v18 from <a href="http://uploaded.net/file/0fpyh5c5" target="_blank" rel="noopener">http://uploaded.net/file/0fpyh5c5</a></li>
<li>Extract the 7zip file and execute RunMe.sh (if you using MAC/Linux)</li>
</ul>
<blockquote><p>$ ./RunMe.sh</p>
<p>Select the option 1) Normal</p></blockquote>
<ul>
<li>Now your device is root&#8217;d, you may verify :</li>
</ul>
<blockquote><p>sh-3.2$ ./adb shell<br />
shell@android:/ $ su<br />
shell@android:/ # cd /<br />
shell@android:/ # ls</p></blockquote>
<ul>
<li>Reboot  and do the installation for google play store</li>
</ul>
<p><strong>Install google play store </strong></p>
<p>Reference:<a href="http://forum.xda-developers.com/showthread.php?t=1893410" target="_blank" rel="noopener"> http://forum.xda-developers.com/showthread.php?t=1893410</a></p>
<ul>
<li> Open ES File Explorer, go to settings, Root settings , and select <em>Root Explorer, Upto Root, and Mount File system</em>.</li>
<li>Download the GoogleServicesFramework.apk Vending.apk and Play.apk and copy to your sdcard.</li>
</ul>
<p><em>GoogleServicesFramework.apk &#8211; <a href="http://mediafire.com/?zaumfwhraxcifqf" target="_blank" rel="noopener">mediafire.com/?zaumfwhraxcifqf</a></em><br />
<em> Vending.apk &#8211; <a href="http://mediafire.com/?31bn3e258jjpj8d" target="_blank" rel="noopener">mediafire.com/?31bn3e258jjpj8d</a></em><br />
<em> Play.apk &#8211;<a href="http://mediafire.com/?wwcqrlfwt8o1gnv" target="_blank" rel="noopener"> mediafire.com/?wwcqrlfwt8o1gnv</a></em></p>
<p>Please follow the below steps in order to get it working.</p>
<p>&#8211; Open ES file explorer, click and install GoogleServicesFramework.apk<br />
&#8211; Then move the Vending.apk to<strong> /system/app</strong><br />
&#8211; Change the permission to 644 (User &#8211; Read/Write, Group/Others &#8211; Read)<br />
&#8211; Now click and install Vending.apk<br />
&#8211; You can see android market installed on your kindle, open it and do the google account registration. It is important that you do this step before installing Play.apk<br />
&#8211; Once the registration is successful, click and install Play.apk from the sdcard.<br />
&#8211; Now you will have a working play store , enjoy:)</p>
<p>Issues faced:</p>
<ul>
<li>While rooting,  I was not able to execute the adb under stuff folder, replace the adb with the one come with Android SDK.</li>
<li>I got &#8220;google play has stopped&#8221; messages while opening google play . To fix it . 1) Make sure that you copied the Vending.apk to the correct path /system/app and the permissions are correct. 2) Do the google account registration before installing Play.apk</li>
</ul>
<p><figure id="attachment_666" aria-describedby="caption-attachment-666" style="width: 225px" class="wp-caption alignnone"><a href="http://arunnsblog.com/2013/01/24/root-and-install-google-play-in-amazon-kindle-fire-hd-10-8-1-4/20130124_003325/" rel="attachment wp-att-666"><img fetchpriority="high" decoding="async" class="size-medium wp-image-666" alt="Rooted Amazon Kindle Fire HD 10  (8.1.4) with Google apps" src="http://arunnsblog.com/wp-content/uploads/2013/01/20130124_003325-e1358977160495-225x300.jpg" width="225" height="300" /></a><figcaption id="caption-attachment-666" class="wp-caption-text">Rooted Amazon Kindle Fire HD 10 (8.1.4) with Google apps</figcaption></figure></p>
<p>./arun</p>
]]></content:encoded>
					
					<wfw:commentRss>https://arunns.net/root-and-install-google-play-in-amazon-kindle-fire-hd-10-8-1-4/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>svn: Can&#8217;t convert string from &#8216;UTF-8&#8217; to native encoding:</title>
		<link>https://arunns.net/svn-cant-convert-string-from-utf-8-to-native-encoding/</link>
					<comments>https://arunns.net/svn-cant-convert-string-from-utf-8-to-native-encoding/#comments</comments>
		
		<dc:creator><![CDATA[Arun N.]]></dc:creator>
		<pubDate>Mon, 09 Apr 2012 15:53:21 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[MAC OS X]]></category>
		<category><![CDATA[locale]]></category>
		<category><![CDATA[subversion]]></category>
		<category><![CDATA[svn]]></category>
		<guid isPermaLink="false">http://arunnsblog.com/?p=579</guid>

					<description><![CDATA["svn: Can't convert string from 'UTF-8' to native encoding:" This usually happens with special characters in the file name, which the client cannot understand. Just set proper locale in the client to fix this issues, $ export LC_CTYPE=en_US.UTF-8 // make sure the locale is properly set. $ locale LC_CTYPE=en_US.UTF-8 ./arun]]></description>
										<content:encoded><![CDATA[<pre>"svn: Can't convert string from 'UTF-8' to native encoding:"</pre>
<p>This usually happens with special characters in the file name, which the client cannot understand.</p>
<p>Just set proper locale in the client to fix this issues,</p>
<blockquote>
<pre>$ export LC_CTYPE=en_US.UTF-8
// make sure the locale is properly set.
$ locale
LC_CTYPE=en_US.UTF-8

</pre>
</blockquote>
<p>./arun</p>
]]></content:encoded>
					
					<wfw:commentRss>https://arunns.net/svn-cant-convert-string-from-utf-8-to-native-encoding/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
			</item>
		<item>
		<title>svn over ssh tunnel</title>
		<link>https://arunns.net/svn-over-ssh-tunnel/</link>
					<comments>https://arunns.net/svn-over-ssh-tunnel/#comments</comments>
		
		<dc:creator><![CDATA[Arun N.]]></dc:creator>
		<pubDate>Sun, 19 Jun 2011 19:57:40 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[MAC OS X]]></category>
		<category><![CDATA[svn commit]]></category>
		<category><![CDATA[svn ssh tunnel]]></category>
		<category><![CDATA[svn update]]></category>
		<guid isPermaLink="false">http://arunnsblog.com/?p=548</guid>

					<description><![CDATA[&#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; It is very often required that you need to commit/update to the svn repository which is only indirectly accessible through a gateway (user can ssh to gateway and gateway can ssh to internal svn server) Suppose you have a working copy (locally on your machine)  setup [&#8230;]]]></description>
										<content:encoded><![CDATA[<p><img decoding="async" class="alignleft size-medium wp-image-549" title="SVN+SSH Tunnel" src="http://arunnsblog.com/wp-content/uploads/2011/06/Screen-shot-2011-06-19-at-10.49.36-PM-300x277.png" alt="" width="300" height="277" /></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>It is very often required that you need to commit/update to the svn repository which is only indirectly accessible through a gateway (user can ssh to gateway and gateway can ssh to internal svn server)</p>
<p>Suppose you have a working copy (locally on your machine)  setup with the real svn url (eg : svn+ssh://svn.example.com)</p>
<p>&#8211; Make ssh connection with local port forwarding to the gateway server</p>
<blockquote><p># sudo ssh gateway.example.com -L 22:svn.example.com:22</p></blockquote>
<p>Change the repository url to localhost, since the local host connection forward to remote svn server through the gateway.</p>
<blockquote><p>#cd &lt;local_svn_path&gt;</p>
<p># svn switch &#8211;relocate svn+ssh://svn.example.com/trunk svn+ssh://localhost/trunk</p></blockquote>
<p>Now you should be able to update, commit, etc to/from your repository.</p>
<p>You can switch it back to the original url when you have direct access to repository.</p>
<p>./arun</p>
<p>&nbsp;</p>
]]></content:encoded>
					
					<wfw:commentRss>https://arunns.net/svn-over-ssh-tunnel/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
			</item>
		<item>
		<title>My Favourite MAC OS X applications</title>
		<link>https://arunns.net/my-favourite-mac-applications/</link>
					<comments>https://arunns.net/my-favourite-mac-applications/#respond</comments>
		
		<dc:creator><![CDATA[Arun N.]]></dc:creator>
		<pubDate>Sat, 04 Jun 2011 18:29:02 +0000</pubDate>
				<category><![CDATA[MAC OS X]]></category>
		<category><![CDATA[MAC applications]]></category>
		<guid isPermaLink="false">http://arunnsblog.com/?p=491</guid>

					<description><![CDATA[Text Editor vi Text Edit Smultron: http://www.peterborgapps.com/smultron/ Komodo Edit: http://www.activestate.com/komodo-edit Voice/Video Calls Skype : http://skype.com Google talk (browser plugin): : http://www.google.com/chat/video G+ hangout Web Browser Firefox: http://www.mozilla.com/en-US/firefox/fx/ Chrome: http://www.google.com/chrome Twitter Client A Plus: http://www.aplus-app.com/ IM Adium: http://adium.im/ Office Documents Libre office: http://www.libreoffice.org/ Video Player VLC: http://www.videolan.org/vlc/ Miro: http://www.getmiro.com/ ( an excellent stream and bit torrent [&#8230;]]]></description>
										<content:encoded><![CDATA[<p><strong>Text Editor</strong></p>
<blockquote><p>vi</p>
<p>Text Edit</p>
<p>Smultron: <a href="http://www.peterborgapps.com/smultron/" target="_blank" rel="noopener">http://www.peterborgapps.com/smultron/</a></p>
<p>Komodo Edit: <a href="http://www.activestate.com/komodo-edit" target="_blank" rel="noopener">http://www.activestate.com/komodo-edit</a></p></blockquote>
<p><strong>Voice/Video Calls</strong></p>
<blockquote><p>Skype : <a href="http://skype.com" target="_blank" rel="noopener">http://skype.com</a></p>
<p>Google talk (browser plugin): : <a href="http://www.google.com/chat/video" target="_blank" rel="noopener">http://www.google.com/chat/video</a></p>
<p>G+ hangout</p></blockquote>
<p><strong>Web Browser</strong></p>
<blockquote><p>Firefox: <a href="http://www.mozilla.com/en-US/firefox/fx/" target="_blank" rel="noopener">http://www.mozilla.com/en-US/firefox/fx/</a></p>
<p>Chrome: <a href="http://www.google.com/chrome" target="_blank" rel="noopener">http://www.google.com/chrome</a></p></blockquote>
<p><strong>Twitter Client</strong></p>
<blockquote><p>A Plus: <a href="http://www.aplus-app.com/" target="_blank" rel="noopener">http://www.aplus-app.com/</a></p></blockquote>
<p><strong>IM</strong></p>
<blockquote><p>Adium: <a href="http://adium.im/" target="_blank" rel="noopener">http://adium.im/</a></p></blockquote>
<p><a href="http://arunnsblog.com/wp-content/uploads/2011/06/mac.jpg"><img decoding="async" title="mac" src="http://arunnsblog.com/wp-content/uploads/2011/06/mac-300x88.jpg" alt="" width="300" height="88" /></a></p>
<p><strong>Office Documents</strong></p>
<blockquote><p>Libre office: <a href="http://www.libreoffice.org/" target="_blank" rel="noopener">http://www.libreoffice.org/</a></p></blockquote>
<p><strong>Video Player</strong></p>
<blockquote><p>VLC: <a href="http://www.videolan.org/vlc/" target="_blank" rel="noopener">http://www.videolan.org/vlc/</a></p>
<p>Miro: <a href="http://www.getmiro.com/" target="_blank" rel="noopener">http://www.getmiro.com/</a> ( an excellent stream and bit torrent client as well)</p></blockquote>
<p><strong>VOIP</strong></p>
<blockquote><p>Express Talk(free edition) : <a href="http://www.nch.com.au/talk/talkmaci.zip" target="_blank" rel="noopener">http://www.nch.com.au/talk/talkmaci.zip</a></p></blockquote>
<p><strong>Virtulization</strong></p>
<blockquote><p>VMware Fusion : <a href="http://www.vmware.com/products/fusion/overview.html" target="_blank" rel="noopener">http://www.vmware.com/products/fusion/overview.html</a></p>
<p>Sun Virtual Box (free): <a href="http://www.virtualbox.org/" target="_blank" rel="noopener">http://www.virtualbox.org/</a></p>
<p>Parellels: <a href="http://www.parallels.com/" target="_blank" rel="noopener">http://www.parallels.com/</a></p></blockquote>
<p><strong>PDF viewer</strong></p>
<blockquote><p>Adobe Reader: <a href="http://get.adobe.com/reader/" target="_blank" rel="noopener">http://get.adobe.com/reader/</a></p></blockquote>
<p><strong>Audio Editing</strong></p>
<blockquote><p>Audacity: <a href="http://audacity.sourceforge.net/" target="_blank" rel="noopener">http://audacity.sourceforge.net/</a></p></blockquote>
<p><strong>Disk burning</strong></p>
<blockquote><p>Burn: <a href="http://burn-osx.sourceforge.net/Pages/English/home.html" target="_blank" rel="noopener">http://burn-osx.sourceforge.net/</a></p></blockquote>
<p><strong>Disk Image backup</strong></p>
<blockquote><p>Carbon copy cloner: <a href="http://www.bombich.com/" target="_blank" rel="noopener">http://www.bombich.com/</a></p></blockquote>
<p><strong>VNC client</strong></p>
<blockquote><p>Chicken of the VNC: <a href="http://sourceforge.net/projects/cotvnc/" target="_blank" rel="noopener">http://sourceforge.net/projects/cotvnc/</a></p></blockquote>
<p><strong>IPSEC VPN</strong></p>
<blockquote><p>Cisco Any connect</p></blockquote>
<p><strong>Subversion</strong></p>
<blockquote><p>Command line as always</p>
<p>Cornerstone, good if you require an interface: <a href="http://www.zennaware.com/cornerstone/index.php" target="_blank" rel="noopener">http://www.zennaware.com/cornerstone/index.php</a></p></blockquote>
<p><strong>Image Manipulation</strong></p>
<blockquote><p>GIMP: <a href="http://www.gimp.org/" target="_blank" rel="noopener">http://www.gimp.org/</a></p>
<p>Picasa: <a href="http://picasa.google.com/mac/" target="_blank" rel="noopener">http://picasa.google.com/mac/</a></p>
<p>Xee:<a href="http://wakaba.c3.cx/s/apps/xee" target="_blank" rel="noopener"> http://wakaba.c3.cx/s/apps/xee</a></p></blockquote>
<p><strong>Password Management</strong></p>
<blockquote><p>KeePassX: <a href="http://www.keepassx.org/" target="_blank" rel="noopener">http://www.keepassx.org/</a></p></blockquote>
<p><strong>GPG Key Chain</strong></p>
<blockquote><p>MAC GPG: <a href="http://macgpg.sourceforge.net/" target="_blank" rel="noopener">http://macgpg.sourceforge.net/</a></p></blockquote>
<p><strong>Terminal</strong></p>
<blockquote><p>iTerm: <a href="http://iterm.sourceforge.net/" target="_blank" rel="noopener">http://iterm.sourceforge.net/</a></p>
<p>The default terminal is really nice in Lion</p></blockquote>
<p><strong>Mail</strong></p>
<blockquote><p>Thunderbird: <a href="http://www.mozillamessaging.com/en-US/thunderbird/" target="_blank" rel="noopener">http://www.mozillamessaging.com/en-US/thunderbird/</a></p></blockquote>
<p><strong>Diagram</strong></p>
<blockquote><p>OmniGraffle: <a href="http://www.omnigroup.com/products/omnigraffle/" target="_blank" rel="noopener">http://www.omnigroup.com/products/omnigraffle/</a></p></blockquote>
<p><strong>Packet Analysis</strong></p>
<blockquote><p>wireshark:<a href="http://www.wireshark.org/" target="_blank" rel="noopener"> http://www.wireshark.org/</a></p></blockquote>
<p>./arun</p>
<blockquote><p>&nbsp;</p></blockquote>
<blockquote><p>&nbsp;</p></blockquote>
<p>&nbsp;</p>
]]></content:encoded>
					
					<wfw:commentRss>https://arunns.net/my-favourite-mac-applications/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Setting Up IPv6 Tunnels on MAC and Linux</title>
		<link>https://arunns.net/ipv6-tunnel-from-maclinux/</link>
					<comments>https://arunns.net/ipv6-tunnel-from-maclinux/#respond</comments>
		
		<dc:creator><![CDATA[Arun N.]]></dc:creator>
		<pubDate>Thu, 11 Mar 2010 13:28:19 +0000</pubDate>
				<category><![CDATA[IPv6]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[MAC OS X]]></category>
		<category><![CDATA[ipv6 on mac]]></category>
		<category><![CDATA[ipv6 tunnel from mac]]></category>
		<category><![CDATA[ipv6 tunnel linux]]></category>
		<guid isPermaLink="false">http://arunnsblog.com/?p=247</guid>

					<description><![CDATA[IPv6, the next generation Internet Protocol, brings a wealth of possibilities to your network, system, and services. In this guide, we&#8217;ll walk you through the process of establishing an IPv6 network tunnel on both MAC OS X and Linux. Step 1: Choose an IPv6 Tunnel Broker First, you need to select an IPv6 tunnel broker. [&#8230;]]]></description>
										<content:encoded><![CDATA[<div class="flex-col gap-1 md:gap-3">
<div class="flex flex-grow flex-col gap-3 max-w-full">
<div class="min-h-[20px] flex flex-col items-start gap-3 whitespace-pre-wrap break-words overflow-x-auto">
<div class="markdown prose w-full break-words dark:prose-invert light">
<p>IPv6, the next generation Internet Protocol, brings a wealth of possibilities to your network, system, and services. In this guide, we&#8217;ll walk you through the process of establishing an IPv6 network tunnel on both MAC OS X and Linux.</p>
<p><strong>Step 1: Choose an IPv6 Tunnel Broker</strong></p>
<p>First, you need to select an IPv6 tunnel broker. These brokers provide the essential infrastructure to connect your network to the IPv6 world. There are several options available, but for this guide, we&#8217;ll use Hurricane Electric, a free and reliable tunnel broker. You can find a list of tunnel brokers <a href="https://tunnelbroker.net/" target="_new" rel="noopener">here</a>.</p>
<p><strong>Step 2: Creating the Tunnel</strong></p>
<p>With your selected tunnel broker, follow these steps to create your IPv6 tunnel:</p>
<ul>
<li>Visit your chosen tunnel broker&#8217;s website and sign up for an account.</li>
<li>Once logged in, create a tunnel by specifying your public IPv4 address.</li>
<li>Your tunnel broker will assign you a range of IPv6 addresses, which you will need in the next steps.</li>
</ul>
<p><strong>Step 3: Configuration for MAC OS X</strong></p>
<p>For MAC OS X, here are the steps to configure your machine for the IPv6 tunnel:</p>
<ul>
<li>Configure the tunnel with your assigned IPv4 and IPv6 addresses:</li>
</ul>
<div class="bg-black rounded-md mb-4">
<div class="p-4 overflow-y-auto"><code class="!whitespace-pre hljs language-bash">$ sudo ifconfig gif0 tunnel host_ip tunnel_broker_ipv4_ip<br />
</code></div>
</div>
<p>Replace <code>host_ip</code> with your machine&#8217;s private address or public IP if you&#8217;re not behind NAT.</p>
</div>
</div>
</div>
</div>
<p>Set up the tunnel endpoints:</p>
<div class="bg-black rounded-md mb-4">
<div class="flex items-center relative text-gray-200 bg-gray-800 gizmo:dark:bg-token-surface-primary px-4 py-2 text-xs font-sans justify-between rounded-t-md"><code class="!whitespace-pre hljs language-bash">$ sudo ifconfig gif0 inet6 host_ipv6_address tunnel_broker_ipv6_address prefixlen 128<br />
</code></div>
</div>
<p>These IPv6 addresses are assigned by the tunnel broker.</p>
<ul>
<li>Add a default route for IPv6 traffic:</li>
</ul>
<p><code class="!whitespace-pre hljs language-bash">$ sudo route -n add -inet6 default tunnel_broker_ipv6_address<br />
</code></p>
<ul>
<li>To ensure IPv6 is enabled on the interface, use:</li>
</ul>
<div class="bg-black rounded-md mb-4">
<div class="p-4 overflow-y-auto"><code class="!whitespace-pre hljs language-bash">$ sudo ip6 -x gif0<br />
</code></div>
</div>
<ul>
<li>Test your IPv6 connectivity:</li>
</ul>
<div class="bg-black rounded-md mb-4">
<div class="p-4 overflow-y-auto"><code class="!whitespace-pre hljs language-bash">$ ping6 ipv6.google.com<br />
$ telnet ipv6.google.com 80<br />
</code></div>
</div>
<p><strong>Step 4: Configuration for Linux</strong></p>
<p>The process is nearly identical on Linux:</p>
<ul>
<li>Confirm that the IPv6 module is present in the kernel:</li>
</ul>
<div class="bg-black rounded-md mb-4">
<div class="p-4 overflow-y-auto"><code class="!whitespace-pre hljs language-bash">$ sudo modprobe ipv6<br />
</code></div>
</div>
<ul>
<li>Create the tunnel:</li>
</ul>
<div class="bg-black rounded-md mb-4">
<div class="p-4 overflow-y-auto"><code class="!whitespace-pre hljs language-bash">$ sudo ip tunnel add he-ipv6 mode sit remote 216.66.xx.xx <span class="hljs-built_in">local</span> 192.168.1.2 ttl 255<br />
</code></div>
</div>
<p>Replace <code>local</code> with your public IP if directly assigned.</p>
<ul>
<li>Activate the tunnel:</li>
</ul>
<div class="bg-black rounded-md mb-4">
<div class="p-4 overflow-y-auto"><code class="!whitespace-pre hljs language-bash">$ sudo ip <span class="hljs-built_in">link</span> <span class="hljs-built_in">set</span> he-ipv6 up<br />
</code></div>
</div>
<ul>
<li>Assign an IP address to the interface:</li>
</ul>
<div class="bg-black rounded-md mb-4">
<div class="p-4 overflow-y-auto"><code class="!whitespace-pre hljs language-bash">$ sudo ip addr add 2001:470:xxxx:xxxx::2/64 dev he-ipv6<br />
</code></div>
</div>
<ul>
<li>Add a default route for IPv6:</li>
</ul>
<div class="bg-black rounded-md mb-4">
<div class="p-4 overflow-y-auto"><code class="!whitespace-pre hljs language-bash">$ sudo ip route add ::/0 dev he-ipv6<br />
</code></div>
</div>
<ul>
<li>Add a protocol family identifier:</li>
</ul>
<div class="bg-black rounded-md mb-4">
<div class="p-4 overflow-y-auto"><code class="!whitespace-pre hljs language-bash">$ sudo ip -f inet6 addr<br />
</code></div>
</div>
<p>With these steps, your MAC or Linux machine is now equipped with an IPv6 tunnel, allowing you to access IPv6 networks.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://arunns.net/ipv6-tunnel-from-maclinux/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
