{"id":477,"date":"2026-05-31T15:24:27","date_gmt":"2026-05-31T19:24:27","guid":{"rendered":"https:\/\/blog.beausanders.org\/?p=477"},"modified":"2026-06-01T11:38:46","modified_gmt":"2026-06-01T15:38:46","slug":"reviving-a-2012-macbook-pro-a1278-with-linux-mint-solving-the-5-ghz-wi-fi-mystery","status":"publish","type":"post","link":"https:\/\/blog.beausanders.org\/index.php\/reviving-a-2012-macbook-pro-a1278-with-linux-mint-solving-the-5-ghz-wi-fi-mystery\/","title":{"rendered":"Reviving a 2012 MacBook Pro A1278 with Linux Mint: Solving the 5 GHz Wi-Fi Mystery"},"content":{"rendered":"<p>One of the reasons I enjoy working with older computers is that they still have plenty of life left in them if you are willing to invest a little time and patience. Recently, I purchased a Mid-2012 MacBook Pro A1278 from eBay as a revival project. My goal was simple: upgrade the hardware, install Linux, and create a useful machine that could continue serving someone for years to come.<\/p>\n<p>As often happens with Linux projects, the journey turned out to be more interesting than the destination.<!--more--><\/p>\n<h2>The Hardware<\/h2>\n<p>The MacBook Pro A1278 is a Mid-2012 13-inch model featuring:<\/p>\n<ul>\n<li>Intel Core i5 processor<\/li>\n<li>16 GB RAM (upgraded)<\/li>\n<li>OWC SSD<\/li>\n<li>Broadcom BCM4331 wireless chipset<\/li>\n<li>Broadcom BCM94331PCIEBT4CAX AirPort card<\/li>\n<\/ul>\n<p>The machine was in excellent physical condition. The battery was surprisingly healthy, the MagSafe charging port worked correctly, and Linux Mint installed without any major issues.<\/p>\n<p>At least, that&#8217;s what I thought.<\/p>\n<h2>The Problem<\/h2>\n<p>After installing Linux Mint, I noticed that only 2.4 GHz wireless networks appeared in the Network Manager.<\/p>\n<p>My 5 GHz wireless network was nowhere to be found.<\/p>\n<p>The symptoms were:<\/p>\n<ul>\n<li>2.4 GHz Wi-Fi worked perfectly<\/li>\n<li>5 GHz Wi-Fi networks were not visible<\/li>\n<li>Manual connection attempts failed<\/li>\n<li>Bluetooth worked normally<\/li>\n<\/ul>\n<p>Since the previous owner confirmed that 5 GHz networking worked under macOS, I knew the hardware itself was capable of dual-band operation.<\/p>\n<p>That left Linux as the primary suspect.<\/p>\n<h2>Initial Investigation<\/h2>\n<p>Like many Linux users, my first instinct was to suspect hardware.<\/p>\n<p>I considered:<\/p>\n<ul>\n<li>Replacing the wireless card<\/li>\n<li>Installing a newer Broadcom card<\/li>\n<li>Purchasing adapter boards<\/li>\n<li>Swapping antenna assemblies<\/li>\n<\/ul>\n<p>Fortunately, I decided to investigate further before spending more money.<\/p>\n<p>The first useful command was:<\/p>\n<pre><code class=\"language-bash\">lspci -k | grep -A3 -i network\r\n<\/code><\/pre>\n<p>The wireless card was identified correctly, but Linux Mint was using the open-source Broadcom driver stack.<\/p>\n<p>Additional investigation revealed:<\/p>\n<pre><code class=\"language-bash\">sudo dmesg | grep -i b43\r\n<\/code><\/pre>\n<p>which produced the critical clue:<\/p>\n<pre><code class=\"language-text\">b43-phy0 warning: 5 GHz band is unsupported on this PHY\r\n<\/code><\/pre>\n<p>At that moment, the mystery began to unravel.<\/p>\n<h2>Testing Another Distribution<\/h2>\n<p>To determine whether the problem was hardware or software, I installed Zorin OS on a spare SSD.<\/p>\n<p>Immediately after installation:<\/p>\n<ul>\n<li>2.4 GHz worked<\/li>\n<li>5 GHz worked<\/li>\n<li>Bluetooth worked<\/li>\n<\/ul>\n<p>No special configuration was required.<\/p>\n<p>That result proved beyond any doubt that:<\/p>\n<ul>\n<li>The wireless card was good<\/li>\n<li>The antennas were good<\/li>\n<li>The hardware supported 5 GHz operation<\/li>\n<\/ul>\n<p>The issue was entirely software-related.<\/p>\n<h2>The Breakthrough<\/h2>\n<p>On Zorin, I discovered that the wireless card was not using the open-source b43 driver.<\/p>\n<p>Instead, it was using Broadcom&#8217;s proprietary STA driver:<\/p>\n<pre><code class=\"language-bash\">lspci -k | grep -A3 -i network\r\n<\/code><\/pre>\n<p>Output:<\/p>\n<pre><code class=\"language-text\">Kernel driver in use: wl\r\nKernel modules: bcma, wl\r\n<\/code><\/pre>\n<p>Further investigation showed:<\/p>\n<pre><code class=\"language-bash\">dpkg -l | grep broadcom\r\n<\/code><\/pre>\n<p>Output:<\/p>\n<pre><code class=\"language-text\">broadcom-sta-dkms\r\n<\/code><\/pre>\n<p>That was the answer.<\/p>\n<p>The proprietary Broadcom STA driver (wl) fully supports the BCM4331 chipset, including 5 GHz operation.<\/p>\n<p>The open-source b43 driver does not.<\/p>\n<h2>The Fix<\/h2>\n<p>Back on Linux Mint, I performed a fresh installation.<\/p>\n<p>Interestingly, the wireless adapter was not detected during installation, so I connected the MacBook Pro to my network using Ethernet.<\/p>\n<p>After installation:<\/p>\n<pre><code class=\"language-bash\">sudo apt update\r\nsudo apt upgrade -y\r\nsudo apt install broadcom-sta-dkms\r\n<\/code><\/pre>\n<p>After rebooting, everything worked.<\/p>\n<p>Verification:<\/p>\n<pre><code class=\"language-bash\">lspci -k | grep -A3 -i network\r\n<\/code><\/pre>\n<p>Output:<\/p>\n<pre><code class=\"language-text\">Kernel driver in use: wl\r\n<\/code><\/pre>\n<p>Success.<\/p>\n<h2>Results<\/h2>\n<p>The MacBook Pro now has:<\/p>\n<ul>\n<li>Linux Mint<\/li>\n<li>16 GB RAM<\/li>\n<li>SSD storage<\/li>\n<li>Working Bluetooth<\/li>\n<li>Working 2.4 GHz Wi-Fi<\/li>\n<li>Working 5 GHz Wi-Fi<\/li>\n<\/ul>\n<p>No hardware replacement was required.<\/p>\n<h2>Lessons Learned<\/h2>\n<p>This project reinforced several lessons that apply far beyond old MacBooks:<\/p>\n<h3>Verify Before Replacing Hardware<\/h3>\n<p>The hardware was never the problem.<\/p>\n<p>A driver change solved everything.<\/p>\n<h3>Compare Distributions<\/h3>\n<p>Installing Zorin OS provided the critical clue that led to the solution.<\/p>\n<p>Sometimes a second Linux distribution can reveal exactly what is wrong.<\/p>\n<h3>Drivers Matter<\/h3>\n<p>For the BCM4331 wireless chipset:<\/p>\n<p>Bad path:<\/p>\n<pre><code class=\"language-text\">b43\r\nbcma\r\nfirmware-b43-installer\r\n<\/code><\/pre>\n<p>Good path:<\/p>\n<pre><code class=\"language-text\">broadcom-sta-dkms\r\nwl\r\n<\/code><\/pre>\n<h3>Follow the Evidence<\/h3>\n<p>Every troubleshooting project eventually becomes a process of eliminating possibilities.<\/p>\n<p>In this case, the evidence led from suspected hardware failure to a simple driver selection issue.<\/p>\n<h2>Final Thoughts<\/h2>\n<p>This old MacBook Pro has turned into a surprisingly capable Linux machine.<\/p>\n<p>More importantly, it reminded me why I enjoy these projects so much. Reviving older hardware is part engineering, part detective work, and part learning experience.<\/p>\n<p>If you have an older MacBook gathering dust in a closet, don&#8217;t be too quick to recycle it. With a little patience and the right Linux distribution, it may have many productive years left.<\/p>\n<p>And sometimes the solution is not replacing the hardware at all.<\/p>\n<p>Sometimes it is just one package away.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>One of the reasons I enjoy working with older computers is that they still have plenty of life left in them if you are willing to invest a little time and patience. Recently, I purchased a Mid-2012 MacBook Pro A1278 from eBay as a revival project. My goal was simple: upgrade the hardware, install Linux, &hellip;<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[2,71,3],"tags":[74,75,72,73],"class_list":["post-477","post","type-post","status-publish","format-standard","hentry","category-tutorials-that-may-be-helpful","category-linux","category-solutions-to-problems-i-found-helpful","tag-5ghz","tag-broadcom","tag-linux-mint","tag-wi-fi"],"_links":{"self":[{"href":"https:\/\/blog.beausanders.org\/index.php\/wp-json\/wp\/v2\/posts\/477","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/blog.beausanders.org\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/blog.beausanders.org\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/blog.beausanders.org\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/blog.beausanders.org\/index.php\/wp-json\/wp\/v2\/comments?post=477"}],"version-history":[{"count":4,"href":"https:\/\/blog.beausanders.org\/index.php\/wp-json\/wp\/v2\/posts\/477\/revisions"}],"predecessor-version":[{"id":481,"href":"https:\/\/blog.beausanders.org\/index.php\/wp-json\/wp\/v2\/posts\/477\/revisions\/481"}],"wp:attachment":[{"href":"https:\/\/blog.beausanders.org\/index.php\/wp-json\/wp\/v2\/media?parent=477"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/blog.beausanders.org\/index.php\/wp-json\/wp\/v2\/categories?post=477"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/blog.beausanders.org\/index.php\/wp-json\/wp\/v2\/tags?post=477"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}