To find the version of Ubuntu that you are using, from the shell enter the following:
- lsb_release -a
It will print out some niceties that you are looking for.
To find the version of Ubuntu that you are using, from the shell enter the following:
It will print out some niceties that you are looking for.
Looking for the primary php.ini in Ubuntu to change some default settings across Apache? No problemo. Here are three different options for finding it:
<?php phpinfo(); ?> through your PHP interpreter. This will show you where your main php.ini file is.find / -name php.ini
/etc/php5/apache2/php.ini (I’m on Ubuntu 9.10 – karmic).This should just about do it for you, old chap.