Possible fix for Pixel Wi-Fi and Bluetooth issues. Requires root access.
I've been dealing with this for quite some time just as everyone else has. I was messing around with the ai on the google search page and trying to see if i could find any ideas to try and fix this. Mine were both completely greyed out and weren't able to be toggled on prior to this. I did this earlier this morning (6 hours ago) and so far both are working properly.
Because the kernel wipes the /mnt directory during a reboot, you need to trick the phone into recreation on every single startup using a Magisk Boot Script.
- Download a root-enabled file manager (like MiXplorer or Solid Explorer).
- Open the file manager and grant it root access when prompted.
- Navigate to the core Magisk system directory:
/data/adb/service.d/ - Create a new text file inside that folder and name it exactly:
fix_wireless_folders.sh - Open the file as a text document and paste the following exact code inside it:
#!/system/bin/sh
# Wait for the system to finish booting up
sleep 10
# Create the folders inside /mnt mkdir -p /mnt/wlan mkdir -p /mnt/bluetooth
# Set permissions so systems apps can see them chmod 777 /mnt/wlan chmod 777 /mnt/bluetooth
- Save and close the file.
- Long-press the fix_wireless_folders.sh file, open its Properties/Permissions, and change the permissions to 755 (the 644) (or check the boxes for Read/Write/Execute for Owner, and Read/Execute for Group/Global). 8.Reboot your phone.
Magisk will now automatically execute those terminal lines 10 seconds after your phone turns on, ensuring the folders are always present inside /mnt.
ETA: DONT USE THE CODE AS IS, GIVE ME SOME TIME TO TRY AND FIGURE OUT THE FORMATTING FOR REDDIT. the code apparently doesn't paste properly to reddit. The lines in bold are actually lines that start with the # and I have no clue how to fix it.