📝
Online Notepad
+
ADD NEW TEXT
Untitled Note
Last saved: Apr 11, 10:20 AM
Untitled Note
Last saved: Apr 11, 8:34 AM
Untitled Note
Last saved: Apr 11, 8:23 AM
Untitled Note
Last saved: Apr 11, 8:14 AM
Untitled Note
Last saved: Apr 11, 7:44 AM
Untitled Note
Last saved: Apr 11, 7:43 AM
Untitled Note
Last saved: Apr 11, 7:35 AM
Untitled Note
Last saved: Apr 11, 7:32 AM
💾 Save to Server
🗑️ Delete
# 1. Go to your home folder cd ~ # 2. Create the folder (if it doesn't exist) mkdir -p ~/FirefoxProfiles # 3. Extract the backup (replace with your actual filename if different) tar -xzf person-profile-backup.tar.gz -C ~/FirefoxProfiles/ # 4. FIX PERMISSIONS (this is the important part!) sudo chown -R $USER:$USER ~/FirefoxProfiles/person chmod -R 700 ~/FirefoxProfiles/person # 5. Remove any old lock files (common cause of problems) rm -f ~/FirefoxProfiles/person/.parentlock rm -f ~/FirefoxProfiles/person/lock firefox --profile ~/FirefoxProfiles/person
✅ Saved online