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 had sve version 1.7 installed on CentOS and now I installed svn 1.11 using following command -
sudo yum localinstall CollabNetSubversion-client-1.11.1-1.x86_64.rpm
but after hitting svn --version, it still showing 1.7 version. Please guide me to what else I need to do to use latest version 1.11 of svn.
This might be trivial question but I haven't worked on linux environment more. Please help.
You can exec command
rpm -ql CollabNetSubversion-client-1.11.1-1.x86_64
and from the list get the location of new svn. Then you can add the directory where this is installed on the first place in PATH:
export PATH=/here/is/the/location:$PATH
(and add this to ~/.bashrc also)
Related
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 4 years ago.
Improve this question
I want to install vmfs-tools to read vmdk in linux.
OS is CentOs7.
I refer here
https://centos.pkgs.org/7/forensics-x86_64/vmfs-tools-0.2.5-2.el7.x86_64.rpm.html
I could install vmfs-tools-0.2.5-2.el7.x86_64.rpm in my CentOs.
But fail this command which for installing vmfs-tools.
"sudo yum --enablerepo=forensics install vmfs-tools"
This is fail message.
Please teach me if you know about this, Thank you.
Moved permanently
... Means the URL in the file.repo changed. See https://forensics.cert.org/
New direct URL to "cert" https://forensics.cert.org/centos/cert/7/x86_64/
# CentOS-CERT.repo
[cert]
name=CentOS-CERT
baseurl=https://forensics.cert.org/centos/cert/7/x86_64/
gpgcheck=0
enabled=1
Add cert.repo to /etc/yum.repos.d/ . Then you can do # yum install vmfs-tools
P.S.: The site "pkgs.org" will often show outdated information.
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 5 years ago.
Improve this question
How to install jot command on the Win10 because I use Git Bash to run a xxx.sh and show a exception as following:
jot: command not found
How can I solve this?
jot (seen here) is a BSD command.
So unless you can get it sources (usr.bin/jot/jot.c) and somehow recompile it for mingw, I don't see it available either on Linux or as an exe on Windows.
Update Nov. 2020: DimP adds in the comments:
For anyone looking for an answer on Debian etc. environments, Ubuntu has Athena-jot:
sudo apt-get update sudo apt-get install athena-jot
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 5 years ago.
Improve this question
While trying to build Wireshark on Ubuntu 16.04 from source code, I encounter this error after running ./configure:
error: /home/yoyo/anaconda3/bin/lrelease -qt=5 -version returned non-zero exit status
Any suggestions?
You appear to have python installed in your home directory via anaconda.
Probably you set this via the PATH variable in your .bashrc (or the anaconda installer did)
Try editing .bashrc and removing it so you're using ubu system defaults.
Run the failing command manually to see if it would work or if you have another problem.
$ /usr/bin/lrelease -qt=5 -version
lrelease version 5.5.1
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
I have to install a package (J-Link: https://www.segger.com/jlink-software.html) into Ubuntu 14.04 LTS (Latest 64 bit (4.1.0-x86_64-linode59)), but I am not sure which one I should install:
DEB Installer 64-bit version
RPM Installer 64-bit version
TGZ archive 64-bit version
All three are possible, but
It is probably easiest to install the .deb, assuming it is appropriate for your operating system.
To check the integrity of the deb before installing:
md5sum PACKAGE.deb
and make sure the output matches the md5sum reported on the website from which you downloaded the deb.
Then to install the deb:
dpkg -i PACKAGE.deb
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
In my Ubuntu 12.04 LTS 32bit I downloaded a gbs package clone from Server.
git clone git://git.tizen.org/tools/gbs
I now want to install it but the following command doesn't work:
sudo apt-get install gbs
I guess that my config file has problems. Then, how can I install it by using the downloaded files? without Network Connection?
You can find installation instructions for Ubuntu here - no need to clone it from git:
https://developer.tizen.org/dev-guide/2.2.0/org.tizen.platform.development/html/platform_dev_env/gbs_installation.htm