Install HP Raid HPSA ssacli on Ubuntu

You just take a new online.net server, and you want to manage your Raid Array ? Get sascli for HPSA Smart Array with sascli on Ubuntu In order to use the online.net documentation you need the ssacli tools. This install method works on latest LTS ubuntu Release, Ubuntu 14.04 trusty and Ubuntu 16.04 Xenials. You just have to edit nano /etc/apt/sources.list Then add the source at the end of the file...

novembre 15th, 2017 by Benoit Bonneville 

Revert Debian package configuration

If one day you remove your package configuration Example of stupid command rm -rf /etc/apache2/ It’s time to Revert Apt package configuration apt-get -o DPkg::options::=–force-confmiss –reinstall install [package name] This command install only non existing configuration files. If you have modified your configuration file, and want to get back to the package version, you need to...

octobre 5th, 2017 by Benoit Bonneville 

Laravel 5 and php display_errors

Laravel 5 do not display php errors. Fatal, Warning and even Notice are hidden, and will result in a blank page. Avoid the « blank page » syndrom You have to update your environment to « testing ». So please edit your « .env » file at the root of your project and add : APP_ENV=testing You may find some tips on varius internet forums...

août 10th, 2017 by Benoit Bonneville