How to install screenlets on Ubuntu 18.04?











up vote
1
down vote

favorite
1












I want to install Screenlets and I tried the following bash:



#!/bin/bash
sudo dpkg -l python-wnck >/dev/null 2>&1
if [ $? == 0 ]; then
echo "OK"
else
echo "Install python-wnck"
sudo apt -y install libwnck22
wget -c http://archive.ubuntu.com/ubuntu/pool/universe/g/gnome-python-desktop/python-wnck_2.32.0+dfsg-4_amd64.deb
sudo dpkg -i python-wnck_2.32.0+dfsg-4_amd64.deb
sudo apt --fix-broken -y install
fi
sudo dpkg -l python-gnomekeyring >/dev/null 2>&1
if [ $? == 0 ]; then
echo "OK"
else
echo "Install python-gnomekeyring"
wget -c http://archive.ubuntu.com/ubuntu/pool/universe/g/gnome-python-desktop/python-gnomekeyring_2.32.0+dfsg-4_amd64.deb
sudo dpkg -i python-gnomekeyring_2.32.0+dfsg-4_amd64.deb
sudo apt --fix-broken -y install
fi
sudo add-apt-repository -y ppa:screenlets/ppa
sudo sed -i 's/bionic/xenial/g' /etc/apt/sources.list.d/screenlets-ubuntu-ppa-bionic.list
sudo apt update && sudo apt -y install screenlets screenlets-pack-all


But all I get is this:



tobi@tobi-System-Product-Name:~$ #!/bin/bash
tobi@tobi-System-Product-Name:~$ sudo dpkg -l python-wnck >/dev/null 2>&1
tobi@tobi-System-Product-Name:~$ if [ $? == 0 ]; then
> echo "OK"
> else
> echo "Install python-wnck"
> sudo apt -y install libwnck22
> wget -c http://archive.ubuntu.com/ubuntu/pool/universe/g/gnome-python-desktop/python-wnck_2.32.0+dfsg-4_amd64.deb
> sudo dpkg -i python-wnck_2.32.0+dfsg-4_amd64.deb
> sudo apt --fix-broken -y install
> fi
OK
tobi@tobi-System-Product-Name:~$ sudo dpkg -l python-gnomekeyring >/dev/null 2>&1
tobi@tobi-System-Product-Name:~$ if [ $? == 0 ]; then
> echo "OK"
> else
> echo "Install python-gnomekeyring"
> wget -c http://archive.ubuntu.com/ubuntu/pool/universe/g/gnome-python-desktop/python-gnomekeyring_2.32.0+dfsg-4_amd64.deb
> sudo dpkg -i python-gnomekeyring_2.32.0+dfsg-4_amd64.deb
> sudo apt --fix-broken -y install
> fi
OK
tobi@tobi-System-Product-Name:~$ sudo add-apt-repository -y ppa:screenlets/ppa
sudo: unable to execute /usr/bin/add-apt-repository: No such file or directory
tobi@tobi-System-Product-Name:~$ sudo sed -i 's/bionic/xenial/g' /etc/apt/sources.list.d/screenlets-ubuntu-ppa-bionic.list
sed: can't read /etc/apt/sources.list.d/screenlets-ubuntu-ppa-bionic.list: No such file or directory
tobi@tobi-System-Product-Name:~$ sudo apt update && sudo apt -y install screenlets screenlets-pack-all
Get:1 http://archive.getdeb.net/ubuntu xenial-getdeb InRelease
Err:1 http://archive.getdeb.net/ubuntu xenial-getdeb InRelease
Clearsigned file isn't valid, got 'NOSPLIT' (does the network require authentication?)
Get:2 http://security.ubuntu.com/ubuntu xenial-security InRelease [107 kB]
Ign:3 http://ppa.launchpad.net/inameiname/stable/ubuntu bionic InRelease
Hit:4 http://ppa.launchpad.net/jonathonf/python-3.6/ubuntu bionic InRelease
Hit:5 http://us.archive.ubuntu.com/ubuntu xenial InRelease
Err:6 http://ppa.launchpad.net/inameiname/stable/ubuntu bionic Release
404 Not Found [IP: 91.189.95.83 80]
Get:7 http://us.archive.ubuntu.com/ubuntu xenial-updates InRelease [109 kB]
Hit:8 https://download.sublimetext.com apt/dev/ InRelease
Get:9 http://us.archive.ubuntu.com/ubuntu xenial-backports InRelease [107 kB]
sh: 1: /usr/lib/cnf-update-db: not found
Reading package lists... Done
E: Failed to fetch http://archive.getdeb.net/ubuntu/dists/xenial-getdeb/InRelease Clearsigned file isn't valid, got 'NOSPLIT' (does the network require authentication?)
E: The repository 'http://archive.getdeb.net/ubuntu xenial-getdeb InRelease' is not signed.
N: Updating from such a repository can't be done securely, and is therefore disabled by default.
N: See apt-secure(8) manpage for repository creation and user configuration details.
E: The repository 'http://ppa.launchpad.net/inameiname/stable/ubuntu bionic Release' does not have a Release file.
N: Updating from such a repository can't be done securely, and is therefore disabled by default.
N: See apt-secure(8) manpage for repository creation and user configuration details.
E: Problem executing scripts APT::Update::Post-Invoke-Success 'if /usr/bin/test -w /var/lib/command-not-found/ -a -e /usr/lib/cnf-update-db; then /usr/lib/cnf-update-db > /dev/null; fi'
E: Sub-process returned an error code
tobi@tobi-System-Product-Name:~$


