Disable weekly "pkgstats" submission
- Single actionThis page belongs to a script, containing basic changes to achieve a task.
- Linux onlyThis script improves your privacy on Linux
- Impact: MinimumSystem Functionality Loss Risk: Low
This action improves privacy with minimal impact when you run the recommended script. - Bash (Shell script)These changes use Linux system commands to update your settings.
- Fully reversible
You can fully restore this action (revert back to the original behavior) using this website.
The restore/revert methods provided here can help you fix issues.
Overview
pkgstats
is set up to automatically run every week using systemd/timers 1. Once disabled,
the data will only be sent once manually invoked 1. The weekly timer is named pkgstats.timer
2.
Sources
- pkgstats - ArchWiki. wiki.archlinux.org. (2022).
Original: https://wiki.archlinux.org/title/Pkgstats
Archived: https://web.archive.org/web/20221029161806/https://wiki.archlinux.org/title/Pkgstats - Arch Linux package statistics. pkgstats.archlinux.de. (2022).
Original: https://pkgstats.archlinux.de
Archived: https://web.archive.org/web/20221029162027/https://pkgstats.archlinux.de/
Apply Now
Choose one of three ways to apply:
Help
How to apply or restore "Disable weekly pkgstats submission" using script
- ≈ 3 min to complete
- Tools: Web Browser
- Difficulty: Medium
- ≈ 5 instructions
- 1
Download
Download the script file by clicking on thebutton above.
Use button above to restore changes. - 2
Keep the file
If warned by your browser, keep the file. - 3
Open
Open the downloaded file. - 4
Exit
Once it's done, press any key to exit the window. - 5
Restart
Restart your computer for all changes to take effect.
Apply with privacy.sexy
Guided, automated application with safety checks- Recommended for most users
- Includes safety checks
- Free
- Open-source
- Popular
- Offline/Online usage
Help
How to apply or restore "Disable weekly pkgstats submission" using privacy.sexy
- ≈ 3 min to complete
- Tools: privacy.sexy
- Difficulty: Simple
- ≈ 4 instructions
- 2
Choose script
- Search for the script name: Disable weekly pkgstats submission
- Check the script by clicking on the checkbox.
- 3
Run
Click on ▶️ Run button at the bottom of the page.This button only appears on desktop version (recommended). On browser, use 💾 Save button.
- Apply
- Revert
if ! command -v 'systemctl' &> /dev/null; then
echo 'Skipping because "systemctl" is not found.'
else
service='pkgstats.timer'
if systemctl list-units --full -all | grep --fixed-strings --quiet "$service"; then # service exists
if systemctl is-enabled --quiet "$service"; then
if systemctl is-active --quiet "$service"; then
echo "Service $service is running now, stopping it."
if ! sudo systemctl stop "$service"; then
>&2 echo "Could not stop $service."
else
echo 'Successfully stopped'
fi
fi
if sudo systemctl disable "$service"; then
echo "Successfully disabled $service."
else
>&2 echo "Failed to disable $service."
fi
else
echo "Skipping, $service is already disabled."
fi
else
echo "Skipping, $service does not exist."
fi
fi
ImlmICEgY29tbWFuZCAtdiAnc3lzdGVtY3RsJyAmPiAvZGV2L251bGw7IHRoZW5cbiAgICA+JjIgZWNobyAnQ2Fubm90IHJldmVydCBiZWNhdXNlIFwic3lzdGVtY3RsXCIgaXMgbm90IGZvdW5kLidcbiAgZWxzZVxuICAgIHNlcnZpY2U9J3BrZ3N0YXRzLnRpbWVyJ1xuaWYgc3lzdGVtY3RsIGxpc3QtdW5pdHMgLS1mdWxsIC1hbGwgfCBncmVwIC0tZml4ZWQtc3RyaW5ncyAtLXF1aWV0IFwiJHNlcnZpY2VcIjsgdGhlbiAjIHNlcnZpY2UgZXhpc3RzXG4gIGlmIHN5c3RlbWN0bCBpcy1lbmFibGVkIC0tcXVpZXQgXCIkc2VydmljZVwiOyB0aGVuXG4gICAgZWNobyBcIlNraXBwaW5nLCAkc2VydmljZSBpcyBhbHJlYWR5IGVuYWJsZWQuXCJcbiAgZWxzZVxuICAgIGlmIHN1ZG8gc3lzdGVtY3RsIGVuYWJsZSBcIiRzZXJ2aWNlXCI7IHRoZW5cbiAgICAgIGVjaG8gXCJTdWNjZXNzZnVsbHkgZW5hYmxlZCAkc2VydmljZSwgaXQgbWF5IHJlcXVpcmUgcmVib290IHRvIHN0YXJ0LlwiXG4gICAgZWxzZVxuICAgICAgPiYyIGVjaG8gXCJGYWlsZWQgdG8gZW5hYmxlICRzZXJ2aWNlLlwiXG4gICAgZmlcbiAgZmlcbmVsc2VcbiAgPiYyIGVjaG8gXCJGYWlsZWQsICRzZXJ2aWNlIGRvZXMgbm90IGV4aXN0LlwiXG5maVxuICBmaSI=
Help
How to apply or restore "Disable weekly pkgstats submission" using commands
- ≈ 2 min to complete
- Tools: Terminal
- Difficulty: Medium
- ≈ 3 instructions
- 1
Open terminal
Open your terminal application. - 2
Copy code
Copy the code: - 3
Paste & run
Paste the commands into terminal application and press Enter to run.Some changes require a system restart to take effect
Similar Guides
Wider Goal
Guides below includes this guide to achieve a wider goal.See other more general settings that includes this one as one of its actions.These plans combine multiple privacy settings, including this one, for stronger protection.
- Disable `pkgstats` that collects installed package list (opt-in)
- Disable Arch Linux telemetry
- Disable OS data collection
pkgstats sends a list of all installed packages, the architecture, and the mirror you are using to the Arch Linux project. It stores personally identifia...
— Disable pkgstats that collects installed package list (opt-in)
Arch Linux is an independently developed, x86-64 general-purpose Linux distribution that strives to provide the latest stable versions of most software b...
All operating systems collect data. This is part of their work. Sometimes, this data has high privacy implications, especially when it is submitted to th...
Same Goal
Another guide in Disable "pkgstats" that collects installed package list (opt-in) See settings that are in the same category as this guide.Using other actions in the same category may help you achieve your goal better.
About the Creators
These people have authored this documentation and written its scripts:
Reviewed By
This guide has undergone comprehensive auditing and peer review:Expert review by undergroundwires
- Verified technical accuracy and editorial standards
- Assessed system impact and user privacy risks
- Audited and verified using automated security tests
Public review by large community
- Privacy enthusiasts and professionals peer-reviewed
- Millions of end-users tested across different environments
- Audited and verified using third-party security software
History
We continually monitor our guides, their impact and other potential privacy options. We update our guides when new information becomes available. On every update, we publicly store who made the change, what has been changed, why the change was made and when the change was made.