<?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>macos &#8211; Selman Tunc</title>
	<atom:link href="https://selmantunc.com.tr/tag/macos/feed/" rel="self" type="application/rss+xml" />
	<link>https://selmantunc.com.tr</link>
	<description></description>
	<lastBuildDate>Thu, 25 Jun 2020 19:18:16 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.0</generator>

<image>
	<url>https://selmantunc.com.tr/wp-content/uploads/2023/07/cropped-tumblr_inline_oglumuMbgO1tyldvk_540-150x150-1-32x32.jpg</url>
	<title>macos &#8211; Selman Tunc</title>
	<link>https://selmantunc.com.tr</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Troubleshooting .NET Core Dev Certs on MacOS</title>
		<link>https://selmantunc.com.tr/uncategorized/troubleshooting-net-core-dev-certs-on-macos/</link>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Thu, 25 Jun 2020 19:18:16 +0000</pubDate>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[.net]]></category>
		<category><![CDATA[.netcore]]></category>
		<category><![CDATA[csharp]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[macos]]></category>
		<guid isPermaLink="false">http://selmantunc.com.tr/2020/06/25/troubleshooting-net-core-dev-certs-on-macos/</guid>

					<description><![CDATA[In case you are getting the following error on MacOS, read on. Unable to configure HTTPS endpoint. No server certificate was specified, and the default developer certificate could not be&#8230;]]></description>
										<content:encoded><![CDATA[<p>In case you are getting the following error on MacOS, read on.</p>
<p>Unable to configure HTTPS endpoint. No server certificate was specified, and the default developer certificate could not be found.</p>
<p>The error description suggests to solve the error by generating a certificate and then trusting it:</p>
<p>dotnet dev-certs https
dotnet dev-certs https –trust</p>
<p>If this solves you problem, cool!</p>
<p>If it does not, then the next step is to try to clear and regenerate the certificate:</p>
<p>dotnet dev-certs https –clean
dotnet dev-certs https
dotnet dev-certs https –trust</p>
<p>OPEN macos-&gt;  Keychain Access</p>
<p>If this does not solve your problem, you might have a conflicting certificate. In order to fix this, open up ‘Keychain Access’ from Spotlight, then on the left side, access ‘Certificates’ and delete the existing &#8216;localhost’ certificate. At this point, go ahead and generate/trust again:</p>
<figure data-orig-width="880" data-orig-height="599" class="tmblr-full"><figure id="attachment_mmd_2094" class="wp-block-image "><img decoding="async" width="880" height="368" src="https://selmantunc.com.tr/wp-content/uploads/2023/07/3da644b5835723bb768e53180486eb036f3dbb49.jpg" class="attachment-full size-full" alt="image" loading="lazy" /></figure></figure>
<p>KeyChain Access</p>
<p>dotnet dev-certs https
dotnet dev-certs https –trust</p>
<p>That will probably fix your problem. Hope it helps!</p>
<p><a href="https://dev.to/cesarcodes/troubleshooting-net-core-dev-certs-on-macos-179d">https://dev.to/cesarcodes/troubleshooting-net-core-dev-certs-on-macos-179d</a>
<br></p>]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>macos valet install</title>
		<link>https://selmantunc.com.tr/uncategorized/macos-valet-install/</link>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Tue, 24 Dec 2019 04:19:19 +0000</pubDate>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[macos]]></category>
		<category><![CDATA[macos valet]]></category>
		<category><![CDATA[valet]]></category>
		<guid isPermaLink="false">http://selmantunc.com.tr/2019/12/24/macos-valet-install/</guid>

					<description><![CDATA[brew install php brew install mysql@5.7 brew services start mysql@5.7 https://gist.github.com/brandonsimpson/5204ce8a46f7a20071b5 https://dev.mysql.com/downloads/mysql/ Install Composer php -r “copy(‘https://getcomposer.org/installer’, &#8216;composer-setup.php’);”php -r “if (hash_file(&#8216;sha384’, &#8216;composer-setup.php’) === &#8216;e0012edf3e80b6978849f5eff0d4b4e4c79ff1609dd1e613307e16318854d24ae64f26d17af3ef0bf7cfb710ca74755a’) { echo &#8216;Installer verified’; } else&#8230;]]></description>
										<content:encoded><![CDATA[<figure data-orig-width="2560" data-orig-height="1429" class="tmblr-full"><figure id="attachment_mmd_2255" class="wp-block-image "><img decoding="async" width="2560" height="301" src="https://selmantunc.com.tr/wp-content/uploads/2023/07/f95bc3444e73b9ca6e77129d7a316239a5ff8b62.jpg" class="attachment-full size-full" alt="image" loading="lazy" /></figure></figure>
<pre>brew install php</pre>
<pre>brew install mysql@5.7</pre>
<pre>brew services start mysql@5.7

<a href="https://gist.github.com/brandonsimpson/5204ce8a46f7a20071b5">https://gist.github.com/brandonsimpson/5204ce8a46f7a20071b5</a></pre>
<pre><a href="https://dev.mysql.com/downloads/mysql/">https://dev.mysql.com/downloads/mysql/</a>

</pre>
<p><b>Install Composer</b>
<br></p>
<blockquote><p>php -r “copy(‘https://getcomposer.org/installer’, &#8216;composer-setup.php’);”<br>php -r “if (hash_file(&#8216;sha384’, &#8216;composer-setup.php’) === &#8216;e0012edf3e80b6978849f5eff0d4b4e4c79ff1609dd1e613307e16318854d24ae64f26d17af3ef0bf7cfb710ca74755a’) { echo &#8216;Installer verified’; } else { echo &#8216;Installer corrupt’; unlink(&#8216;composer-setup.php’); } echo PHP_EOL;”<br>php composer-setup.php<br>php -r “unlink(&#8216;composer-setup.php’);”<br></p></blockquote>
<pre><code>&lt;br&gt;</code></pre>
<pre><code>&lt;br&gt;</code></pre>
<pre><code>&lt;br&gt;</code></pre>]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>macOS iTerm2 + Oh My Zsh + Solarized color scheme</title>
		<link>https://selmantunc.com.tr/uncategorized/macos-setup-guide/</link>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Sat, 17 Aug 2019 23:38:05 +0000</pubDate>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[macos]]></category>
		<category><![CDATA[mojave]]></category>
		<guid isPermaLink="false">http://selmantunc.com.tr/2019/08/17/macos-setup-guide/</guid>

					<description><![CDATA[macOS Setup Guide iTerm2 + Oh My Zsh + Solarized color scheme + Source Code Pro Powerline + Font Awesome + [Powerlevel10k] &#8211; (macOS) https://gist.github.com/kevin-smets/8568070]]></description>
										<content:encoded><![CDATA[<p><a href="https://sourabhbajaj.com/mac-setup">macOS Setup Guide</a></p>
<p>

iTerm2 + Oh My Zsh + Solarized color scheme + Source Code Pro Powerline + Font Awesome + [Powerlevel10k] &#8211; (macOS)

 </p>
<div class="gist"><a href="https://gist.github.com/kevin-smets/8568070">https://gist.github.com/kevin-smets/8568070</a></div>]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Başarılı hackintosh mojave  kurulumu</title>
		<link>https://selmantunc.com.tr/uncategorized/basarili-hackintosh-mojave-kurulumu/</link>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Wed, 29 May 2019 21:45:33 +0000</pubDate>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[hackintosh]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[macos]]></category>
		<category><![CDATA[mojave]]></category>
		<category><![CDATA[react]]></category>
		<category><![CDATA[reactjs]]></category>
		<category><![CDATA[reactnative]]></category>
		<guid isPermaLink="false">http://selmantunc.com.tr/2019/05/29/basarili-hackintosh-mojave-kurulumu/</guid>

					<description><![CDATA[Neden hackintosh tercih ettim çünkü aynı ayarlarda bir mac masaüstü  almak 16gb ram ssd ve normal HDD  ile 10 bin tl ye denk geliyor ve React Native ile çalıştığım için bu&#8230;]]></description>
										<content:encoded><![CDATA[<p><iframe width="356" height="200" src="https://www.youtube.com/embed/aoZaEVwi1TE?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen title="Hackintosh Kurulumu Sonrası Clover BootLoader Ayarları ( Tüm Yöntemler)"></iframe>Neden hackintosh tercih ettim çünkü aynı ayarlarda bir mac masaüstü  almak 16gb ram ssd ve normal HDD  ile 10 bin tl ye denk geliyor ve React Native ile çalıştığım için bu sistemi yapmak zorunda kaldım, çokta iyi yapmışım </p>
<figure data-orig-width="1600" data-orig-height="900" class="tmblr-full"><figure id="attachment_mmd_2210" class="wp-block-image "><img decoding="async" width="1600" height="304" src="https://selmantunc.com.tr/wp-content/uploads/2023/07/b5581331f3a25aa9c7bc23a617e4b76cfaf33b4b.jpg" class="attachment-full size-full" alt="image" loading="lazy" /></figure></figure>
<p><b>DONANIM BİLGİSİ </b>
<br>Anakart Asus H81M-Plus <br>Ram : GSKILL Flare X 8GB + Kingston HyperX 8 gb 1333 <br>İntel i5 işlemci 3.2 ghz </p>
<p>120 gb SSD + 500 GB HDD</p>
<p>İntel 4600 &#8211; 1 gb ekran kartı </p>
<figure data-orig-width="798" data-orig-height="413" class="tmblr-full"><figure id="attachment_mmd_2103" class="wp-block-image "><img decoding="async" width="798" height="279" src="https://selmantunc.com.tr/wp-content/uploads/2023/07/4b959a69a84af16125913ca77f0c034bb0cdfce0.png" class="attachment-full size-full" alt="image" loading="lazy" /></figure></figure>
<p>Wifi alıcı:  <a href="https://www.edimax.com/edimax/download/download/data/edimax/global/download/for_home/wireless_adapters/wireless_adapters_n150/ew-7811un">Edimax EW-7811Un</a> (<a href="https://www.edimax.com/edimax/mw/cufiles/files/download/Driver_Utility/EW-7811Un_Mac_driver_1.0.1.8.zip">Driver</a>) harika bir alıcı her işletim sistemi için driverları bulunuyor.<br><br>Kullanılan Image :<br><a href="https://osxinfo.net/konu/macos-mojave-10-14-5-amd-intel-kurulum-imaji.5645/">https://osxinfo.net/konu/macos-mojave-10-14-5-amd-intel-kurulum-imaji.5645/</a>
<br><br></p>
<p>Kurulum Video Ders : <iframe width="356" height="200" src="https://www.youtube.com/embed/f2nN3NMg9vQ?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen title="macOS Mojave Kurulum Rehberi"></iframe></p>
<h2>CLover Boot loader ayarları </h2>
<p><b>UEFI destekli GPT Formatlı Diske Clover Bootloader ayarları</b></p>
<p>2 adet disk var birisi hdd diğeri SSD <br><b>ssd</b> nin tamamında macos mojave kurulu <b>hdd</b> üzerinde windows kurulu ayarları bu şekilde olacak </p>
<p><br></p>
<figure data-orig-width="614" data-orig-height="440" class="tmblr-full"><figure id="attachment_mmd_2204" class="wp-block-image "><img decoding="async" width="614" height="387" src="https://selmantunc.com.tr/wp-content/uploads/2023/07/ae64caa71a1a1430f988e825b363bf0212ecec8f.png" class="attachment-full size-full" alt="image" loading="lazy" /></figure></figure>
<p><br></p>
<p><br></p>
<p>Önemli  önce USB deki kext dosyalarını ve config dosyasını kopyala </p>
<p>Sonra wifi alıcısının yazılımını kur , usb olmadan başlayınca </p>
<p> vodaHDA paketini kur </p>
<p>Driver Paketlerimin Olduğu yer …</p>
<p><a href="https://drive.google.com/drive/folders/15-5XXzyj465JVNMMB6Klnvv3kMQSENU4">https://drive.google.com/drive/folders/15-5XXzyj465JVNMMB6Klnvv3kMQSENU4</a></p>
<p>–son olarak clover un kurulu olduğu disk boot ayarlarından yani uefi bios da en başa getirilecek.</p>
<p>Kaynaklar</p>
<p>Clover ile OS X Kurulumu</p>
<p><a href="https://osxinfo.net/konu/clover-ile-os-x-kurulumu.69/">https://osxinfo.net/konu/clover-ile-os-x-kurulumu.69/</a></p>
<p>VoodooHDA 2.9.2 Güncel Ses Kurulum Paketi</p>
<p><a href="https://osxinfo.net/konu/voodoohda-2-9-2-guncel-ses-kurulum-paketi.9055/">https://osxinfo.net/konu/voodoohda-2-9-2-guncel-ses-kurulum-paketi.9055/</a></p>
<p><br></p>
<h2>NOT : GPT İÇİN yapılacaklar farklı [ayrıca windows silinirse yapılacaklar]</h2>
<p><b>ilk önce windows kurulumu yaparken rufus a yükleme yaparken disk bölümün gpt seçilmesi lazım </b></p>
<figure class="tmblr-embed tmblr-full" data-provider="youtube" data-orig-width="540" data-orig-height="304" data-url="https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DaoZaEVwi1TE%26t%3D357s"></figure>
<figure class="tmblr-embed tmblr-full" data-provider="youtube" data-orig-width="540" data-orig-height="304" data-url="https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DULXQniSyzls"></figure>
<p>Ben voodooHDA kullanıyorum.</p>
<figure class="tmblr-embed tmblr-full" data-provider="youtube" data-orig-width="540" data-orig-height="304" data-url="https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DjYsrKdD0yCo"></figure>]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
