Post not yet marked as solved
Click to stop watching this thread.
You have stopped watching this post. Click to start watching again.
Post marked as unsolved with 16 replies, 0 views
Replied In
nsurlsessiond constantly downloading
run this command in terminal each boot
while :; do
PROCESS=nsurlsessiond
number=$(ps aux | grep -v grep | grep -ci $PROCESS)
if [ $number -gt 0 ]
then
echo Your_password | sudo -S pkill -9 pgrep $PROCESS
fi
sleep 1; done