Fairly new to Ubuntu so please help me as best as you can. I'm a tad confused on what to do from here so if there's more info that's needed let me know.
systemd-analyze blame:
5.190s udev-configure-printer@-devices-pci0000:00-0000:00:14.0-usb3-3\
764ms mnt-Programs\x2dGames.mount
676ms dev-sdb5.device
617ms mnt-Data.mount
335ms plymouth-start.service
304ms networking.service
269ms plymouth-read-write.service
...
I should point out I did get rid of the swap space and moved it elsewhere so I'm sure that's likely related since if I remember correctly that's around when things slowed down.
~/.bash_history
might help to remember. – Melebius Feb 02 '17 at 07:37systemd-analyze blame
will show the services in order of slowest. add the results to the question ;) @chili555 this might be one for you (looks like a wireless problem). – Rinzwind Feb 02 '17 at 07:39sudo echo -e net.ipv6.conf.all.disable_ipv6 = 1 \\nnet.ipv6.conf.default.disable_ipv6 = 1 \\nnet.ipv6.conf.lo.disable_ipv6 = 1 | tee -a /etc/sysctl.conf
and reboot. – M. Becerra Feb 02 '17 at 10:53echo -e net.ipv6.conf.all.disable_ipv6 = 1 \\nnet.ipv6.conf.default.disable_ipv6 = 1 \\nnet.ipv6.conf.lo.disable_ipv6 = 1 | sudo tee -a /etc/sysctl.conf
. Permission denied means you need root privileges to edit that file. Withsudo
, you run the command as the root. – M. Becerra Feb 02 '17 at 19:20