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
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 2 years ago.
Improve this question
I accidentally execute the following command
sudo cp libcuda.so /usr/bin/ld
because i thought /usr/bin/ld is a directory, and I believe my /usr/bin/ld is broken now, at present I cannot use cmake anymore, does anyone know how can I fix this? thanks!
System: Ubuntu 20.04
One simple way to fix it would be to reinstall the package containing /usr/bin/ld.
sudo apt reinstall binutils
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)
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 9 years ago.
Improve this question
I am attempting to uninstall Enthought Canopy (Linux 64-bit installation) from my Mint Linux KDE machine. The Enthought help file says to remove the ~/Canopy directory.
How do I remove the Canopy directory from my $PATH? This is my $PATH:
/home/steve/Enthought/Canopy_64bit/User/bin:/home/steve/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games
I've searched my ~/.bashrc, ~/.profile, /etc/profile, and /etc/bash.bashrc files, and there is no reference to /home/steve/Enthought/Canopy_64bit/User/bin.
How do I replace the $PATH value that was set by my Canopy installation with the default Python installation from my machine? Thanks.
The installer modifies your .profile or .bash_profile files to include a source ~/Enthought/Canopy_64bit/User/bin/activate statement, which probably then modifies your path. Look through your dot files for that source statement instead of the the enthought path itself.
https://support.enthought.com/entries/23580651-Uninstalling-Canopy