Removing Samba Error

7,920

Solution 1

Try sudo apt-get autoremove and then sudo apt-get purge samba*.

Solution 2

Run these commands in terminal (ctrl+alt+t):

sudo apt-get -f install
sudo apt-get install perl
sudo apt-get purge samba*
sudo apt-get autoremove
Share:
7,920

Related videos on Youtube

user71613
Author by

user71613

Updated on September 18, 2022

Comments

  • user71613
    user71613 almost 2 years

    I am having a problem with Samba package. So I did the following to remove it, and got some errors.

    # sudo apt-get --purge remove samba-common
    Reading package lists... Done
    Building dependency tree       
    Reading state information... Done
    The following packages will be REMOVED:
      samba* samba-common* samba-common-bin*
    0 upgraded, 0 newly installed, 3 to remove and 6 not upgraded.
    4 not fully installed or removed.
    After this operation, 42.4 MB disk space will be freed.
    Do you want to continue [Y/n]? Y
    (Reading database ... 195751 files and directories currently installed.)
    Removing samba ...
    Purging configuration files for samba ...
    Removing configuration file /etc/default/samba...
    Removing configuration file /etc/default/samba...
    Removing samba-common-bin ...
    Removing samba-common ...
    Purging configuration files for samba-common ...
    **perl: error while loading shared libraries: libperl.so.5.12: cannot open shared object file: No such file or directory
    dpkg: error processing samba-common (--purge):
     subprocess installed post-removal script returned error exit status 127
    Processing triggers for man-db ...
    perl: error while loading shared libraries: libperl.so.5.12: cannot open shared object file: No such file or directory
    Processing triggers for ureadahead ...
    Processing triggers for ufw ...
    Errors were encountered while processing:
     samba-common**
    E: Sub-process /usr/bin/dpkg returned an error code (1)
    

    Any ideas?

    • Hashken
      Hashken about 12 years
      Did you remove any files manually, before trying out the above command?
  • gravity
    gravity about 8 years
    Could you provide a bit more detail, to the questioner, as to what these four commands do? This may be their solution, but it would help them grow to know how/why this solves it.