Why do i get repository error in terminal when i want to update ubuntu 20.04? [closed] - ubuntu-20.04

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 2 years ago.
Improve this question
When i use sudo apt update command in terminal to see if there are a new updates for packages i get repository error like below :
E: The repository 'http://ppa.launchpad.net/skunk/pepper-flash/ubuntu focal 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.
How can i solve that?

Open terminal.
Then: cd /etc/apt
Then: grep -Ril "pepper-flash" .
Then clear or comment the entries related to "pepper-flash" repo in the files you have received on previous step.
Then do sudo apt update
Say you have detected that the repos are defined in
sources.list.d/skunk-ubuntu-pepper-flash-focal.list.save
sources.list.d/skunk-ubuntu-pepper-flash-focal.list
Then run the command sudo rm sources.list.d/skunk-ubuntu-pepper-flash-focal.list*

Related

How to unzip on Amazon Linux 2? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 2 years ago.
Improve this question
I have a file names awscliv2.zip and I'm trying to unzip it.
So first I tried:
unzip awscliv2.zip
But got:
-bash: unzip: command not found
And then I tried:
tar xvf awscliv2.zip
But got:
tar: This does not look like a tar archive
tar: Skipping to next header
tar: Exiting with failure status due to previous errors
You can install unzip using:
sudo yum install unzip

"Raspberry Pi 3 No sound output over hdmi" [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 3 years ago.
Improve this question
I connected the Raspberry to my tv via HDMI cable but no sound came out, i tried to install libraries:
sudo apt-get install alsa-utils
sudo apt-get install mpg321
sudo apt-get install lame
and loaded the driver:
sudo modprobe snd_bcm2835
and executed the following command:
sudo amixer cset numid=3 2
In the instructions it says that if you are using HDMI choose "2".
When I executed the command it just says:
amixer: Control default open error: No such file or directory
First of all: What are you trying to reproduce?
Then... What does it say if you type: ?
amixer controls
Also, if you go to /boot/config.txt, what is the value of dtparam=audio ? It should be on.
For more info, maybe check this out: https://elinux.org/R-Pi_Troubleshooting#Sound

ubuntu-16.10 unable to locate package [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 2 years ago.
Improve this question
I have recently setup Ubuntu 16.10 and am trying to install PuTTY but keep getting an 'E: Unable to locate package putty' error. I have run both 'sudo apt-get update' and 'sudo apt-get upgrade'. Both complete with success. I have verified that 'main', 'universe', 'restricted', and 'multiverse' are all enabled. But I continue to get the error when trying to install PuTTY. This is the command I'm using 'sudo apt install putty'. Any thoughts on what might be going on?
I was able to finally determine that 16.10 was just too old to update properly. I have moved to 18.04 and successfully installed PuTTY.
This is a common problem when you follow the instructions on the PuTTY website.
Here is how to solve it for ubuntu:
instead of:
sudo apt-get install PuTTY
use:
sudo apt install putty
As expected the package is case sensitive but somehow even PuTTY haven't figured it out.

Install 'yum' in Centos7 [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed last year.
Improve this question
I've deleted yum from my server and I did wget to download yum again and extract it. In this folder, I have a lot of files:
AUTHORS completion-helper.py Makefile shell.py yumcommands.py
bin COPYING output.py test yum-cron
callback.py docs po TODO yummain.py
ChangeLog etc README utils.py yum.spec
cli.py INSTALL rpmUtils yum yum-updatesd.py
How can I install it?
Another solution to install packages is to use the RPM command. You first need to download the rpm file and then install it.
For more infos: RPM man page
So, to install yum, simply run those two commands:
wget https://dl.fedoraproject.org/pub/epel/7/x86_64/Packages/e/epel-release-7-14.noarch.rpm
rpm -ivh yum-3.4.3-154.el7.centos.noarch.rpm

`which` finds file, but `bash` doesn't [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 9 years ago.
Improve this question
I installed Fabric via pip.
Got pip by:
sudo apt-get install python-pip
Got fabric by:
sudo pip install fabric
(It failed when I tried w/out sudo, and warns me about a lack of files in docs or tests).
Now I get the following:
$ which fab
/usr/local/bin/fab
$
$ fab
bash: /usr/bin/fab: No such file or directory
Huh!? I thought which searched the PATH for the resolution that would be used by bash. Am I misunderstanding something? Is Fabric, Pip, or Bash to blame here? How do I fix it?
I know for now I can run /usr/local/bin/fab or:
`which fab` deploy
But I want it to run correctly!
The following will clear where bash thinks fab is located:
hash -d fab
If which fab is in /usr/*local*/bin, but /usr/bin/fab can't be run, I would think of a broken symlink. Or /usr/local/bin/fab is a script that calls /usr/bin/fab (which doesn't exist).
Try file /usr/local/bin/fab.

Resources