Discuss hardware-specific topics related to Mac.

Mac Documentation

Posts under Mac tag

133 Posts
Sort by:
Post not yet marked as solved
0 Replies
330 Views
Hi all, I have a macbook air 2022 with the M2 chip inside. I am trying to use a wired xbox 360 controller to play games on steam. However, whenever I try to plug it it, the light shines green for a little bit and then turns off. I checked in my usb device tree through the system report and it says that there is a controller plugged in. The controller doesn't work in the game either, are there any fixes? I am also on macOS Monterey version 12.4
Posted Last updated
.
Post not yet marked as solved
1 Replies
263 Views
I'm having issues using Finder Search (and spotlight search) for files on the network drive. Till the new update of OS Sonoma finder search was working, I think its a bug but today I uploaded to the latest version (14.4) but the issue remains. The issue is simple, when I search files/folders/anything on a network drive I find nothing. For example I have folders named with numbers "21053" "10992"; if I put the exact name on the search bar it doesn't show anything. I don't know what to do, please help me.
Posted Last updated
.
Post not yet marked as solved
1 Replies
487 Views
What's the best way in Instruments, to measure the amount of time spent on large memory copies? For a very simple example, when directly calling memcpy? Memory copying does not show up in the time profiler, it's not a VM cache miss or zeroing event, etc so it doesn't show there, it doesn't (as far as I can tell) show up in the system trace, and there aren't any other choices.
Posted
by swillits.
Last updated
.
Post not yet marked as solved
0 Replies
296 Views
I recently purchased a MacBook Pro with M3 chip running Sonoma 14.3.1 (to replace a MacBook Pro that used an Intel chip and ran Ventura 13.6.1.) I need to open Port 2001 to use socket.io for an app I am developing. On the older Mac, I simply entered : sudo ufw allow 8001 Now the Mac apparently uses pfctl as a firewall, but the documentation on how to open a port is not at all clear. Can you help.
Posted
by konvisoft.
Last updated
.
Post not yet marked as solved
1 Replies
203 Views
I have a Samsung wide screen monitor that worked with 2017 MacBook Air with intel running latest OS on beta that's available - Monterrey 12.7.4 - until I download software to share with a government entity. After removing that share screen software, I can no longer get a resolution about 1920x1080, which results in my monitor display looking stretched. I've reinstalled OS three times, set to monitor to defaults two times, and still nothing. How do I add resolution size about 1920-x1080?
Posted
by LoganHelp.
Last updated
.
Post not yet marked as solved
2 Replies
256 Views
Hello everybody, thanks for any feedback. I updated my cMP 4,1-5,1 from High Sierra to Mojave after installing the Saphire Nitro+ RX580. Since Mojave was installed (over H Sierra), my mac keeps crashing and restarting at sleep. I get mainly 2 kinds of reports -which I do not understand- one about kernel attack and one about bluetooth. Any help / directions is greatly aprecciated!
Posted
by Nikos_CH.
Last updated
.
Post not yet marked as solved
1 Replies
1.2k Views
Hello, I'm having issues running a precompiled binary through Terminal. The binary is a custom fork of software used to send code to a microprocessor through USB. The distributor is a known company and they have the binaries working on their machine (but I don't know which version of macOS they use). I was running Ventura 13.2.1 on a 2021 M1 and upgraded to Sonoma 14.3.1 — neither worked. I'm using zsh. I symlink the location of the binary, and it returns File Exists however, when I try to run the command, I receive zsh: permission denied: command then, when I sudo the command, I receive sudo: command: command not found. If this binary is not signed by Apple, could this be the reason it's not working? Could it be because I have FileVault turned on? Are others having this issue in their applications? Thank you
Posted Last updated
.
Post not yet marked as solved
0 Replies
324 Views
i have been told I sound robotic on company Teams & Zoom calls. This has only happened in the last update of Mac OS. Has anyone else come across this and found a solution? Mac OS: Version 14.4 Beta (23E5196e) Mac: Mac Ultra M1 / 64Gb Mem / 1TB SSD Again only happened since last update last week....
Posted
by kgurgen.
Last updated
.
Post not yet marked as solved
0 Replies
275 Views
I'm displaying file structure using DisclosureGroup. And I encountered a memory leak problem. Code Node Node represents a file or a folder. isExpanded is used to indicate if the child nodes are visible. If true, it will find its child nodes, which are set into children. If false, it will clear children for releasing references. class Node: ObservableObject, Identifiable, Hashable, CustomStringConvertible { // ... @Published var name: String @Published var children: [Node]? @Published var isExpanded = false { willSet { if self.isFile { // This node represents a file. // It does not have any children. return } if newValue { if children?.count == 0 { DispatchQueue.main.async { // get child nodes self.children = childrenOf(self.url) } } } else { if children?.count != 0 { DispatchQueue.main.async { // collapse child nodes self.children?.forEach { child in child.isExpanded = false } // clear children when this node is collapsed self.children = [] } } } } } init(/*...*/) { // ... print("init \(name)") } deinit { // ... print("deinit \(name)") } // ... } For convenience, I print some messages when initializing Node and deinitializing Node. TreeNode TreeNode displays Node using DisclosureGroup. struct TreeNode: View { @ObservedObject var parent: Node @ObservedObject var node: Node var body: some View { if node.isFile { Text(node.name) } else { DisclosureGroup( isExpanded: $node.isExpanded, content: { if node.isExpanded { ForEach(node.children ?? []) { child in TreeNode(parent: node, node: child) } } }, label: { FolderNodeView(node: node) } ) } } } struct FolderNodeView: View { @ObservedObject var node: Node var body: some View { Label( title: { Text(node.name) }, icon: { Image(systemName: "folder.fill") } ) } } I use if node.isExpanded for lazy loading. When node.isExpanded is true, it will show node's children and print initialization messages. Otherwise, it will hide child nodes and print deinitialization messages. But unexpectedly it does not print any deinitialization messages when the node is collapsed. This indicates that it retains references and therefore these Node objects still exists in memory causing memory leak. Demo When the node is expanded, its child nodes will be displayed after loading is completed. The code works correctly. Then I collapsed the node, it didn't print any deinitialization messages. And when I expanded it again, it initialized new nodes and deinitialized the old nodes at this time. Deinitialization seems to be delayed. So I guess TreeNode retains references when content is hidden. Then I deleted TreeNode in ForEach. DisclosureGroup( isExpanded: $node.isExpanded, content: { if node.isExpanded { ForEach(node.children ?? []) { child in // TreeNode(parent: node, node: child) } } }, label: { FolderNodeView(node: node) } ) It cannot display the child nodes. But it released reference correctly. So the code works expectedly. After that, I tried to replace TreeNode with Text or Label. I found that none of them released references immediately when I collapsed the node. Why did this happen? Any idea how to fix it?
Posted
by Hylas.
Last updated
.
Post not yet marked as solved
7 Replies
385 Views
As I am currently in development of an App for iOS, I also need a Mac. Currently, I am working on the Mac of my girlfriend. But, it turns out that I need a newer version of XCode which is not supported on Monterey. I also can't update Mac OS since it is not supported on this hardware anymore (also can't do it on her machine - it's hers). Long story short, I am now in the process of getting my own Mac. Unfortunately, I am not really familiar with the different Macs out there and wanted to know about longevity or longterm support of these machines regarding OS Updates. I want to be able to update also in the next cycles. As I do not have too much Budget, I wanted to find a refurbished one, but one that still supports OS Updates for a while so that I do not have the same situation next year and have a machine then which also can't update XCode/Mac OS. Is there anything you would recommend?
Posted
by MAUIOxo.
Last updated
.
Post not yet marked as solved
1 Replies
389 Views
Notes crashes 2 seconds after opening with the log `Exception Type: EXC_BAD_ACCESS (SIGSEGV) Exception Codes: KERN_INVALID_ADDRESS at 0x0000000120c50008 Exception Codes: 0x0000000000000001, 0x0000000120c50008 Termination Reason: Namespace SIGNAL, Code 11 Segmentation fault: 11 Terminating Process: exc handler [23832]`
Posted
by prfraczek.
Last updated
.
Post marked as solved
1 Replies
236 Views
My operating system Sonoma 14.3.1 does not allow me to use my Brother colour laser printer. This printer still works beautifully and it's beyond me why I'd have to ditch it and buy another just because there is no driver update (to Sonoma). I've tried wireless (which this printer offers), I've tried with USB, I've tried Airprint. No luck. In researching which printers are best suited for my Mac mini and laptop there doesn't seem to be a concrete answer...except for HP but I'm not fond of being forced to purchase their cartridges (with an HP chip) or the printer will not work. Any other brand suggestions that will be guaranteed to work for the next 5 years?
Posted
by r4schorr.
Last updated
.
Post not yet marked as solved
1 Replies
264 Views
When trying to view footnotes in draft or outline view in Word for Mac both from the App Store and the download from the Microsoft website, the screen continuously goes blank. Multiple fixes have been suggested however they have not worked. Please see below for additional information and ongoing user complaints: [https://discussions.apple.com/thread/255285863?sortBy=best) [https://answers.microsoft.com/en-us/msoffice/forum/all/trying-to-edit-footnote-separator-in-mac-word/9d47da2b-b4d9-4ca8-a904-22ca9d6a95f8)
Posted Last updated
.
Post not yet marked as solved
1 Replies
223 Views
trying to identify what this app is. Any have an idea
Posted Last updated
.
Post not yet marked as solved
1 Replies
218 Views
Compiled a bunch of activity on my Mac over the years that didn't seem right. Please advise as to secure or not.
Posted
by YizDis.
Last updated
.
Post not yet marked as solved
0 Replies
226 Views
Hello, I am looking to purchase a new Mac device after owning my current macbook pro since 2017, sadly this device operates with a intel processing hardware. The new macbook expectations are that the new device is suitable for developing code for apps on xcode. I would like the make mac product to offer great processing capabilities, portability, cost is another factor and somewhat a concern considering I am a college student. To list out the factors into my purchase decision: Reasonable cost Great portability Processing capability via xcode for app development. Adobe applications will be used but I will not be venturing into the realm of 3D rendering at the moment enough Internal storage space is also important to me Which Mac device can you recommend, and why? Really appreciate the input and guidance some of you may be able to provide!
Posted Last updated
.
Post not yet marked as solved
0 Replies
339 Views
Hello, I had trouble with bluetooth on my MacBook Air running macOs Sonoma 14.2.1. I could not find some bluetooth devices, like my iPad for instance, so I decided to delete the plist file to "reset" bluetooth settings. Unfortunately bluetooth still behaves the same and additionally PacketLogger stopped working. It stays empty and does not show any traffic. Anybody knows what to do here?
Posted
by clemhousa.
Last updated
.
Post not yet marked as solved
0 Replies
223 Views
I do not have Wifi at home in Japan because my iMac 2012 is too old for Japanese 2023,4 router and NTT docomo does not support old Mac or apple even soft bank has cellular 5G call capture apple that goes into encrypted network append locks it by passing my log in password ,this ia criminal but foreigner do not have any rights under Japanese law even Japan Apple call center sends me to English also I wish to say happy new year and congratulations that Apple developer is into apps but my2012 iMac Catalina OSX may not get full appreciation use I am still learning Ainu language and heard Ainu language researching Japan are developing making localization iOS/X bi-lingual interface for Ainu and dictionary predictive texts off iPhone also Huawei too for smart phone and Tungus Siberian lang page support with AI patterned my AI NU of nu =write see hear in Ainu I am interested in AI to make voice language in Ainu to teach talk Ainu learn Ainu and develop iOS /x for Ainu language and Nivkhi of Sakhalin and code in Ainu in the future AI will be able to write bi-lingual AINU TO...instruction code to make my own OS in Ainu language and also language and computer dictionary of computer terminology in Ainu bi-lingual and bi-lingual Ainu predictive text translated with voice so I can write to you in Ainu and art will show English translation word for word and this will be used in the Ainu bi-lingual predictive chat App and dictionary grammar 100 percent Ainu Computer and software code with dictionary not only me but millions of people with minority languages are demanding devices be designed to have rights for all languages that have ever existed and computer speed AI Can do the mammoth tasks of collecting data words to develop computer terms in those languages and users can edit their own words like now we can name app titles folder text names in Ainu A I and quantum can do this HUAWEI is doing this they see many people in thud world have no access to AI and power Wifi cell phones and China is going to get into this market because west just wants to have it for them selves they want to choose their language China will be able to serve this because Chinese is spoken by many and they are satisfied and they never impose Chinese language onto others but CHINESE HANJI 10,000 YEARS OLD CAN BE USED IN CODE AND MODERN COMPUTER AI it is a writing system designed for computing as though it they knew of computers 10,000 years ago. Apple had better serve the world in their language before someone else gets there there is Ainu icon on keyboard preference but useless because it renders roman into katakana and it destroys Ainu I am not saying that latin is the best until we develop a a script to fit with Ainu voice AI can do that by phonetic tactic voice recognition app Siri can not even teach me Finnish when I ask in Finnish !
Posted
by Epaqasnoo.
Last updated
.