Search results for

“smb big sur”

11,996 results found

Post

Replies

Boosts

Views

Activity

Auto selecting after Big Sur update
After updating to big sur I've noticed that there are some cases where ui elements get automatically selected (focused?) in my MacCatalyst app. This is problematic for me in a couple of cases where there is app logic that gets triggered when a textview is initially selected and calls didBeginEditing. The two areas where it seems prevalent are: dismissing modal views and reloading tables. I've poked around into the focus engine and tried to extend textviews to not be focusable to no avail. Anyone else seeing this problem?
1
0
483
Nov ’20
IOUserNetworkPacket GetDataLength is failed with kIOReturnBadArgument in Mac Big Sur
Hi I'm developing USB network driver with NetworkingDriverKit. develop environment MacOS 10.15.4 XCode 11.6 My USB Networking Driver works fine in MacOS 10.15. But in MacOS 11(Big Sur) GetDataLength method in IOUserNetworkPacket class always failed with kIOReturnBadArgument . IOUserNetworkPacket get from txSubmissionQueue. GetDataLength Document link : https://developer.apple.com/documentation/networkingdriverkit/iousernetworkpacket/3294975-getdatalength And my code similar below IOUserNetworkPacket *packet; uint32_t packetLength = 0; ret = txSubmissionQueue->DequeuePacket(&packet);- if success ret = packet->GetDataLength(&packetLength); // ret always kIOReturnBadArgument in Big Sur Does anyone have any ideas on how I can solve this?
1
0
811
Aug ’20
Time Machine Mingling Catalina and Big Sur Backups
After installing Big Sur Beta 1, a Time Machine dialog popped up that I thought I ignored. Later I see that it backed up my iMac onto a volume called TimeMachine Backup (which is not the name of my main TM Backup so I felt this was fine). Today I actually started to look at what was happening. Big Sur renamed my TM Volume from the previous name to this TimeMachine Backup and has intermingled it's backup files with my previous Catalina ones. Quick note about my setup. I'm running Catalina on a stock SSD in the iMac. I have a USB enclosure with 4 HDs in it. One of the 4 drives is dedicated to TM Backups. I partitioned that drive to install Big Sur onto. So I run Big Sur from a 100GB Partition on this 4TB drive. Is there any way to: Break this intermingling or do I just erase the backup and have it start again from Catalina? Is TM smart enough to know which files belong to which backup OS? I booted into Catalina today and see that it thinks
0
0
594
Jul ’20
Parallels 15: not working on Big Sur
I recently installed the Big Sur beta on my 2019 16 Macbook Pro. I tried to run Parallels, only to be given a message saying to restart to complete the installation. The trouble is, whether I choose to restart or quit Parallels, the application hangs. If I then restart and try to run it again, I get the same message. I looked at the logs, and it appears that it is failing when trying to load one of its kernel extensions, and then assuming that a restart is needed to enable them. It tries to issue the following command: /usr/bin/kmutil load -p /Applications/Parallels Desktop.app/Contents/Library/Extensions/10.9/prl_vnic.kext -r /Applications/Parallels Desktop.app/Contents/Library/Extensions/10.9 which fails with the following error: Error: Error Domain=KMErrorDomain Code=1 Kernel request failed: (libkern/kext) kext (kmod) start/stop routine failed UserInfo={NSLocalizedDescription=Kernel request failed: (libkern/kext) kext (kmod) start/stop routine failed} Does anyone else have this problem? I
3
0
1.7k
Jun ’20
Big Problem to install Big Sur on my Mac Book Pro 15 Touch Bar 2016
I've tried to install Big Sur, in a separate volume APFS, but the Mac go in boot loop for entire night. I've tried many times, but it's impossible to solve. Then I've create a bootable usb with Big Sur, by terminal, and the problem to install the OS is, permission denied. In the last, I've installed a new copy of Catalina in a new Volume, and I've tried to update to Big Sir by beta profile procedure. And the Mac go in boot loop again . Please help !!! 😭
6
0
4.1k
Jul ’20
Big Sur Beta Control Center Missing
Hi, I recently updated to the Big Sur beta and noticed the control center isn't in the top right corner like in the demos, pictures, etc. Instead there is a spotlight icon that won't go away even when I turn it off in the menu bar settings. Is anyone else getting this error and if so has anyone resolved it? I understand this is a beta, but this doesn't seem to be an error that is prevalent in the other systems that upgraded. Thanks.
4
0
2k
Jun ’20
Cannot log into Mac after updating to Big Sur 11.0
I have just updated my MBP from Big Sur Beta 2 to Big Sur Beta 3 (11.0), but when I try to log in, the screen goes black a couple of seconds, and I am presented with another login screen, where I have to type in my username and password. When I do that, the screen goes black again for a couple of seconds, and the log in screen reappears. I have tried to run in recovery mode, but that just gives a black screen after login, and never gets any further. I have tried to reinstall Big Sur Beta 3, but with the same result. I have reset NVRAM with same result. I have run out of things to try and really need some help
1
0
891
Jul ’20
Big Sur Download Wont Show Up
After downloading/installing the Beta Access Utility, the Big Sur update won't show up in the software update panel. Instead of saying that my computer is up to date, the software update panel says Unable to check for updates. Make sure you are connected to the internet. However I am connected. The update has not shown up after restarting my computer either, like the installation notes suggest. I have a Macbook Pro A1502 (Early 2015). Thanks for your help!
2
0
2.8k
Jun ’20
ntp_adjtime() returns invalid frequency in Big Sur
The system call ntp_adjtime sets and returns various attributes associated with the NTP phase locked loop in the Darwin kernel via a struct timex argument. The frequency of the the loop is passed back and forward in this struct as a signed fractional number. In Big Sur, instead of returning a negative number for the frequency when required, ntp_adjtime returns the unsigned representation of the number - i.e. the value is always positive and can be 'off' by 65536. I have submitted FB8561779, along with a simple test case demonstrating the problem. I hope it will be fixed soon.
0
0
712
Aug ’20
Auto selecting after Big Sur update
After updating to big sur I've noticed that there are some cases where ui elements get automatically selected (focused?) in my MacCatalyst app. This is problematic for me in a couple of cases where there is app logic that gets triggered when a textview is initially selected and calls didBeginEditing. The two areas where it seems prevalent are: dismissing modal views and reloading tables. I've poked around into the focus engine and tried to extend textviews to not be focusable to no avail. Anyone else seeing this problem?
Replies
1
Boosts
0
Views
483
Activity
Nov ’20
Anyone find a fix for Big Sur external monitor connection issues?
Still cannot connect an external monitor after upgrading to Big Sur using a USB-C to DisplayPort cable. I've combed the web far and wide but have seen no solutions to this specific issue on Big Sur 11.2.3. My job is very hard to do without an external monitor 😅
Replies
2
Boosts
0
Views
759
Activity
Mar ’21
IOUserNetworkPacket GetDataLength is failed with kIOReturnBadArgument in Mac Big Sur
Hi I'm developing USB network driver with NetworkingDriverKit. develop environment MacOS 10.15.4 XCode 11.6 My USB Networking Driver works fine in MacOS 10.15. But in MacOS 11(Big Sur) GetDataLength method in IOUserNetworkPacket class always failed with kIOReturnBadArgument . IOUserNetworkPacket get from txSubmissionQueue. GetDataLength Document link : https://developer.apple.com/documentation/networkingdriverkit/iousernetworkpacket/3294975-getdatalength And my code similar below IOUserNetworkPacket *packet; uint32_t packetLength = 0; ret = txSubmissionQueue->DequeuePacket(&packet);- if success ret = packet->GetDataLength(&packetLength); // ret always kIOReturnBadArgument in Big Sur Does anyone have any ideas on how I can solve this?
Replies
1
Boosts
0
Views
811
Activity
Aug ’20
Time Machine Mingling Catalina and Big Sur Backups
After installing Big Sur Beta 1, a Time Machine dialog popped up that I thought I ignored. Later I see that it backed up my iMac onto a volume called TimeMachine Backup (which is not the name of my main TM Backup so I felt this was fine). Today I actually started to look at what was happening. Big Sur renamed my TM Volume from the previous name to this TimeMachine Backup and has intermingled it's backup files with my previous Catalina ones. Quick note about my setup. I'm running Catalina on a stock SSD in the iMac. I have a USB enclosure with 4 HDs in it. One of the 4 drives is dedicated to TM Backups. I partitioned that drive to install Big Sur onto. So I run Big Sur from a 100GB Partition on this 4TB drive. Is there any way to: Break this intermingling or do I just erase the backup and have it start again from Catalina? Is TM smart enough to know which files belong to which backup OS? I booted into Catalina today and see that it thinks
Replies
0
Boosts
0
Views
594
Activity
Jul ’20
macOS 11 Big Sur won't show up
my MacBook is on 10.15.6 beta, I already tried before but it froze and I had no choice so I reset and restart my Mac from high Sierra and now I'm on 10.15.6 again, but this time, it doesn't show Big Sur update. help!!
Replies
0
Boosts
0
Views
359
Activity
Jun ’20
Parallels 15: not working on Big Sur
I recently installed the Big Sur beta on my 2019 16 Macbook Pro. I tried to run Parallels, only to be given a message saying to restart to complete the installation. The trouble is, whether I choose to restart or quit Parallels, the application hangs. If I then restart and try to run it again, I get the same message. I looked at the logs, and it appears that it is failing when trying to load one of its kernel extensions, and then assuming that a restart is needed to enable them. It tries to issue the following command: /usr/bin/kmutil load -p /Applications/Parallels Desktop.app/Contents/Library/Extensions/10.9/prl_vnic.kext -r /Applications/Parallels Desktop.app/Contents/Library/Extensions/10.9 which fails with the following error: Error: Error Domain=KMErrorDomain Code=1 Kernel request failed: (libkern/kext) kext (kmod) start/stop routine failed UserInfo={NSLocalizedDescription=Kernel request failed: (libkern/kext) kext (kmod) start/stop routine failed} Does anyone else have this problem? I
Replies
3
Boosts
0
Views
1.7k
Activity
Jun ’20
Big Problem to install Big Sur on my Mac Book Pro 15 Touch Bar 2016
I've tried to install Big Sur, in a separate volume APFS, but the Mac go in boot loop for entire night. I've tried many times, but it's impossible to solve. Then I've create a bootable usb with Big Sur, by terminal, and the problem to install the OS is, permission denied. In the last, I've installed a new copy of Catalina in a new Volume, and I've tried to update to Big Sir by beta profile procedure. And the Mac go in boot loop again . Please help !!! 😭
Replies
6
Boosts
0
Views
4.1k
Activity
Jul ’20
Big Sur Beta Control Center Missing
Hi, I recently updated to the Big Sur beta and noticed the control center isn't in the top right corner like in the demos, pictures, etc. Instead there is a spotlight icon that won't go away even when I turn it off in the menu bar settings. Is anyone else getting this error and if so has anyone resolved it? I understand this is a beta, but this doesn't seem to be an error that is prevalent in the other systems that upgraded. Thanks.
Replies
4
Boosts
0
Views
2k
Activity
Jun ’20
Cannot log into Mac after updating to Big Sur 11.0
I have just updated my MBP from Big Sur Beta 2 to Big Sur Beta 3 (11.0), but when I try to log in, the screen goes black a couple of seconds, and I am presented with another login screen, where I have to type in my username and password. When I do that, the screen goes black again for a couple of seconds, and the log in screen reappears. I have tried to run in recovery mode, but that just gives a black screen after login, and never gets any further. I have tried to reinstall Big Sur Beta 3, but with the same result. I have reset NVRAM with same result. I have run out of things to try and really need some help
Replies
1
Boosts
0
Views
891
Activity
Jul ’20
Big Sur Download Wont Show Up
After downloading/installing the Beta Access Utility, the Big Sur update won't show up in the software update panel. Instead of saying that my computer is up to date, the software update panel says Unable to check for updates. Make sure you are connected to the internet. However I am connected. The update has not shown up after restarting my computer either, like the installation notes suggest. I have a Macbook Pro A1502 (Early 2015). Thanks for your help!
Replies
2
Boosts
0
Views
2.8k
Activity
Jun ’20
ntp_adjtime() returns invalid frequency in Big Sur
The system call ntp_adjtime sets and returns various attributes associated with the NTP phase locked loop in the Darwin kernel via a struct timex argument. The frequency of the the loop is passed back and forward in this struct as a signed fractional number. In Big Sur, instead of returning a negative number for the frequency when required, ntp_adjtime returns the unsigned representation of the number - i.e. the value is always positive and can be 'off' by 65536. I have submitted FB8561779, along with a simple test case demonstrating the problem. I hope it will be fixed soon.
Replies
0
Boosts
0
Views
712
Activity
Aug ’20
OS11 Big Sur "Updated System Extensions Blocked"
OS11 Big Sur Updated System Extensions Blocked. I click allow and check the items (have tried individually and all at once) it then ask to restart but all of them show back up as needed to allow in system security preferences.
Replies
6
Boosts
0
Views
4.0k
Activity
Jun ’20
Printers not accessible after Big Sur update
Everything was fine till Apple dumped this half baked Big Sur on me. Now I cannot Print! Apple is playing Ostrich here by pretending not to see this problem even though users have been complaining. Do something Apple!
Replies
0
Boosts
0
Views
206
Activity
Dec ’20
Brightness Slider not working || Big Sur 11.3
Hi! I just updated my Macbook Pro 2017(with Touchbar) to Big Sur 11.3 and I cannot adjust the brightness of my screen. The slider in the touchbar moves but does nothing, and the slider in the control panel is grayed out. Please help!
Replies
5
Boosts
0
Views
4.5k
Activity
Apr ’21
Big Sur Apple Mail no flags appear
Hi, Where did the coloured flags go in new apple mail with Big Sur. Nice look, no flags appear in my view of my email in box. I can see the folder, I see them in the flagged folder but no flag or colours.
Replies
0
Boosts
0
Views
286
Activity
Nov ’20