Life of a Geek Admin

The Daily adventures of a true geek administrator

Life of a Geek Admin - The Daily adventures of a true geek administrator

VLC v2.0.1 Released

The all-in-one VLC (Video Lan Media Player) has released a bugfix version of the best free cross platform player available. You can download it from here.  This is my goto piece of software on Windows and Linux for playing all types of media. Many fixes available in this release.

Changes between 2.0.0 and 2.0.1:
——————————–

Access:
* fix and improve the CDDB information retrieval
* fix the samba module compilation
* fix UDP / RTP multicast stream reception on Mac OS X when using the 10.7 SDK
* multiple fixes for HLS support, notably on Win32 and for encryption
* multiple fixes for Bluray discs playback
* fix for DVD decryption on some RPC-I drives

Codecs:
* Support for MXPEG files
* limit auto-detected threads to 4 in avcodec module
* fix quicktime audio codecs in RTSP streams

Demuxers:
* Fix multi-file splitted RAR archive support
* Fix a crash when seeking in mka
* Improve MKV multi-video tracks support

Muxers:
* Fix ogm header creation

Audio filters:
* limit spatializer filter distortions
* Use fastest SinC algorithm for samplerate module

Audio output:
* Fix S/PDIF passthrough with ALSA.
* Remove flawed ALSA channels autodetection. The available ALSA channels MUST be configured now (stereo by default).
* Fix delay when changing the volume on Mac OS X

Video filters:
* Fix gradfun unloading on Windows platform

Mac OS X interface:
* allow to hide the playlist to get a small controller window
* allow to hide the sidebar
* disable Lion fullscreen mode by default, since its behavior is misleading – this fixes fullscreen video output on a secondary screen
* noticebly faster launch time
* correct a few visual glitches and accessibility support
* re-enable visual feedback on seek and volume changes
* improve track synchronization panel
* fix fontconfig cache dialog, closure of the interface and numerous crashes
* fix crop, aspect ratio handling, DVD (no menu) support and Open subtitle menu

Qt interface:
* allow a native seek slider instead of the blue one
* fixes in the playlist, the addons dialog, the menus, the main toolbar the open dialogs, preferences and customization dialogs
* fix for fontconfig cache dialog, when rebuilding ASS fonts

Skins interface:
* fix for menus display
* Addition of $R to display current playback speed
* documentation update

Web interface:
* fix mobiles display for remote control mode
* support for .drc and .3ga extensions

Service discovery:
* fix SAP discovery, where an item was added multiple times
* fix SAP discovery on Mac OS X when using the 10.7 SDK
* Update Jamendo selections

Miscellaneous:
* fix DBus crash
* fix build issues on BSD, Linux/PPC and Linux/Sparc
* fix a crash on VLM close

Security:
* Update libpng to 1.5.9 (CVE-2011-3026)
* Update freetype to 2.4.9 (CVE-2012-1126 up to CVE-2012-1144)
* Fix MMS stack overflow (SA-1201)
* Fix RealRTSP heap overflow (SA-1202)

Translations:
* Update of Czech, Spanish, Swedish, Turkish and Walloon translations

Installing GLPI

The description of GLPI according to their site is, GLPI is the Information Resource-Manager with an additional Administration- Interface. You can use it to build up a database with an inventory for your company (computer, software, printers…). It has enhanced functions to make the daily life for the administrators easier, like a job-tracking-system with mail-notification and methods to build a database with basic information about your network-topology.

The principal functionality of the application are :

  • The precise inventory of all the technical resources. All their characteristics will be stored in a database.
  • Management and the history of the maintenance actions and the bound procedures. This application is dynamic and is directly connected to the users who can post requests to the technicians. An interface thus authorizes the latter with if required preventing the service of maintenance and indexing a problem encountered with one of the technical resources to which they have access.

For this installation we will be installing the base modules and also the mass import feature to retrieve the data we already have in OCS Inventory NG from the network.

Installation of GLPI and its various modules is simple with RHEL 6 as the packages are in the repository. Open a terminal session on your server or an ssh session to your server and run the following command to start the installation. This will install GLPI 0.78-5 on the server and all the dependencies for the program.

$ sudo yum install –y glpi glpi-mass-ocs-import glpi-data-injection glpi-pdf

Now that we have it installed we need to create the glpi database and create an id “synchro” that will be used to synchronize the ocsweb and glpi databases and give access to ocsweb database for synchro id. Attach to the mysql database and run the following commands:

$ mysql -uroot -prootsecret
mysql> CREATE USER ‘glpi’@'%’ IDENTIFIED BY ‘glpipass’;
mysql> GRANT USAGE ON *.* TO ‘glpi’@'%’ IDENTIFIED BY ‘glpipass’;
mysql> CREATE DATABASE IF NOT EXISTS `glpi` ;
mysql> GRANT ALL PRIVILEGES ON `glpi`.* TO ‘glpi’@'%’;
mysql> CREATE USER ‘synchro’@'%’ IDENTIFIED BY ‘synchropass’;
mysql> GRANT USAGE ON *.* TO ‘synchro’@'%’ IDENTIFIED BY ‘synchropass’;
mysql> GRANT SELECT ON `ocsweb`.* TO ‘synchro’@'%’;
mysql> GRANT DELETE ON `ocsweb`.`deleted_equiv` TO ‘synchro’@'%’;
mysql> GRANT UPDATE (`CHECKSUM`) ON `ocsweb`.`hardware` TO ‘synchro’@'%’;
mysql> FLUSH PRIVILEGES;
mysql> exit

Connect to the application  http://localhost/glpi/ it will launch the configuration wizard.

  • select your language and : OK.
  • read and accept the license (GPL) : Continue
  • start the installation : Installation
  • step 0 : prerequisites check (must be ok with the RPM) : Continue
  • step 1 : enter the database connection parameters (localhost / glpi / glpipass: Continue
  • step 2 : select the glpi database and Continue
  • step 3 : write somewhere the administrator login and password (glpi/glpi): Continue
  • step 4 : also write the other account information : Use GLPI
  • Authenticate yourself with the new account : glpi/glpi

Congratulations you have a working GLPI installation.

Now that you have logged in you need to change the default passwords. Click Administration > Users and select glpi user and type in a new password and confirm for the user id.

Switch to our mobile site