<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:media="http://search.yahoo.com/mrss/">
    <channel>
        <title>SysAdmin Journal · macOS</title>
        <link>https://sysadmin-journal.com/tag/macos</link>
        <description>Posts tagged with macOS</description>
        <language>en</language>
        <lastBuildDate>Sat, 05 Oct 2024 17:54:58 +0000</lastBuildDate>
        <atom:link href="https://sysadmin-journal.com/tag/macos/rss" rel="self" type="application/rss+xml" />
        <ttl>60</ttl>
        <item>
            <title>Long press not working for accent marks on macOS? Here’s the fix!</title>
            <link>https://sysadmin-journal.com/long-press-not-working-for-accent-marks-on-macos-heres-the-fix</link>
            <guid isPermaLink="true">https://sysadmin-journal.com/long-press-not-working-for-accent-marks-on-macos-heres-the-fix</guid>
            <pubDate>Sat, 05 Oct 2024 17:54:58 +0000</pubDate>
            <dc:creator>Ish Sookun</dc:creator>
            <category>macOS</category>
            <description>After upgrading to macOS Sequoia version 15.0.1, you might notice that the long press functionality for typing accent characters, like é, è, â, and ï, is no longer working.</description>
            <media:content url="https://sysadmin-journal.com/content/images/2024/10/macos-sequoia-15.0.1-3.jpeg" medium="image" />
            <content:encoded><![CDATA[<p>The feature, which allows users to hold down a key to see accent variations, seems to have been disabled by default in this version. Fortunately, there’s a quick fix using the command line.</p><pre><code>defaults write -g ApplePressAndHoldEnabled -bool true</code></pre><p>This command restores the press-and-hold behaviour, making it easy to type accented characters once again. After running this command, restart any open applications for the change to take effect, and you’ll have your accent keys back to normal.</p>]]></content:encoded>
        </item>
        <item>
            <title>Apache Directory Studio on the Apple M1</title>
            <link>https://sysadmin-journal.com/apache-directory-studio-on-the-apple-m1</link>
            <guid isPermaLink="true">https://sysadmin-journal.com/apache-directory-studio-on-the-apple-m1</guid>
            <pubDate>Wed, 20 Jul 2022 11:21:54 +0000</pubDate>
            <dc:creator>Ish Sookun</dc:creator>
            <category>macOS</category>
            <description>Apple M1 is an ARM-based system-on-chip (SoC) designed by Apple Inc., for its devices, like the MacBook, Mac Mini, iMac, iPad, etc. A system-on-chip (SoC) is an integrated circuit that contains components such as the CPU, GPU and other I/O interfaces.</description>
            <content:encoded><![CDATA[<p>It took me a while to get familiar to macOS and its tools. Previously, I was a full-time "openSUSE on a Lenovo ThinkPad X1 Carbon" user. Now, I switch between the two.</p><p>The Apple M1 chip is a high-performance SoC that includes the CPU, GPU and Dynamic RAM (DRAM).</p><blockquote>This blog post is about what I did to get Apache Directory Studio to run on the Apple M1 MacBook.</blockquote><p>I use Apache Directory Studio to manage my OpenLDAP and 389 Directory Server instances. Apache Directory Studio requires Java to run and it is available for Linux, Windows and macOS (but only for the Intel x86_64 architecture). Therefore, when I moved most of my dev and sysadmin tools on my work MacBook, this one tool was still missing — until I found that Java x86_64 could be installed using Homebrew.</p><pre><code>arch -x86_64 brew install oracle-jdk
</code></pre><h2 id="what-is-homebrew">What is Homebrew?</h2><p>Homebrew is an open-source package management system that works on both macOS and Linux. I have never used it on Linux because most distributions have their own package management software. </p><p>On macOS, it is a life-saver.</p><h2 id="getting-apache-directory-studio">Getting Apache Directory Studio</h2><p>Once you have <code>oracle-jdk</code> set up, you can install Apache Directory Studio using the below mentioned command.</p><pre><code>brew install apache-directory-studio</code></pre><p>It couldn't be simpler than this.</p><figure class="kg-card kg-image-card"><img src="https://sysadmin-journal.com/content/images/2022/07/ApacheDirectoryStudio-2.svg" class="kg-image" alt="Apache Directory Studio compiled for macOS x86_84 running on Apple M1" loading="lazy" width="1000" height="666"></figure><p>Notice the application kind is Intel. However, the application runs fine on the Apple M1, thanks to <a href="https://support.apple.com/en-gb/HT211861">Rosetta 2</a>.</p><figure class="kg-card kg-image-card"><img src="https://sysadmin-journal.com/content/images/2022/07/ApacheDirectoryStudio-LDAP.jpg" class="kg-image" alt loading="lazy" width="2000" height="1392" srcset="/content/images/size/w600/2022/07/ApacheDirectoryStudio-LDAP.jpg 600w, /content/images/size/w1000/2022/07/ApacheDirectoryStudio-LDAP.jpg 1000w, /content/images/size/w1600/2022/07/ApacheDirectoryStudio-LDAP.jpg 1600w, /content/images/size/w2400/2022/07/ApacheDirectoryStudio-LDAP.jpg 2400w" sizes="(min-width: 720px) 720px"></figure><p>For the x86_64 compiled apps to run on the Apple M1 machine, you need to have Rosetta 2. You can install it using the below mentioned command or macOS will prompt you to install it the first you run a x86_64 compiled application.</p><pre><code>/usr/sbin/softwareupdate --install-rosetta</code></pre><h2 id="what-is-rosetta">What is Rosetta?</h2><p>Rosetta is a dynamic binary translator for macOS. It offers an application compatibility layer between different instruction set architectures. This means that Rosetta can translate binary instructions for one CPU architecture into another CPU architecture.</p><p>Thus, Rosetta 2 enables Intel compiled applications to run on the M1 chip, by translating the x86_64 CPU instructions to ARM64 CPU instructions.</p><p>I'm still trying to get used to this device and if you have tips for me, please send a word via <a href="https://twitter.com/IshSookun">Twitter</a>, <a href="https://www.facebook.com/ish.sookun">Facebook</a> or <a href="https://mu.linkedin.com/in/ishsookun">LinkedIn</a> or else an email to ishwon@opensuse.org.</p>]]></content:encoded>
        </item>
    </channel>
</rss>