I think sudo apt-get update doesn't work for me, but I don't know how I can fix this.





output of apt-cache policy python3-software-properties:



python3-software-properties:
Installed: 0.96.24.32.4
Candidate: 0.96.24.32.4
Version table:
*** 0.96.24.32.4 100
100 /var/lib/dpkg/status
0.96.20.7 500
500 http://us.archive.ubuntu.com/ubuntu xenial-updates/main amd64 Packages
500 http://us.archive.ubuntu.com/ubuntu xenial-updates/main i386 Packages
0.96.20 500
500 http://us.archive.ubuntu.com/ubuntu xenial/main amd64 Packages
500 http://us.archive.ubuntu.com/ubuntu xenial/main i386 Packages









share|improve this question




























    up vote
    1
    down vote

    favorite
    1












    I want to install Screenlets and I tried the following bash:



    #!/bin/bash
    sudo dpkg -l python-wnck >/dev/null 2>&1
    if [ $? == 0 ]; then
    echo "OK"
    else
    echo "Install python-wnck"
    sudo apt -y install libwnck22
    wget -c http://archive.ubuntu.com/ubuntu/pool/universe/g/gnome-python-desktop/python-wnck_2.32.0+dfsg-4_amd64.deb
    sudo dpkg -i python-wnck_2.32.0+dfsg-4_amd64.deb
    sudo apt --fix-broken -y install
    fi
    sudo dpkg -l python-gnomekeyring >/dev/null 2>&1
    if [ $? == 0 ]; then
    echo "OK"
    else
    echo "Install python-gnomekeyring"
    wget -c http://archive.ubuntu.com/ubuntu/pool/universe/g/gnome-python-desktop/python-gnomekeyring_2.32.0+dfsg-4_amd64.deb
    sudo dpkg -i python-gnomekeyring_2.32.0+dfsg-4_amd64.deb
    sudo apt --fix-broken -y install
    fi
    sudo add-apt-repository -y ppa:screenlets/ppa
    sudo sed -i 's/bionic/xenial/g' /etc/apt/sources.list.d/screenlets-ubuntu-ppa-bionic.list
    sudo apt update && sudo apt -y install screenlets screenlets-pack-all


    But all I get is this:



    tobi@tobi-System-Product-Name:~$ #!/bin/bash
    tobi@tobi-System-Product-Name:~$ sudo dpkg -l python-wnck >/dev/null 2>&1
    tobi@tobi-System-Product-Name:~$ if [ $? == 0 ]; then
    > echo "OK"
    > else
    > echo "Install python-wnck"
    > sudo apt -y install libwnck22
    > wget -c http://archive.ubuntu.com/ubuntu/pool/universe/g/gnome-python-desktop/python-wnck_2.32.0+dfsg-4_amd64.deb
    > sudo dpkg -i python-wnck_2.32.0+dfsg-4_amd64.deb
    > sudo apt --fix-broken -y install
    > fi
    OK
    tobi@tobi-System-Product-Name:~$ sudo dpkg -l python-gnomekeyring >/dev/null 2>&1
    tobi@tobi-System-Product-Name:~$ if [ $? == 0 ]; then
    > echo "OK"
    > else
    > echo "Install python-gnomekeyring"
    > wget -c http://archive.ubuntu.com/ubuntu/pool/universe/g/gnome-python-desktop/python-gnomekeyring_2.32.0+dfsg-4_amd64.deb
    > sudo dpkg -i python-gnomekeyring_2.32.0+dfsg-4_amd64.deb
    > sudo apt --fix-broken -y install
    > fi
    OK
    tobi@tobi-System-Product-Name:~$ sudo add-apt-repository -y ppa:screenlets/ppa
    sudo: unable to execute /usr/bin/add-apt-repository: No such file or directory
    tobi@tobi-System-Product-Name:~$ sudo sed -i 's/bionic/xenial/g' /etc/apt/sources.list.d/screenlets-ubuntu-ppa-bionic.list
    sed: can't read /etc/apt/sources.list.d/screenlets-ubuntu-ppa-bionic.list: No such file or directory
    tobi@tobi-System-Product-Name:~$ sudo apt update && sudo apt -y install screenlets screenlets-pack-all
    Get:1 http://archive.getdeb.net/ubuntu xenial-getdeb InRelease
    Err:1 http://archive.getdeb.net/ubuntu xenial-getdeb InRelease
    Clearsigned file isn't valid, got 'NOSPLIT' (does the network require authentication?)
    Get:2 http://security.ubuntu.com/ubuntu xenial-security InRelease [107 kB]
    Ign:3 http://ppa.launchpad.net/inameiname/stable/ubuntu bionic InRelease
    Hit:4 http://ppa.launchpad.net/jonathonf/python-3.6/ubuntu bionic InRelease
    Hit:5 http://us.archive.ubuntu.com/ubuntu xenial InRelease
    Err:6 http://ppa.launchpad.net/inameiname/stable/ubuntu bionic Release
    404 Not Found [IP: 91.189.95.83 80]
    Get:7 http://us.archive.ubuntu.com/ubuntu xenial-updates InRelease [109 kB]
    Hit:8 https://download.sublimetext.com apt/dev/ InRelease
    Get:9 http://us.archive.ubuntu.com/ubuntu xenial-backports InRelease [107 kB]
    sh: 1: /usr/lib/cnf-update-db: not found
    Reading package lists... Done
    E: Failed to fetch http://archive.getdeb.net/ubuntu/dists/xenial-getdeb/InRelease Clearsigned file isn't valid, got 'NOSPLIT' (does the network require authentication?)
    E: The repository 'http://archive.getdeb.net/ubuntu xenial-getdeb InRelease' is not signed.
    N: Updating from such a repository can't be done securely, and is therefore disabled by default.
    N: See apt-secure(8) manpage for repository creation and user configuration details.
    E: The repository 'http://ppa.launchpad.net/inameiname/stable/ubuntu bionic Release' does not have a Release file.
    N: Updating from such a repository can't be done securely, and is therefore disabled by default.
    N: See apt-secure(8) manpage for repository creation and user configuration details.
    E: Problem executing scripts APT::Update::Post-Invoke-Success 'if /usr/bin/test -w /var/lib/command-not-found/ -a -e /usr/lib/cnf-update-db; then /usr/lib/cnf-update-db > /dev/null; fi'
    E: Sub-process returned an error code
    tobi@tobi-System-Product-Name:~$


    I think sudo apt-get update doesn't work for me, but I don't know how I can fix this.





    output of apt-cache policy python3-software-properties:



    python3-software-properties:
    Installed: 0.96.24.32.4
    Candidate: 0.96.24.32.4
    Version table:
    *** 0.96.24.32.4 100
    100 /var/lib/dpkg/status
    0.96.20.7 500
    500 http://us.archive.ubuntu.com/ubuntu xenial-updates/main amd64 Packages
    500 http://us.archive.ubuntu.com/ubuntu xenial-updates/main i386 Packages
    0.96.20 500
    500 http://us.archive.ubuntu.com/ubuntu xenial/main amd64 Packages
    500 http://us.archive.ubuntu.com/ubuntu xenial/main i386 Packages









    share|improve this question


























      up vote
      1
      down vote

      favorite
      1









      up vote
      1
      down vote

      favorite
      1






      1





      I want to install Screenlets and I tried the following bash:



      #!/bin/bash
      sudo dpkg -l python-wnck >/dev/null 2>&1
      if [ $? == 0 ]; then
      echo "OK"
      else
      echo "Install python-wnck"
      sudo apt -y install libwnck22
      wget -c http://archive.ubuntu.com/ubuntu/pool/universe/g/gnome-python-desktop/python-wnck_2.32.0+dfsg-4_amd64.deb
      sudo dpkg -i python-wnck_2.32.0+dfsg-4_amd64.deb
      sudo apt --fix-broken -y install
      fi
      sudo dpkg -l python-gnomekeyring >/dev/null 2>&1
      if [ $? == 0 ]; then
      echo "OK"
      else
      echo "Install python-gnomekeyring"
      wget -c http://archive.ubuntu.com/ubuntu/pool/universe/g/gnome-python-desktop/python-gnomekeyring_2.32.0+dfsg-4_amd64.deb
      sudo dpkg -i python-gnomekeyring_2.32.0+dfsg-4_amd64.deb
      sudo apt --fix-broken -y install
      fi
      sudo add-apt-repository -y ppa:screenlets/ppa
      sudo sed -i 's/bionic/xenial/g' /etc/apt/sources.list.d/screenlets-ubuntu-ppa-bionic.list
      sudo apt update && sudo apt -y install screenlets screenlets-pack-all


      But all I get is this:



      tobi@tobi-System-Product-Name:~$ #!/bin/bash
      tobi@tobi-System-Product-Name:~$ sudo dpkg -l python-wnck >/dev/null 2>&1
      tobi@tobi-System-Product-Name:~$ if [ $? == 0 ]; then
      > echo "OK"
      > else
      > echo "Install python-wnck"
      > sudo apt -y install libwnck22
      > wget -c http://archive.ubuntu.com/ubuntu/pool/universe/g/gnome-python-desktop/python-wnck_2.32.0+dfsg-4_amd64.deb
      > sudo dpkg -i python-wnck_2.32.0+dfsg-4_amd64.deb
      > sudo apt --fix-broken -y install
      > fi
      OK
      tobi@tobi-System-Product-Name:~$ sudo dpkg -l python-gnomekeyring >/dev/null 2>&1
      tobi@tobi-System-Product-Name:~$ if [ $? == 0 ]; then
      > echo "OK"
      > else
      > echo "Install python-gnomekeyring"
      > wget -c http://archive.ubuntu.com/ubuntu/pool/universe/g/gnome-python-desktop/python-gnomekeyring_2.32.0+dfsg-4_amd64.deb
      > sudo dpkg -i python-gnomekeyring_2.32.0+dfsg-4_amd64.deb
      > sudo apt --fix-broken -y install
      > fi
      OK
      tobi@tobi-System-Product-Name:~$ sudo add-apt-repository -y ppa:screenlets/ppa
      sudo: unable to execute /usr/bin/add-apt-repository: No such file or directory
      tobi@tobi-System-Product-Name:~$ sudo sed -i 's/bionic/xenial/g' /etc/apt/sources.list.d/screenlets-ubuntu-ppa-bionic.list
      sed: can't read /etc/apt/sources.list.d/screenlets-ubuntu-ppa-bionic.list: No such file or directory
      tobi@tobi-System-Product-Name:~$ sudo apt update && sudo apt -y install screenlets screenlets-pack-all
      Get:1 http://archive.getdeb.net/ubuntu xenial-getdeb InRelease
      Err:1 http://archive.getdeb.net/ubuntu xenial-getdeb InRelease
      Clearsigned file isn't valid, got 'NOSPLIT' (does the network require authentication?)
      Get:2 http://security.ubuntu.com/ubuntu xenial-security InRelease [107 kB]
      Ign:3 http://ppa.launchpad.net/inameiname/stable/ubuntu bionic InRelease
      Hit:4 http://ppa.launchpad.net/jonathonf/python-3.6/ubuntu bionic InRelease
      Hit:5 http://us.archive.ubuntu.com/ubuntu xenial InRelease
      Err:6 http://ppa.launchpad.net/inameiname/stable/ubuntu bionic Release
      404 Not Found [IP: 91.189.95.83 80]
      Get:7 http://us.archive.ubuntu.com/ubuntu xenial-updates InRelease [109 kB]
      Hit:8 https://download.sublimetext.com apt/dev/ InRelease
      Get:9 http://us.archive.ubuntu.com/ubuntu xenial-backports InRelease [107 kB]
      sh: 1: /usr/lib/cnf-update-db: not found
      Reading package lists... Done
      E: Failed to fetch http://archive.getdeb.net/ubuntu/dists/xenial-getdeb/InRelease Clearsigned file isn't valid, got 'NOSPLIT' (does the network require authentication?)
      E: The repository 'http://archive.getdeb.net/ubuntu xenial-getdeb InRelease' is not signed.
      N: Updating from such a repository can't be done securely, and is therefore disabled by default.
      N: See apt-secure(8) manpage for repository creation and user configuration details.
      E: The repository 'http://ppa.launchpad.net/inameiname/stable/ubuntu bionic Release' does not have a Release file.
      N: Updating from such a repository can't be done securely, and is therefore disabled by default.
      N: See apt-secure(8) manpage for repository creation and user configuration details.
      E: Problem executing scripts APT::Update::Post-Invoke-Success 'if /usr/bin/test -w /var/lib/command-not-found/ -a -e /usr/lib/cnf-update-db; then /usr/lib/cnf-update-db > /dev/null; fi'
      E: Sub-process returned an error code
      tobi@tobi-System-Product-Name:~$


      I think sudo apt-get update doesn't work for me, but I don't know how I can fix this.





      output of apt-cache policy python3-software-properties:



      python3-software-properties:
      Installed: 0.96.24.32.4
      Candidate: 0.96.24.32.4
      Version table:
      *** 0.96.24.32.4 100
      100 /var/lib/dpkg/status
      0.96.20.7 500
      500 http://us.archive.ubuntu.com/ubuntu xenial-updates/main amd64 Packages
      500 http://us.archive.ubuntu.com/ubuntu xenial-updates/main i386 Packages
      0.96.20 500
      500 http://us.archive.ubuntu.com/ubuntu xenial/main amd64 Packages
      500 http://us.archive.ubuntu.com/ubuntu xenial/main i386 Packages









      share|improve this question















      I want to install Screenlets and I tried the following bash:



      #!/bin/bash
      sudo dpkg -l python-wnck >/dev/null 2>&1
      if [ $? == 0 ]; then
      echo "OK"
      else
      echo "Install python-wnck"
      sudo apt -y install libwnck22
      wget -c http://archive.ubuntu.com/ubuntu/pool/universe/g/gnome-python-desktop/python-wnck_2.32.0+dfsg-4_amd64.deb
      sudo dpkg -i python-wnck_2.32.0+dfsg-4_amd64.deb
      sudo apt --fix-broken -y install
      fi
      sudo dpkg -l python-gnomekeyring >/dev/null 2>&1
      if [ $? == 0 ]; then
      echo "OK"
      else
      echo "Install python-gnomekeyring"
      wget -c http://archive.ubuntu.com/ubuntu/pool/universe/g/gnome-python-desktop/python-gnomekeyring_2.32.0+dfsg-4_amd64.deb
      sudo dpkg -i python-gnomekeyring_2.32.0+dfsg-4_amd64.deb
      sudo apt --fix-broken -y install
      fi
      sudo add-apt-repository -y ppa:screenlets/ppa
      sudo sed -i 's/bionic/xenial/g' /etc/apt/sources.list.d/screenlets-ubuntu-ppa-bionic.list
      sudo apt update && sudo apt -y install screenlets screenlets-pack-all


      But all I get is this:



      tobi@tobi-System-Product-Name:~$ #!/bin/bash
      tobi@tobi-System-Product-Name:~$ sudo dpkg -l python-wnck >/dev/null 2>&1
      tobi@tobi-System-Product-Name:~$ if [ $? == 0 ]; then
      > echo "OK"
      > else
      > echo "Install python-wnck"
      > sudo apt -y install libwnck22
      > wget -c http://archive.ubuntu.com/ubuntu/pool/universe/g/gnome-python-desktop/python-wnck_2.32.0+dfsg-4_amd64.deb
      > sudo dpkg -i python-wnck_2.32.0+dfsg-4_amd64.deb
      > sudo apt --fix-broken -y install
      > fi
      OK
      tobi@tobi-System-Product-Name:~$ sudo dpkg -l python-gnomekeyring >/dev/null 2>&1
      tobi@tobi-System-Product-Name:~$ if [ $? == 0 ]; then
      > echo "OK"
      > else
      > echo "Install python-gnomekeyring"
      > wget -c http://archive.ubuntu.com/ubuntu/pool/universe/g/gnome-python-desktop/python-gnomekeyring_2.32.0+dfsg-4_amd64.deb
      > sudo dpkg -i python-gnomekeyring_2.32.0+dfsg-4_amd64.deb
      > sudo apt --fix-broken -y install
      > fi
      OK
      tobi@tobi-System-Product-Name:~$ sudo add-apt-repository -y ppa:screenlets/ppa
      sudo: unable to execute /usr/bin/add-apt-repository: No such file or directory
      tobi@tobi-System-Product-Name:~$ sudo sed -i 's/bionic/xenial/g' /etc/apt/sources.list.d/screenlets-ubuntu-ppa-bionic.list
      sed: can't read /etc/apt/sources.list.d/screenlets-ubuntu-ppa-bionic.list: No such file or directory
      tobi@tobi-System-Product-Name:~$ sudo apt update && sudo apt -y install screenlets screenlets-pack-all
      Get:1 http://archive.getdeb.net/ubuntu xenial-getdeb InRelease
      Err:1 http://archive.getdeb.net/ubuntu xenial-getdeb InRelease
      Clearsigned file isn't valid, got 'NOSPLIT' (does the network require authentication?)
      Get:2 http://security.ubuntu.com/ubuntu xenial-security InRelease [107 kB]
      Ign:3 http://ppa.launchpad.net/inameiname/stable/ubuntu bionic InRelease
      Hit:4 http://ppa.launchpad.net/jonathonf/python-3.6/ubuntu bionic InRelease
      Hit:5 http://us.archive.ubuntu.com/ubuntu xenial InRelease
      Err:6 http://ppa.launchpad.net/inameiname/stable/ubuntu bionic Release
      404 Not Found [IP: 91.189.95.83 80]
      Get:7 http://us.archive.ubuntu.com/ubuntu xenial-updates InRelease [109 kB]
      Hit:8 https://download.sublimetext.com apt/dev/ InRelease
      Get:9 http://us.archive.ubuntu.com/ubuntu xenial-backports InRelease [107 kB]
      sh: 1: /usr/lib/cnf-update-db: not found
      Reading package lists... Done
      E: Failed to fetch http://archive.getdeb.net/ubuntu/dists/xenial-getdeb/InRelease Clearsigned file isn't valid, got 'NOSPLIT' (does the network require authentication?)
      E: The repository 'http://archive.getdeb.net/ubuntu xenial-getdeb InRelease' is not signed.
      N: Updating from such a repository can't be done securely, and is therefore disabled by default.
      N: See apt-secure(8) manpage for repository creation and user configuration details.
      E: The repository 'http://ppa.launchpad.net/inameiname/stable/ubuntu bionic Release' does not have a Release file.
      N: Updating from such a repository can't be done securely, and is therefore disabled by default.
      N: See apt-secure(8) manpage for repository creation and user configuration details.
      E: Problem executing scripts APT::Update::Post-Invoke-Success 'if /usr/bin/test -w /var/lib/command-not-found/ -a -e /usr/lib/cnf-update-db; then /usr/lib/cnf-update-db > /dev/null; fi'
      E: Sub-process returned an error code
      tobi@tobi-System-Product-Name:~$


      I think sudo apt-get update doesn't work for me, but I don't know how I can fix this.





      output of apt-cache policy python3-software-properties:



      python3-software-properties:
      Installed: 0.96.24.32.4
      Candidate: 0.96.24.32.4
      Version table:
      *** 0.96.24.32.4 100
      100 /var/lib/dpkg/status
      0.96.20.7 500
      500 http://us.archive.ubuntu.com/ubuntu xenial-updates/main amd64 Packages
      500 http://us.archive.ubuntu.com/ubuntu xenial-updates/main i386 Packages
      0.96.20 500
      500 http://us.archive.ubuntu.com/ubuntu xenial/main amd64 Packages
      500 http://us.archive.ubuntu.com/ubuntu xenial/main i386 Packages






      apt 18.04 updates screenlets






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Nov 3 at 16:26

























      asked Nov 3 at 10:30









      T.Wimma

      155




      155






















          1 Answer
          1






          active

          oldest

          votes

















          up vote
          0
          down vote



          accepted










          The add-apt-repository command is located in software-properties-common. You need to install it first:



          sudo apt-get install software-properties-common


          Then you may want to remove or edit paths for problematic PPAs:




          1. GetDeb.net is often down. You should follow this answer and edit corresponding sources.list.


          2. The inameiname/stable PPA does not have files for Bionic (but have for Xenial). You should edit its sources.list and change bionic to xenial.



          Then you will be able to update package lists and retry your procedure.



          As the result you will get ScreenLets installed and can configure them with screenlets:



          ScreenLets Manager





          Note: for Ubuntu 16.04 LTS one can use official PPA - ppa:screenlets/ppa.






          share|improve this answer























          • I'm getting this error: E: The package python3-software-properties needs to be reinstalled, but I can't find an archive for it.
            – T.Wimma
            Nov 3 at 16:21












          • Then please add output of apt-cache policy python3-software-properties to the question.
            – N0rbert
            Nov 3 at 16:23










          • I have added it.
            – T.Wimma
            Nov 3 at 16:27










          • Install normal version with sudo apt-get install --reinstall python3-software-properties=0.96.20.7.
            – N0rbert
            Nov 3 at 17:49










          • E: The package python3-software-properties needs to be reinstalled, but I can't find an archive for it. (same error again)
            – T.Wimma
            Nov 3 at 18:00











          Your Answer








          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "89"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1089689%2fhow-to-install-screenlets-on-ubuntu-18-04%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes








          up vote
          0
          down vote



          accepted










          The add-apt-repository command is located in software-properties-common. You need to install it first:



          sudo apt-get install software-properties-common


          Then you may want to remove or edit paths for problematic PPAs:




          1. GetDeb.net is often down. You should follow this answer and edit corresponding sources.list.


          2. The inameiname/stable PPA does not have files for Bionic (but have for Xenial). You should edit its sources.list and change bionic to xenial.



          Then you will be able to update package lists and retry your procedure.



          As the result you will get ScreenLets installed and can configure them with screenlets:



          ScreenLets Manager





          Note: for Ubuntu 16.04 LTS one can use official PPA - ppa:screenlets/ppa.






          share|improve this answer























          • I'm getting this error: E: The package python3-software-properties needs to be reinstalled, but I can't find an archive for it.
            – T.Wimma
            Nov 3 at 16:21












          • Then please add output of apt-cache policy python3-software-properties to the question.
            – N0rbert
            Nov 3 at 16:23










          • I have added it.
            – T.Wimma
            Nov 3 at 16:27










          • Install normal version with sudo apt-get install --reinstall python3-software-properties=0.96.20.7.
            – N0rbert
            Nov 3 at 17:49










          • E: The package python3-software-properties needs to be reinstalled, but I can't find an archive for it. (same error again)
            – T.Wimma
            Nov 3 at 18:00















          up vote
          0
          down vote



          accepted










          The add-apt-repository command is located in software-properties-common. You need to install it first:



          sudo apt-get install software-properties-common


          Then you may want to remove or edit paths for problematic PPAs:




          1. GetDeb.net is often down. You should follow this answer and edit corresponding sources.list.


          2. The inameiname/stable PPA does not have files for Bionic (but have for Xenial). You should edit its sources.list and change bionic to xenial.



          Then you will be able to update package lists and retry your procedure.



          As the result you will get ScreenLets installed and can configure them with screenlets:



          ScreenLets Manager





          Note: for Ubuntu 16.04 LTS one can use official PPA - ppa:screenlets/ppa.






          share|improve this answer























          • I'm getting this error: E: The package python3-software-properties needs to be reinstalled, but I can't find an archive for it.
            – T.Wimma
            Nov 3 at 16:21












          • Then please add output of apt-cache policy python3-software-properties to the question.
            – N0rbert
            Nov 3 at 16:23










          • I have added it.
            – T.Wimma
            Nov 3 at 16:27










          • Install normal version with sudo apt-get install --reinstall python3-software-properties=0.96.20.7.
            – N0rbert
            Nov 3 at 17:49










          • E: The package python3-software-properties needs to be reinstalled, but I can't find an archive for it. (same error again)
            – T.Wimma
            Nov 3 at 18:00













          up vote
          0
          down vote



          accepted







          up vote
          0
          down vote



          accepted






          The add-apt-repository command is located in software-properties-common. You need to install it first:



          sudo apt-get install software-properties-common


          Then you may want to remove or edit paths for problematic PPAs:




          1. GetDeb.net is often down. You should follow this answer and edit corresponding sources.list.


          2. The inameiname/stable PPA does not have files for Bionic (but have for Xenial). You should edit its sources.list and change bionic to xenial.



          Then you will be able to update package lists and retry your procedure.



          As the result you will get ScreenLets installed and can configure them with screenlets:



          ScreenLets Manager





          Note: for Ubuntu 16.04 LTS one can use official PPA - ppa:screenlets/ppa.






          share|improve this answer














          The add-apt-repository command is located in software-properties-common. You need to install it first:



          sudo apt-get install software-properties-common


          Then you may want to remove or edit paths for problematic PPAs:




          1. GetDeb.net is often down. You should follow this answer and edit corresponding sources.list.


          2. The inameiname/stable PPA does not have files for Bionic (but have for Xenial). You should edit its sources.list and change bionic to xenial.



          Then you will be able to update package lists and retry your procedure.



          As the result you will get ScreenLets installed and can configure them with screenlets:



          ScreenLets Manager





          Note: for Ubuntu 16.04 LTS one can use official PPA - ppa:screenlets/ppa.







          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited Dec 1 at 9:44

























          answered Nov 3 at 11:00









          N0rbert

          20.6k54494




          20.6k54494












          • I'm getting this error: E: The package python3-software-properties needs to be reinstalled, but I can't find an archive for it.
            – T.Wimma
            Nov 3 at 16:21












          • Then please add output of apt-cache policy python3-software-properties to the question.
            – N0rbert
            Nov 3 at 16:23










          • I have added it.
            – T.Wimma
            Nov 3 at 16:27










          • Install normal version with sudo apt-get install --reinstall python3-software-properties=0.96.20.7.
            – N0rbert
            Nov 3 at 17:49










          • E: The package python3-software-properties needs to be reinstalled, but I can't find an archive for it. (same error again)
            – T.Wimma
            Nov 3 at 18:00


















          • I'm getting this error: E: The package python3-software-properties needs to be reinstalled, but I can't find an archive for it.
            – T.Wimma
            Nov 3 at 16:21












          • Then please add output of apt-cache policy python3-software-properties to the question.
            – N0rbert
            Nov 3 at 16:23










          • I have added it.
            – T.Wimma
            Nov 3 at 16:27










          • Install normal version with sudo apt-get install --reinstall python3-software-properties=0.96.20.7.
            – N0rbert
            Nov 3 at 17:49










          • E: The package python3-software-properties needs to be reinstalled, but I can't find an archive for it. (same error again)
            – T.Wimma
            Nov 3 at 18:00
















          I'm getting this error: E: The package python3-software-properties needs to be reinstalled, but I can't find an archive for it.
          – T.Wimma
          Nov 3 at 16:21






          I'm getting this error: E: The package python3-software-properties needs to be reinstalled, but I can't find an archive for it.
          – T.Wimma
          Nov 3 at 16:21














          Then please add output of apt-cache policy python3-software-properties to the question.
          – N0rbert
          Nov 3 at 16:23




          Then please add output of apt-cache policy python3-software-properties to the question.
          – N0rbert
          Nov 3 at 16:23












          I have added it.
          – T.Wimma
          Nov 3 at 16:27




          I have added it.
          – T.Wimma
          Nov 3 at 16:27












          Install normal version with sudo apt-get install --reinstall python3-software-properties=0.96.20.7.
          – N0rbert
          Nov 3 at 17:49




          Install normal version with sudo apt-get install --reinstall python3-software-properties=0.96.20.7.
          – N0rbert
          Nov 3 at 17:49












          E: The package python3-software-properties needs to be reinstalled, but I can't find an archive for it. (same error again)
          – T.Wimma
          Nov 3 at 18:00




          E: The package python3-software-properties needs to be reinstalled, but I can't find an archive for it. (same error again)
          – T.Wimma
          Nov 3 at 18:00


















          draft saved

          draft discarded




















































          Thanks for contributing an answer to Ask Ubuntu!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.





          Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


          Please pay close attention to the following guidance:


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1089689%2fhow-to-install-screenlets-on-ubuntu-18-04%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Quarter-circle Tiles

          build a pushdown automaton that recognizes the reverse language of a given pushdown automaton?

          Mont Emei