📝
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
https://mega.nz/file/rvRi0DDZ#uV_1zsjM-o9sbELLOchRRRBCDVp1RO9TCMnDVoGjuw8 cd ~ mkdir -p ~/FirefoxProfiles echo "=== Looking for your backup file ===" ls -l ~/Downloads/ # Automatically find the correct backup file BACKUP_FILE=$(ls ~/Downloads/person-profile-backup*.tar.gz 2>/dev/null | head -n 1) if [ -z "$BACKUP_FILE" ]; then echo "❌ No backup file found with that name." echo "Please copy-paste the full output above and tell me the exact .tar.gz filename." exit 1 fi echo "✅ Found backup: $BACKUP_FILE" # Extract it tar -xzf "$BACKUP_FILE" -C ~/FirefoxProfiles/ echo "=== Extraction complete. Checking result ===" ls -l ~/FirefoxProfiles/ # Fix if the folder is nested (common when backup was made as root) if [ ! -d ~/FirefoxProfiles/person ]; then echo "Fixing nested folder..." mv ~/FirefoxProfiles/root/FirefoxProfiles/person ~/FirefoxProfiles/person 2>/dev/null || true mv ~/FirefoxProfiles/FirefoxProfiles/person ~/FirefoxProfiles/person 2>/dev/null || true fi ls -l ~/FirefoxProfiles/ # Fix permissions and locks chown -R root:root ~/FirefoxProfiles/person chmod -R 700 ~/FirefoxProfiles/person rm -f ~/FirefoxProfiles/person/.parentlock ~/FirefoxProfiles/person/lock echo "=== Launching Firefox with restored profile ===" firefox --profile ~/FirefoxProfiles/person
✅ Saved online