norden.social is one of the many independent Mastodon servers you can use to participate in the fediverse.
Moin! Dies ist die Mastodon-Instanz für Nordlichter, Schnacker und alles dazwischen. Folge dem Leuchtturm.

Administered by:

Server stats:

3.4K
active users

#AppleMac

0 posts0 participants0 posts today

Apple: Kaikki Intel-pohjaiset Mac-tietokoneet ovat nyt virallisesti vanhentuneita

Vanhtentuneeksi (obsolete) luokittelu tarkoittaa sitä, että tuotteelle ei enää ole tarjolla virallisia huoltopalveluita eikä varaosien saatavuutta enää taata.

Viimeisenä Intel-Maccina vanhentuneeksi siirrettiin vuonna 2018 julkaistu Mac Mini.

dawn.fi/uutiset/2025/04/18/app

AfterDawn · Kaikki Intel-pohjaiset Macit ovat nyt vanhentuneitaBy Petteri Pyyny

Benchmark-Test: M3 Ultra und M4 Max nahezu gleichauf in CPU-Leistung
Apple hat den neuen Mac Studio mit M3 Ultra und M4 Max vorgestellt. Während Apple den M3 Ultra als doppelt so leistungsstark wie den M4 Max bewirbt, zeigen aktuelle Benchmark-Tests, dass der Unterschie
apfeltalk.de/magazin/news/benc
#Mac #News #Apple #AppleMac #AppleSilicon #CPUBenchmark #Geekbench #GPULeistung #M3Ultra #M4Max #MacPro #MacStudio

Macs im Euroraum: Apple erhöht die Preise für SSD, RAM und mehr
Apple hat die Preise für Speicher- und RAM-Upgrades bei Macs im Euroraum angehoben. Während die Dollarpreise in den USA unverändert bleiben, steigen die Zuschläge für zusätzli
apfeltalk.de/magazin/news/macs
#Mac #News #Apple #AppleMac #EuroDollarUmrechnung #Euroraum #MacMini #MacBookAir #MacBookPro #Preiserhhung #RAMUpgrade #SpeicherUpgrades #SSDPreise

If you're looking to buy a Mac anytime soon, especially if you're in the East Midlands (UK), Apple reseller KRSC has a Black Friday offer of 10% off all Macs, including the Mac Mini M4.

As we're switching from Windows this is rather timely :)

