You are not logged in.
Pages: 1
how do I check if i have a software isntalled and what version of taht software I have installed?
How do I heck if I have installed GCC, and version I have installed?
Offline
this suffix is just for your want:
-v, --version display the current version and exit
example
gcc -v
and this is my gcc version:
[titus@archroom ~]$ gcc -v
Using built-in specs.
Target: i686-pc-linux-gnu
Configured with: ../gcc-4.1.1/configure --prefix=/usr --enable-shared --enable-languages=c,c++,objc --enable-threads=posix --enable-__cxa_atexit --disable-multilib --libdir=/usr/lib --enable-clocale=gnu
Thread model: posix
gcc version 4.1.1
In a world without walls,who need windows?
Offline
To check for a package, you might for example try looking for one of the executables belonging to that package (for example type "gcc" into a terminal to check if it's installed - it should be by default on arch) or use pacman
To check version, this works with everything:
pacman -Qi package-name
If you don't know what package a program belongs to, try this:
pacman -Qo /usr/bin/program
Offline
Pages: 1