Apple File System is the default file system for iOS 10.3 and later, and for macOS High Sierra and later.

Posts under APFS tag

200 Posts

Post

Replies

Boosts

Views

Activity

Locked out of my bank: needing iOS 13
I have been unable to access my bank account as I need the mobile security app to generate my security code. The updated version requires iOS 13 and my iPhone 6 is only 12.5. Please can you help. I love my iPhone 6 and have no intention of buying a newer model because businesses have foolish chosen to alienate them and possible lose them (been my bank for 29 years!). Apple Team, please can you help me.
1
0
521
May ’23
How do I edit default C++ file templates for Xcode?
So, I want to change the files xcode make when I hit New > File > C++ file. I found out earlier you had to go /Applications/Xcode.app/Contents/Developer/Library/Xcode/Templates/ and find needed file templates here, but it seems like something changes and now I can't fint c and c++ templates here. Does anybody know where could it go?
1
0
1.2k
May ’23
Not sure if this is the right place but looking for urgent help!
Using a Mac - did an attempted update to Lightroom (LrC) and now it won't open - this is the report I get ..... Translated Report (Full Report Below) Incident Identifier: 1EFB8A53-B679-4C03-A4D9-06F19928A256 CrashReporter Key: 8EADC170-8C78-8892-16C4-FD021234F8F6 Hardware Model: iMac19,1 Process: Adobe Lightroom Classic [762] Path: /Applications/Adobe Lightroom Classic/Adobe Lightroom Classic.app/Contents/MacOS/Adobe Lightroom Classic Identifier: com.adobe.LightroomClassicCC7 Version: 12.2.1 (12.2.1) Code Type: X86-64 (Native) Role: Default Parent Process: launchd [1] Coalition: com.adobe.LightroomClassicCC7 [720] Date/Time: 2023-05-07 09:37:20.7289 +0100 Launch Time: 2023-05-07 09:37:20.6254 +0100 OS Version: macOS 12.6.2 (21G320) Release Type: User Report Version: 104 Exception Type: EXC_CRASH (SIGKILL (Code Signature Invalid)) Exception Codes: 0x0000000000000000, 0x0000000000000000 Exception Note: EXC_CORPSE_NOTIFY Termination Reason: CODESIGNING 1 Triggered by Thread: 0 Thread 0 Crashed: 0 0x11163fae0 _dyld_start + 0 1 ??? 0x1 ??? Thread 0 crashed with X86 Thread State (64-bit): rax: 0x0000000000000000 rbx: 0x0000000000000000 rcx: 0x0000000000000000 rdx: 0x0000000000000000 rdi: 0x0000000000000000 rsi: 0x0000000000000000 rbp: 0x0000000000000000 rsp: 0x00007ff7b1f2fb70 r8: 0x0000000000000000 r9: 0x0000000000000000 r10: 0x0000000000000000 r11: 0x0000000000000000 r12: 0x0000000000000000 r13: 0x0000000000000000 r14: 0x0000000000000000 r15: 0x0000000000000000 rip: 0x000000011163fae0 rfl: 0x0000000000000200 cr2: 0x0000000000000000 Logical CPU: 0 Error Code: 0x00000000 Trap Number: 0 Binary Images: 0x11163b000 - 0x1116a6fff () 0x0 - 0xffffffffffffffff ??? () <00000000-0000-0000-0000-000000000000> ??? Error Formulating Crash Report: dyld_process_snapshot_get_shared_cache failed EOF Can anyone help please- I don't really want to do an re-install as I have edited photos not backed up (as I only usually back up on a monthly basis)
0
0
842
May ’23
Xcode 14.1 (14B47b) Distribution of "App" requires the "iPhoneOS" platform to be installed.
i have successfully archived the code. when trying to publish the app in app store. clicking on distribute button from archives am getting this error. "Distribution of "App name" requires the "iPhoneOS" platform to be installed. Please install the required platform to distribute "App Name."" please help as to fix this.
1
1
972
May ’23
Files not showing up in Documents
Beginner Question: I have saved a couple of documents at FileManager.default.urls(for: .documentDirectory, in: .userDomainMask) I confirmed using fm.contentsOfDirectory(at: path, includingPropertiesForKeys: nil) that the files do exist. How can I find them on my iPhone via the UI? They do not seem to show-up in the Document application. I like to share a couple of them manually with other devices. Thanks so much DJ
2
0
1.6k
Apr ’23
Volume Hash Mismatch
Hi, I've installed Monterey Beta 1 .... and then did an OTA update to MR B2. After the update to MR B2 ... I've started to get this "Volume Hash Mismatch" in my notification center ... I've tried to reboot into Recovery, and do a "First Aid" an all volumes in my MacBook Air's ssd ... But this message still re-appears. Any idea why this happens? or a fix? cheers, Daniel.
33
0
32k
Apr ’23
Build a Custom CRM with Xcode?
Is it possible to build a basic CRM with Xcode? If so, is the database linked from another program or does Xcode have the ability to do that as well? If this is a possibliity, where might I find help aids or instructions to accomplish this? Please keep in mind, I am super new at this, so I apologize if this is a dumb question. Thank you in advance.
0
0
521
Apr ’23
Why does this code break my hard drive?
When I run this code specifying a 16TB disk: // // main.swift // walking_on_directories // // import Foundation import CommonCrypto import Foundation func sha256Checksum(forFileAtPath path: String) -> String? { // Open the file for reading guard let file = FileHandle(forReadingAtPath: path) else { return nil } defer { file.closeFile() } // Initialize the SHA-256 context var context = CC_SHA256_CTX() CC_SHA256_Init(&context) // Read the file in chunks and update the context let chunkSize = 1024 * 1024 // 1 MB while autoreleasepool(invoking: { let data = file.readData(ofLength: chunkSize) if !data.isEmpty { data.withUnsafeBytes { _ = CC_SHA256_Update(&context, $0.baseAddress, CC_LONG(data.count)) } return true } else { return false } }) {} // Finalize the context and get the checksumt var digest = [UInt8](repeating: 0, count: Int(CC_SHA256_DIGEST_LENGTH)) CC_SHA256_Final(&digest, &context) let checksum = digest.map { String(format: "%02hhx", $0) }.joined() return checksum } let startLocation = "/Volumes/16-1-23/debug_file_tracker/images" let fileManager = FileManager.default let enumerator:FileManager.DirectoryEnumerator = fileManager.enumerator(atPath:startLocation)! var count = 0 while let element = enumerator.nextObject() as? String { var existing_files_checksum = Set<String>() var isDirectory: ObjCBool = false let filePath: String = startLocation + "/" + element if fileManager.fileExists(atPath: filePath, isDirectory: &isDirectory) { if isDirectory.boolValue { print("Skipping directory: " + filePath) }else { if let checksum = sha256Checksum(forFileAtPath: filePath) { if existing_files_checksum.contains(checksum) { print("deleting " + filePath) try fileManager.removeItem(atPath: filePath) count = count + 1 } else { print("adding " + checksum) existing_files_checksum.insert(checksum) } } else { print("Failed to calculate checksum for " + filePath) } } } } print("deleted " + String(count) + " files") It runs for hours, printing checksums. It calculates the checksum for about 17,000 files. Then my disk breaks. Here's what I mean by breaks: Before running the program:The disk checkout out with disktutil, It is fine: ls shows /volumes/16-1-23 But then, this program crashes because it can't find the next file to checksum. When I do an ls -al /volumes/16-1-23 the command returns permission denied. sudo ls -al total 0 d--x--x--x 2 root wheel 64 Apr 23 19:16 . drwxr-xr-x 23 sam wheel 736 Apr 24 09:03 .. when I do an ls /volumes I see: ls -al total 96 drwxr-xr-x 23 sam wheel 736 Apr 24 09:19 . drwxr-xr-x 20 root wheel 640 Apr 1 12:46 .. d--x--x--x 2 root wheel 64 Apr 23 19:16 16-1-23 d--x--x--x 2 root wheel 64 Apr 23 21:59 16-1-23 1 d--x--x--x 2 root wheel 64 Apr 24 04:09 16-1-23 10 d--x--x--x 2 root wheel 64 Apr 24 08:13 16-1-23 11 drwx------@ 14 sam staff 448 Apr 15 15:42 16-1-23 12 d--x--x--x 2 root wheel 64 Apr 23 22:14 16-1-23 2 d--x--x--x 2 root wheel 64 Apr 23 23:04 16-1-23 3 d--x--x--x 2 root wheel 64 Apr 23 23:04 16-1-23 4 d--x--x--x 2 root wheel 64 Apr 24 00:13 16-1-23 5 d--x--x--x 2 root wheel 64 Apr 24 00:13 16-1-23 6 d--x--x--x 2 root wheel 64 Apr 24 01:08 16-1-23 7 d--x--x--x 2 root wheel 64 Apr 24 02:01 16-1-23 8 d--x--x--x 2 root wheel 64 Apr 24 03:05 16-1-23 9 drwxrwxr-x@ 9 sam staff 288 Apr 7 13:06 16-3-23 all of the "disks" ending in a number e.g 16-1-23 9 aren't accessible. sudo ls -al 1 ↵ Password: total 0 shows: d--x--x--x 2 root wheel 64 Apr 24 03:05 . drwxr-xr-x 23 sam wheel 736 Apr 24 09:19 .. Diskuitil didn't find any errors. I'd really love to know what's going on. I can produce this error with Python code that does the same thing. I was hoping that the problem would go away if I wrote it in Swift. It didn't. I guess that's good. However, now am I really stuck. Any advice appreciated.
2
0
592
Apr ’23
Adding the Ability to Customize Outline Colors in Apple's Default Notes App
Content: I would like to suggest the addition of a feature in Apple's default Notes app that allows users to customize the color of the outlines of their text, in addition to the font and font color. It would be helpful if users could choose bright colors, such as fluorescent or white, to make their text stand out more, especially when the screen is dark and they want to use a dark font. I believe this would make the app more visually appealing and user-friendly.
1
0
1.1k
Apr ’23
When I connect to mlmodel with my swift code it has generate following error
[corem1] Output backing for Identity is not compatiple with the model's output feature description. [coremi] Failure in -bindOutputBuffers: outputBackings: error:. Image size 1 x 512 not in allowed set of image sizes. Following display to spec.discription on python env input { name: "input_2" type { imageType { width: 512 height: 768 colorSpace: RGB imageSizeRange { widthRange { lowerBound: 512 upperBound: 512 } heightRange { lowerBound: 768 upperBound: 768 } } } } } output { name: "Identity" type { imageType { width: 512 height: 768 colorSpace: GRAYSCALE } } }
1
0
609
Apr ’23
macOS CatalinA -Who knows this message (hard disk utility first aid) - Warning: MT mapping is not completely referenced?
Greetings to you! For now; hope you are all healthy !? To my question: 1) Who knows this message (hard disk utility first aid) - Warning: MT mapping is not completely referenced? Now had no (or only the usual Catalina) problems, but occasionally run first aid over it. This message comes at "Container disc2" at the end of the check. The same when checking from "Fusion Drive". The same message comes. With Macintosh HD 1 + 2 data - does this message not appear? Couldn't find much about it on the net, tried some suggestions https://discussions.apple.com/thread/251159425 but didn't do anything. Ne reinstall. I still did before I don't know what that means - I have backups with TM anyway. That with the reinstall. was a recommendation to fix the problem - whatever the consequences could be ....? 2) Did someone check that with "first aid"? 3) If so. Does this message come from Erste H. only for "Container disc2" and "Fusion Drive"? I found that after Catalina installation. Clean installation didn't help either? I was unfortunately not able to load a ScreenShot ??
19
2
13k
Apr ’23
Requesting help trouble shooting file system Issue
Here is what I am trying to do: In Python, I have a script that walks the directly the structure of internal and external local disks. If the file is an image, it copies it to a large disk. Walk directories if file is image then get a checksum for it. check a database to see if the checksum has been seen before. If yes, done (continue) if no, determine where the file should be copied to on a large 16tb disk. “/volumes/big_disk/image/date/file copy file there update database with checksum and location Here’s what’s is happening. At some point, /volumes/big_disk goes away and is replaced with something like this /volumes/big_disk 1 /volumes/big_disk 2 etc. These directories can’t be read or written to. (Permission denied error 13) game over if I reboot the computer, /volumes/big_disk 1 /volumes/big_disk 2 etc. Go away and /volumes/big_disk is back and apparently OK. Setup: M1 Mac 16 TB disk other smaller USB disks some of the smaller disks aren’t APFS the large disk is APFS Happy to upload code if that would hep. Thanks in advance !
0
0
482
Apr ’23
See tracking rectangles in macOS Ventura
Hi, quartz debug 4.2 (from the "Additional Tools for Xcode 14.2") doesn't show most tracking rectangles on macOS Ventura. I tested this on two Macs. Any solution to debug tracking areas on this OS? Thanks.
Replies
3
Boosts
1
Views
1.7k
Activity
May ’23
Locked out of my bank: needing iOS 13
I have been unable to access my bank account as I need the mobile security app to generate my security code. The updated version requires iOS 13 and my iPhone 6 is only 12.5. Please can you help. I love my iPhone 6 and have no intention of buying a newer model because businesses have foolish chosen to alienate them and possible lose them (been my bank for 29 years!). Apple Team, please can you help me.
Replies
1
Boosts
0
Views
521
Activity
May ’23
adnc
sxxsxs
Replies
0
Boosts
1
Views
744
Activity
May ’23
How do I edit default C++ file templates for Xcode?
So, I want to change the files xcode make when I hit New > File > C++ file. I found out earlier you had to go /Applications/Xcode.app/Contents/Developer/Library/Xcode/Templates/ and find needed file templates here, but it seems like something changes and now I can't fint c and c++ templates here. Does anybody know where could it go?
Replies
1
Boosts
0
Views
1.2k
Activity
May ’23
Not sure if this is the right place but looking for urgent help!
Using a Mac - did an attempted update to Lightroom (LrC) and now it won't open - this is the report I get ..... Translated Report (Full Report Below) Incident Identifier: 1EFB8A53-B679-4C03-A4D9-06F19928A256 CrashReporter Key: 8EADC170-8C78-8892-16C4-FD021234F8F6 Hardware Model: iMac19,1 Process: Adobe Lightroom Classic [762] Path: /Applications/Adobe Lightroom Classic/Adobe Lightroom Classic.app/Contents/MacOS/Adobe Lightroom Classic Identifier: com.adobe.LightroomClassicCC7 Version: 12.2.1 (12.2.1) Code Type: X86-64 (Native) Role: Default Parent Process: launchd [1] Coalition: com.adobe.LightroomClassicCC7 [720] Date/Time: 2023-05-07 09:37:20.7289 +0100 Launch Time: 2023-05-07 09:37:20.6254 +0100 OS Version: macOS 12.6.2 (21G320) Release Type: User Report Version: 104 Exception Type: EXC_CRASH (SIGKILL (Code Signature Invalid)) Exception Codes: 0x0000000000000000, 0x0000000000000000 Exception Note: EXC_CORPSE_NOTIFY Termination Reason: CODESIGNING 1 Triggered by Thread: 0 Thread 0 Crashed: 0 0x11163fae0 _dyld_start + 0 1 ??? 0x1 ??? Thread 0 crashed with X86 Thread State (64-bit): rax: 0x0000000000000000 rbx: 0x0000000000000000 rcx: 0x0000000000000000 rdx: 0x0000000000000000 rdi: 0x0000000000000000 rsi: 0x0000000000000000 rbp: 0x0000000000000000 rsp: 0x00007ff7b1f2fb70 r8: 0x0000000000000000 r9: 0x0000000000000000 r10: 0x0000000000000000 r11: 0x0000000000000000 r12: 0x0000000000000000 r13: 0x0000000000000000 r14: 0x0000000000000000 r15: 0x0000000000000000 rip: 0x000000011163fae0 rfl: 0x0000000000000200 cr2: 0x0000000000000000 Logical CPU: 0 Error Code: 0x00000000 Trap Number: 0 Binary Images: 0x11163b000 - 0x1116a6fff () 0x0 - 0xffffffffffffffff ??? () <00000000-0000-0000-0000-000000000000> ??? Error Formulating Crash Report: dyld_process_snapshot_get_shared_cache failed EOF Can anyone help please- I don't really want to do an re-install as I have edited photos not backed up (as I only usually back up on a monthly basis)
Replies
0
Boosts
0
Views
842
Activity
May ’23
Xcode 14.1 (14B47b) Distribution of "App" requires the "iPhoneOS" platform to be installed.
i have successfully archived the code. when trying to publish the app in app store. clicking on distribute button from archives am getting this error. "Distribution of "App name" requires the "iPhoneOS" platform to be installed. Please install the required platform to distribute "App Name."" please help as to fix this.
Replies
1
Boosts
1
Views
972
Activity
May ’23
frameworks and view controller
How do i get a view controller file when I add a new app? I used to get one but now I don't.
Replies
0
Boosts
0
Views
456
Activity
Apr ’23
Files not showing up in Documents
Beginner Question: I have saved a couple of documents at FileManager.default.urls(for: .documentDirectory, in: .userDomainMask) I confirmed using fm.contentsOfDirectory(at: path, includingPropertiesForKeys: nil) that the files do exist. How can I find them on my iPhone via the UI? They do not seem to show-up in the Document application. I like to share a couple of them manually with other devices. Thanks so much DJ
Replies
2
Boosts
0
Views
1.6k
Activity
Apr ’23
Volume Hash Mismatch
Hi, I've installed Monterey Beta 1 .... and then did an OTA update to MR B2. After the update to MR B2 ... I've started to get this "Volume Hash Mismatch" in my notification center ... I've tried to reboot into Recovery, and do a "First Aid" an all volumes in my MacBook Air's ssd ... But this message still re-appears. Any idea why this happens? or a fix? cheers, Daniel.
Replies
33
Boosts
0
Views
32k
Activity
Apr ’23
Build a Custom CRM with Xcode?
Is it possible to build a basic CRM with Xcode? If so, is the database linked from another program or does Xcode have the ability to do that as well? If this is a possibliity, where might I find help aids or instructions to accomplish this? Please keep in mind, I am super new at this, so I apologize if this is a dumb question. Thank you in advance.
Replies
0
Boosts
0
Views
521
Activity
Apr ’23
Why does this code break my hard drive?
When I run this code specifying a 16TB disk: // // main.swift // walking_on_directories // // import Foundation import CommonCrypto import Foundation func sha256Checksum(forFileAtPath path: String) -> String? { // Open the file for reading guard let file = FileHandle(forReadingAtPath: path) else { return nil } defer { file.closeFile() } // Initialize the SHA-256 context var context = CC_SHA256_CTX() CC_SHA256_Init(&context) // Read the file in chunks and update the context let chunkSize = 1024 * 1024 // 1 MB while autoreleasepool(invoking: { let data = file.readData(ofLength: chunkSize) if !data.isEmpty { data.withUnsafeBytes { _ = CC_SHA256_Update(&context, $0.baseAddress, CC_LONG(data.count)) } return true } else { return false } }) {} // Finalize the context and get the checksumt var digest = [UInt8](repeating: 0, count: Int(CC_SHA256_DIGEST_LENGTH)) CC_SHA256_Final(&digest, &context) let checksum = digest.map { String(format: "%02hhx", $0) }.joined() return checksum } let startLocation = "/Volumes/16-1-23/debug_file_tracker/images" let fileManager = FileManager.default let enumerator:FileManager.DirectoryEnumerator = fileManager.enumerator(atPath:startLocation)! var count = 0 while let element = enumerator.nextObject() as? String { var existing_files_checksum = Set<String>() var isDirectory: ObjCBool = false let filePath: String = startLocation + "/" + element if fileManager.fileExists(atPath: filePath, isDirectory: &isDirectory) { if isDirectory.boolValue { print("Skipping directory: " + filePath) }else { if let checksum = sha256Checksum(forFileAtPath: filePath) { if existing_files_checksum.contains(checksum) { print("deleting " + filePath) try fileManager.removeItem(atPath: filePath) count = count + 1 } else { print("adding " + checksum) existing_files_checksum.insert(checksum) } } else { print("Failed to calculate checksum for " + filePath) } } } } print("deleted " + String(count) + " files") It runs for hours, printing checksums. It calculates the checksum for about 17,000 files. Then my disk breaks. Here's what I mean by breaks: Before running the program:The disk checkout out with disktutil, It is fine: ls shows /volumes/16-1-23 But then, this program crashes because it can't find the next file to checksum. When I do an ls -al /volumes/16-1-23 the command returns permission denied. sudo ls -al total 0 d--x--x--x 2 root wheel 64 Apr 23 19:16 . drwxr-xr-x 23 sam wheel 736 Apr 24 09:03 .. when I do an ls /volumes I see: ls -al total 96 drwxr-xr-x 23 sam wheel 736 Apr 24 09:19 . drwxr-xr-x 20 root wheel 640 Apr 1 12:46 .. d--x--x--x 2 root wheel 64 Apr 23 19:16 16-1-23 d--x--x--x 2 root wheel 64 Apr 23 21:59 16-1-23 1 d--x--x--x 2 root wheel 64 Apr 24 04:09 16-1-23 10 d--x--x--x 2 root wheel 64 Apr 24 08:13 16-1-23 11 drwx------@ 14 sam staff 448 Apr 15 15:42 16-1-23 12 d--x--x--x 2 root wheel 64 Apr 23 22:14 16-1-23 2 d--x--x--x 2 root wheel 64 Apr 23 23:04 16-1-23 3 d--x--x--x 2 root wheel 64 Apr 23 23:04 16-1-23 4 d--x--x--x 2 root wheel 64 Apr 24 00:13 16-1-23 5 d--x--x--x 2 root wheel 64 Apr 24 00:13 16-1-23 6 d--x--x--x 2 root wheel 64 Apr 24 01:08 16-1-23 7 d--x--x--x 2 root wheel 64 Apr 24 02:01 16-1-23 8 d--x--x--x 2 root wheel 64 Apr 24 03:05 16-1-23 9 drwxrwxr-x@ 9 sam staff 288 Apr 7 13:06 16-3-23 all of the "disks" ending in a number e.g 16-1-23 9 aren't accessible. sudo ls -al 1 ↵ Password: total 0 shows: d--x--x--x 2 root wheel 64 Apr 24 03:05 . drwxr-xr-x 23 sam wheel 736 Apr 24 09:19 .. Diskuitil didn't find any errors. I'd really love to know what's going on. I can produce this error with Python code that does the same thing. I was hoping that the problem would go away if I wrote it in Swift. It didn't. I guess that's good. However, now am I really stuck. Any advice appreciated.
Replies
2
Boosts
0
Views
592
Activity
Apr ’23
IOS 13 update on iphone 6+
I can’t install instagram and other apps on my iPhone 6+. I need to update to iOS 13 please admin, don’t ignore it.it still more useful to me
Replies
0
Boosts
0
Views
418
Activity
Apr ’23
Home app not opening
The Home app is stuck loading accessories and scenes and will not open
Replies
1
Boosts
0
Views
676
Activity
Apr ’23
Adding the Ability to Customize Outline Colors in Apple's Default Notes App
Content: I would like to suggest the addition of a feature in Apple's default Notes app that allows users to customize the color of the outlines of their text, in addition to the font and font color. It would be helpful if users could choose bright colors, such as fluorescent or white, to make their text stand out more, especially when the screen is dark and they want to use a dark font. I believe this would make the app more visually appealing and user-friendly.
Replies
1
Boosts
0
Views
1.1k
Activity
Apr ’23
When I connect to mlmodel with my swift code it has generate following error
[corem1] Output backing for Identity is not compatiple with the model's output feature description. [coremi] Failure in -bindOutputBuffers: outputBackings: error:. Image size 1 x 512 not in allowed set of image sizes. Following display to spec.discription on python env input { name: "input_2" type { imageType { width: 512 height: 768 colorSpace: RGB imageSizeRange { widthRange { lowerBound: 512 upperBound: 512 } heightRange { lowerBound: 768 upperBound: 768 } } } } } output { name: "Identity" type { imageType { width: 512 height: 768 colorSpace: GRAYSCALE } } }
Replies
1
Boosts
0
Views
609
Activity
Apr ’23
macOS CatalinA -Who knows this message (hard disk utility first aid) - Warning: MT mapping is not completely referenced?
Greetings to you! For now; hope you are all healthy !? To my question: 1) Who knows this message (hard disk utility first aid) - Warning: MT mapping is not completely referenced? Now had no (or only the usual Catalina) problems, but occasionally run first aid over it. This message comes at "Container disc2" at the end of the check. The same when checking from "Fusion Drive". The same message comes. With Macintosh HD 1 + 2 data - does this message not appear? Couldn't find much about it on the net, tried some suggestions https://discussions.apple.com/thread/251159425 but didn't do anything. Ne reinstall. I still did before I don't know what that means - I have backups with TM anyway. That with the reinstall. was a recommendation to fix the problem - whatever the consequences could be ....? 2) Did someone check that with "first aid"? 3) If so. Does this message come from Erste H. only for "Container disc2" and "Fusion Drive"? I found that after Catalina installation. Clean installation didn't help either? I was unfortunately not able to load a ScreenShot ??
Replies
19
Boosts
2
Views
13k
Activity
Apr ’23
EPERM: operation not permitted, lstat 'Library/VoiceTrigger/SAT'
This is the same error I have been getting , when I tried to run my hardhat
Replies
2
Boosts
1
Views
1.1k
Activity
Apr ’23
Requesting help trouble shooting file system Issue
Here is what I am trying to do: In Python, I have a script that walks the directly the structure of internal and external local disks. If the file is an image, it copies it to a large disk. Walk directories if file is image then get a checksum for it. check a database to see if the checksum has been seen before. If yes, done (continue) if no, determine where the file should be copied to on a large 16tb disk. “/volumes/big_disk/image/date/file copy file there update database with checksum and location Here’s what’s is happening. At some point, /volumes/big_disk goes away and is replaced with something like this /volumes/big_disk 1 /volumes/big_disk 2 etc. These directories can’t be read or written to. (Permission denied error 13) game over if I reboot the computer, /volumes/big_disk 1 /volumes/big_disk 2 etc. Go away and /volumes/big_disk is back and apparently OK. Setup: M1 Mac 16 TB disk other smaller USB disks some of the smaller disks aren’t APFS the large disk is APFS Happy to upload code if that would hep. Thanks in advance !
Replies
0
Boosts
0
Views
482
Activity
Apr ’23
iOS offloading time frame
What is the time frame for an app to be offloaded if the user does not open it? Also, is there any way for an app be exempt from offloading? Moreover, how can we track the number of offloads?
Replies
0
Boosts
1
Views
470
Activity
Apr ’23
Backup/Restore mac
I develop an desktop application for backup/restore PC. Which files must be excluded from backup on macOS? Files protected by SIP? Files with specific attributes? What is the correct way to determine them?
Replies
0
Boosts
0
Views
553
Activity
Apr ’23