Using rpm update firefox [closed] - linux

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 8 years ago.
Improve this question
What command do I run in order to update firefox using rpm?
I have been asked this question and am not aware how to do it. Any help will be appreciated.

You perhaps could do this using your distro's software updater, but suppose you've got FF's installer (rpm) file and also suppose that it's called firefox.rpm. You should then do:
rpm -Uvh firefox.rpm
If you don't have any previous FF version installed on your computer you might as well do:
rpm -ivh firefox.rpm

Alternatively, if you have yum configured on rpm based systems (RHEL or Fedora) you could simple run the below command, this would download and update the dependencies, instead of just updating only a single firefox rpm.
`yum update firefox`

Related

how do I know which package manager in installed on my linux [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've received a linux-yocto box. I now I'm trying to installing some software, on ubuntu I use apt-get but it seems not to work/installe. so I've tried yum same result.
so my question is, is there a way to find out which package manager is install on my linux system ?
thanks in advance !
Yocto is using either rpm, dpkg, or opkg as the package manager. If the tools are installed on the image, which isn't a requirement, then the binaries are either dnf (or yum if it is a really old release), apt-get, or opkg respectively.
There's a reasonable chance that you've been given an image without a package manager or a working feed though. The joy of Yocto is that it is so flexible, so you should ask whoever gave you the software.

Sudo apt-get install -f removed all packages from debian [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Closed 7 years ago.
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.
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.
Improve this question
I used
sudo apt-get install -f
This command removed all packages from my Debian 64 bit wheezy.
Even the core package as gnome application and chrome even I am not able to launch terminal.
I want to restore them . how can I?
Any help will be appreciated.
This shows why it is important to understand what apt-get is about to do before you accept its recommendation. As sometimes, its recommended solution will be to remove everything, as you have discovered. It is not possible to tell why it came to this decision without more information.
You can use apt-get install task-gnome-desktop to reinstall the Gnome desktop. You will have to keep repeating this for the packages that are missing.
However, it is possible that the problem that caused apt-get to remove these packages in the first place is still present, and the above commands will fail. In which case you will need to investigate the errors you get.

"Network services system are not compatible with this version ." Debian 8 [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 7 years ago.
Improve this question
Helllo, I'm using Debian 8 and it runs correctly, but I restart my computer after installing icons and gnome shell extensions and that happened :(
any ideas?
Translate to English "Network services system are not compatible with this version"
Thank you for help
If there are incompatibilities, I would suggest you run the 'upgrade manager', and let it check if there are packages which have to be update.
How did you install the icons and what did you install from gnome? An extension?
Try this:
sudo apt-get --reinstall install network-manager
I think your installation, or your last update, was interrupted and incomplete.

Postfix and database [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 8 years ago.
Improve this question
I am about to install postfix/Dovecot in Redhat Linux server. After checking this link http://www.linuxfromscratch.org/blfs/view/svn/server/postfix.html, I knew that I had to install berkley database too.
But after checking softwares installed on the server, I found another DB SW installed.
Can I depend on another kind of databases other than the one required in the above link?
You don't mention the version of Red Hat, but I assume you use a version which is not so terribly old it does not have yum.
With
yum deplist postfix
you can list all the dependencies which postfix has in the RPM package. On my Fedora system, libdb is listed as a dependency, which is the Berkeley DB library and is sufficient for postfix.
When you install RPM's with yum, the dependencies are automatically resolved and everything which is required will be installed. Trust yum.

How to install software library again and have both two? [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 8 years ago.
Improve this question
I have installed tesseract-ocr with apt-get
and now
i want to get svn code, make some changes in it and compile it on my own and install again.
I want first instance remain, and give a different name to newly installing instance. But installation, make procedures and linux logic requires put .h files into general folders like "/usr/include" without specific folders.
So what is the easiest path to install another instance of the same program. Thanks
You need to install it with a different prefix. When the program publisher had the foresight to use an autoconf-like configure script, you can simply use the --prefix option:
$ ./configure --prefix=`pwd`/install
to install the library in the install subdirectory. For CMake and other "improved" build systems, read their documentation, many do provide some switch for that.

Resources