This is a discussion on Error when using apt-get install within the Linux Operating System forums, part of the Unix Operating Systems category; --> Each time I use apt-get install I get an error regarding to gaim. I just installed MindTerm and got ...
| |||||||
| Register | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| ||||
| Each time I use apt-get install I get an error regarding to gaim. I just installed MindTerm and got this error (I guess the mindterm installation worked fine): johs@ubuntu:~ $ sudo apt-get install mindterm Reading Package Lists... Done Building Dependency Tree... Done mindterm is already the newest version. 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1 not fully installed or removed. Need to get 0B of archives. After unpacking 0B of additional disk space will be used. Setting up gaim (1.1.2-3ubuntu1-4.10ubp1) ... rmdir: `/usr/share/doc/gaim': No such file or directory dpkg: error processing gaim (--configure): subprocess post-installation script returned error exit status 1 Errors were encountered while processing: gaim E: Sub-process /usr/bin/dpkg returned an error code (1) johs@ubuntu How do I fix this gaim issue? |
| |||
| Op Wed, 13 Apr 2005 14:40:45 +0200, schreef JS de volgende woorden: > Each time I use apt-get install I get an error regarding to gaim. I just > installed MindTerm and got this error (I guess the mindterm installation > worked fine): > > johs@ubuntu:~ $ sudo apt-get install mindterm > Reading Package Lists... Done > Building Dependency Tree... Done > mindterm is already the newest version. > 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. > 1 not fully installed or removed. > Need to get 0B of archives. > After unpacking 0B of additional disk space will be used. > Setting up gaim (1.1.2-3ubuntu1-4.10ubp1) ... > rmdir: `/usr/share/doc/gaim': No such file or directory > dpkg: error processing gaim (--configure): > subprocess post-installation script returned error exit status 1 > Errors were encountered while processing: > gaim > E: Sub-process /usr/bin/dpkg returned an error code (1) > johs@ubuntu > > How do I fix this gaim issue? try: # apt-get install -a and if that does'n work # mkdir /usr/share/doc/gaim and try # apt-get install -a again Dirk -- A computer without a Microsoft operating system is like a dog without bricks tied to its head. |
| |||
| Dirk wrote: > Op Wed, 13 Apr 2005 14:40:45 +0200, schreef JS de volgende woorden: > >> Each time I use apt-get install I get an error regarding to gaim. I just >> installed MindTerm and got this error (I guess the mindterm installation >> worked fine): >> >> johs@ubuntu:~ $ sudo apt-get install mindterm >> Reading Package Lists... Done >> Building Dependency Tree... Done >> mindterm is already the newest version. >> 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. >> 1 not fully installed or removed. >> Need to get 0B of archives. >> After unpacking 0B of additional disk space will be used. >> Setting up gaim (1.1.2-3ubuntu1-4.10ubp1) ... >> rmdir: `/usr/share/doc/gaim': No such file or directory >> dpkg: error processing gaim (--configure): >> subprocess post-installation script returned error exit status 1 >> Errors were encountered while processing: >> gaim >> E: Sub-process /usr/bin/dpkg returned an error code (1) >> johs@ubuntu >> >> How do I fix this gaim issue? > > try: > # apt-get install -a > > and if that does'n work > # mkdir /usr/share/doc/gaim > and try > # apt-get install -a > again > > Dirk I get this error (seems that option -a is not recognized) johs@ubuntu:~ $ sudo apt-get install -a E: Command line option 'a' [from -a] is not known. johs@ubuntu:~ $ sudo mkdir /usr/share/doc/gaim johs@ubuntu:~ $ sudo apt-get install -a E: Command line option 'a' [from -a] is not known. |
| ||||
| Op Wed, 13 Apr 2005 14:59:03 +0200, schreef JS de volgende woorden: > Dirk wrote: > >> Op Wed, 13 Apr 2005 14:40:45 +0200, schreef JS de volgende woorden: >>> >>> How do I fix this gaim issue? >> >> try: >> # apt-get install -a >> >> and if that does'n work >> # mkdir /usr/share/doc/gaim >> and try >> # apt-get install -a >> again >> >> Dirk > > > I get this error (seems that option -a is not recognized) oeps, my fault, I was a bit in a hurry, it should be apt-get -f install, f comes from --fix-broken. Dirk -- A computer without a Microsoft operating system is like a dog without bricks tied to its head. |