5

I've used this post as a guideline: How can you completely remove a package?

More precisely i did in order:

sudo apt-get purge psensor

sudo apt-get autoremove

Is there anything else i should do to have psensor completely removed from my system (Ubuntu 16.04)?

karel
  • 114,770
Zeno Raiser
  • 485
  • 1
  • 6
  • 18
  • 2
    No, why do you think anything else is needed? – Byte Commander Jan 28 '18 at 12:37
  • @ByteCommander from the mentioned post: [..] This does not remove non-systemwide configuration files. Specifically, it does not remove user-specific configuration:
    It does not remove the configuration files and directories located in users' home directories (or in the .config subdirectory of their home directories), created by the software the package provides.
        If these files/folders are not stored in .config, they usually start with a . themselves. Either way, you can see them with ls by using the -a or -A flag, and you can se ...
    
    – Zeno Raiser Jan 28 '18 at 12:39
  • 1
    @ZenoRaiser that refers to files you create yourself that are support by a piece of software. – Rinzwind Jan 28 '18 at 12:49
  • 2
    There might be a hidden .psensor folder in your home directory. Delete it if you desire to do so. – Byte Commander Jan 28 '18 at 12:51

1 Answers1

7

The commands to completely remove Psensor in your question are correct. Alternatively you can combine both commands in a single line like this:

sudo apt purge --auto-remove psensor  
karel
  • 114,770