(We don't work for them, just thought someone might appreciate the info.)

krcs.co.uk

www.krcs.co.ukApple Premium Reseller | Apple Store | KRCSKRCS are a premium reseller of Apple products and accessories. We stock a wide range of Mac, Mac mini, iMac, iMac Pro, Macbook, MacBook Pro, iPad, iPad Pro, iPad mini iPhone, and iPod products online and in store with free delivery on ALL orders.

Something that's bugged me about Mac OS X for a while is the font handling. Specifically, all the non-Roman typefaces loaded by default.

On my systems, these always show a generic Roman style font so I don't know how or where they would be used in a native language.

Now, I'd like to deactivate them, because I dislike having to sift through enormous lists of essentially unusable fonts in my design apps.

Anyone able to advise how to do this safely? Thanks.

MacBook von 2016, mit #Lubuntu und #Fedora hatte ich bisher so teilweise Glück was die Treiber angeht.

Welche Distro würdet Ihr noch empfehlen?

Fehler:
Kamera, wird erkannt, leuchtet grün aber kein Bild; WiFi (langsam und instabil); Sound (nur per Kopfhörer)

#Linux #AppleMac

Guides:
andreafortuna.org/2024/08/24/f

Noch nicht alles versucht:
easylinuxtipsproject.blogspot.

Andrea Fortuna · From Faceless to FaceTime: installing webcam drivers on a Debian-powered MacBook AirIn today’s fast-paced tech world, it’s easy to get caught up in the latest and greatest devices. But what if I told you that sometimes, the old can be made new again? That’s exactly what I discovered when I decided to breathe new life into my trusty 2015 MacBook Air (model 7,2) by installing Debian. So, I want to share my journey with you, focusing particularly on one of the trickier aspects of this adventure: getting the FaceTime HD webcam to work. Why Debian on a MacBook Air? Before we dive into the nitty-gritty of webcam drivers, you might be wondering: why install Debian on a MacBook Air in the first place? Well, there are a few compelling reasons: Performance Boost: As Apple’s support for older hardware wanes, these machines can start to feel sluggish on newer macOS versions. Linux distributions like Debian are often lighter on resources, giving your old hardware a new lease on life. Security: Debian is known for its stability and security. Even if Apple no longer supports your device with security updates, you can keep your system safe and up-to-date with Debian. Customization: Linux offers unparalleled customization options. From choosing your desktop environment to tweaking system settings, you have control over every aspect of your computing experience. Learning Opportunity: If you’re interested in expanding your tech skills, running Linux on a MacBook is an excellent learning experience. You’ll gain insights into hardware compatibility, driver management, and the inner workings of operating systems. Software Freedom: Debian, being open-source, gives you the freedom to use, study, modify, and distribute the software as you see fit. Now, while the installation of Debian itself is relatively straightforward (and a topic for another day), getting all the hardware to work correctly can be a bit of a challenge. One particular component that gave me a run for my money was the built-in FaceTime HD webcam. The FaceTime HD Webcam Apple’s FaceTime HD webcams are not your run-of-the-mill USB webcams. They use a custom protocol that isn’t natively supported by Linux kernels. This means that out of the box, your shiny new Debian installation won’t recognize the webcam. But fear not! The open-source community has come to the rescue with custom drivers. The journey to get the webcam working involves compiling and installing these custom drivers. It’s not a plug-and-play solution, but with a little patience and the right instructions, you’ll be video conferencing in no time. The FaceTime HD Driver installation process After much searching and experimenting, I stumbled upon a fantastic resource: a GitHub repository maintained by Patrik Jakobsson (patjak on GitHub). His work on reverse-engineering the FaceTime HD camera has been invaluable to the Linux community. The installation process involves two main components: The firmware for the webcam The kernel module (driver) that allows the system to communicate with the webcam Let’s break down the process step-by-step. Step 1: Installing Prerequisites Before we can install the drivers, we need to ensure we have all the necessary tools and libraries. Open a terminal and run the following command: sudo apt install xz-utils curl cpio make git linux-headers-generic libssl-dev checkinstall This command installs: xz-utils: For working with compressed files curl: For downloading files from the internet cpio: For working with cpio archives (used in the firmware installation) make: Essential for compiling software from source git: To clone the necessary repositories linux-headers-generic: Kernel headers required for compiling kernel modules libssl-dev: OpenSSL development libraries checkinstall: A tool that creates a binary package from source installations Step 2: Installing the Firmware The first component we need to install is the firmware. This is the low-level code that runs on the webcam itself. Here’s how to do it: Clone the firmware repository: cd /tmp git clone https://github.com/patjak/facetimehd-firmware.git Change to the firmware directory and compile: cd facetimehd-firmware make Install the firmware: sudo make install This process downloads the necessary firmware files, extracts them, and places them in the correct location on your system. Step 3: Installing the Kernel Module With the firmware in place, we now need to install the kernel module that allows the Linux kernel to communicate with the webcam. Here’s the process: Clone the kernel module repository: cd /tmp git clone https://github.com/patjak/bcwc_pcie.git Change to the module directory and compile: cd bcwc_pcie make Install the module: sudo make install Update the module dependencies: sudo depmod Load the module: sudo modprobe facetimehd If everything went smoothly, your FaceTime HD webcam should now be recognized by the system! Automating the process Now, if you’re like me and you love to streamline processes (or if you anticipate needing to do this again in the future), you might want to automate this installation. I’ve created a simple bash script that combines all these steps: #!/bin/bash sudo apt install xz-utils curl cpio make curl xz-utils cpio -y cd /tmp git clone https://github.com/patjak/facetimehd-firmware.git cd facetimehd-firmware make sudo make install sudo apt-get install linux-headers-generic git kmod libssl-dev checkinstall cd /tmp git clone https://github.com/patjak/bcwc_pcie.git cd bcwc_pcie make sudo make install sudo depmod sudo modprobe facetimehd To use this script: Create a new file, let’s call it install_facetimehd.sh Copy and paste the above code into the file Save the file and make it executable with chmod +x install_facetimehd.sh Run the script with sudo ./install_facetimehd.sh This script automates the entire process, from installing prerequisites to loading the kernel module. It’s a real time-saver if you need to set up multiple machines or if you find yourself reinstalling your system frequently. Testing the Webcam Once you’ve gone through all these steps, you’ll naturally want to make sure everything is working correctly. There are several ways to test your webcam, but one simple method is to use the mpv media player: mpv av://v4l2:/dev/video0 --profile=low-latency --untimed This command opens a window showing the webcam feed. If you see yourself, congratulations! Your FaceTime HD webcam is now working on Debian. Troubleshooting Of course, in the world of technology, things don’t always go according to plan. If you’re having trouble getting your webcam to work, here are a few things to check: Kernel Version: Make sure you’re running a compatible kernel version. You can check your kernel version with uname -r. Module Loading: Ensure the module is loaded correctly. You can check with lsmod | grep facetimehd. If you don’t see any output, try loading the module manually with sudo modprobe facetimehd. Firmware Installation: Verify that the firmware was installed correctly. Look for files in /lib/firmware/facetimehd/. Compile Errors: If you encountered any errors during the compilation process, make sure you have all the necessary development tools installed. You might need to install additional packages like build-essential. Hardware Detection: Check if your system is detecting the webcam hardware. You can use lsusb to list USB devices or lspci for PCI devices. Logs: Check system logs for any error messages. Use dmesg | grep facetimehd to see kernel messages related to the webcam. Remember, the Linux community is vast and helpful. If you’re stuck, don’t hesitate to reach out to forums or mailing lists for assistance. The Bigger Picture: Linux on Mac Hardware Getting the FaceTime HD webcam to work is just one piece of the puzzle when it comes to running Linux on Mac hardware. While many components work out of the box, you might encounter other challenges, such as: Wi-Fi: Some MacBook models use Broadcom wireless chips that require additional firmware. Graphics: Depending on your model, you might need to install proprietary drivers for optimal graphics performance. Keyboard Backlight: Controlling the keyboard backlight might require additional tools or scripts. Touchpad: While basic functionality usually works, getting all gestures to work might require some tweaking. Power Management: You might need to install additional tools for optimal battery life and performance management. Each of these could be an article in itself, and tackling them all is part of the adventure of running Linux on Mac hardware. It’s a journey of discovery, problem-solving, and ultimately, a deeper understanding of how your computer works. Why Go Through All This Trouble? At this point, you might be wondering: is it worth all this effort? Why not just use a supported operating system or buy a new computer? Well, there are several compelling reasons: Environmental Impact: By extending the life of old hardware, we reduce electronic waste and the demand for new devices, which has a positive environmental impact. Cost-Effective: Breathing new life into old hardware is significantly cheaper than buying a new machine, especially if your needs are relatively basic. Learning Experience: The process of installing Linux and getting everything to work is an invaluable learning experience. You gain a deeper understanding of operating systems, hardware interactions, and problem-solving in a technical context. Customization and Control: Linux allows for a level of customization and control that’s simply not possible with macOS. You can tailor your computing environment to your exact needs and preferences. Privacy and Security: With growing concerns about privacy in mainstream operating systems, running your own Linux system gives you more control over your data and system processes. Community and Open Source: By using and contributing to open-source projects (even if just by reporting issues or helping others), you become part of a global community working towards better, more accessible technology for all. Conclusion Embarking on the journey of installing Debian on an old MacBook Air is more than just a technical exercise—it’s a statement. It’s a way of saying that we don’t need to be bound by the artificial limitations set by manufacturers. It’s a celebration of the power of open-source software and the ingenuity of the developer community. Getting the FaceTime HD webcam to work is just one example of the challenges you might face, but it’s also an example of what’s possible when developers come together to solve problems. Thanks to the hard work of developers like Patrik Jakobsson, we can continue to use and enjoy our hardware long after official support has ended. So, the next time you’re tempted to relegate that old MacBook to the back of a drawer, consider giving it new life with Debian.

Was dich bei den neuen M4 Macs erwartet – und wann sie erscheinen
Apples nächster großer Upgrade-Zyklus für den Mac steht bevor und dreht sich um den M4-Chip. Die neuen Macs werden nicht alle gleichzeitig veröffentlicht, und da Apple keine festen Zeitpläne wie bei iPh
apfeltalk.de/magazin/news/was-
#News #AppleM4Chip #AppleMac #M4IMac #M4MacMini #M4MacPro #M4MacStudio #M4MacBookAir #M4MacBookPro #MacUpgrades #WiFi7

Happy 40th Birthday to the #Apple #Mac 🎉🎂

I bought my first one in 1985 when I started my medical practice. There was no EHR back then so I wrote my own (and sold under the name Mac’N Med using a relation database development platform called Helix)

PC’s were still on #DOS and the tech pundits were critical of the Graphic User Interface (GUI), saying it was for sissies 😂 but look now!

PS: #RidleyScott when on to do the #Alien movies and more recently, #Napoleon.

#AppleMacintosh #applemac #macintosh #macintosh40
youtube.com/watch?v=ErwS24cBZP

There's a rather special gaming anniversary today, the 30th birthday of a game that sold a million CD-ROMs just to play it - MYST!

Released on 24th September 1993. An adventure unlike any other and a poster child for the multimedia CD gaming revolution.

7th Guest might have lit the fire, but MYST poured a skipful of linking book pages onto it to stoke it into a blazing inferno.

I have a lot of fond memories of the MYST series and it was actually the PlayStation version that I played first, same with Riven.

Happy birthday, Myst!

Any Myst-y eyed memories to share, Fedinauts?