ubuntu-fr

Communauté francophone des utilisateurs d'Ubuntu

Planet Ubuntu-fr - Unix

Fil des billets

lundi, septembre 22 2008

Gravatar de mumblyGeforce 6150le et Ubuntu Hardy Heron via mumbly

Cela faisait un bout de temps que je luttais pour obtenir un affichage “potable” sur ma nouvelle petite configuration. En effet, ma carte mère est équipée d’un chipset video nvidia 6150le (256 Mo partagés).

Juste après une installe fraiche, Ubuntu hardy heron me propose un affichage en 800 x 600 pas des plus agréables ni des plus adaptés à mon écran plat 19 pouces.

Après divers essais pour obtenir un brin d’accélération graphique avec les pilotes proprios ou même avec Envygtk, rien à faire !!! Toujours du 800 x 600.

En fait j’ai fini par trouver une solution en mettant les mains dans le fichier xorg.conf et en installant “simplement” le pilote nvidia proposé par Hardy Heron “Pilotes de périphériques”.

Voici donc mon xorg.conf qui fonctionne désormais très bien en 1280×1024 à 75 hz.

Section "ServerLayout"
Identifier     "Layout0"
Screen      0  "Screen0" 0 0
InputDevice    "Keyboard0" "CoreKeyboard"
InputDevice    "Mouse0" "CorePointer"
EndSection

Section "Files"
RgbPath         "/usr/X11R6/lib/X11/rgb"
EndSection

Section "Module"
Load           "dbe"
Load           "extmod"
Load           "type1"
Load           "freetype"
Load           "glx"
EndSection

Section "ServerFlags"
Option         "Xinerama" "0"
EndSection

Section "InputDevice"

# generated from default
Identifier     "Mouse0"
Driver         "mouse"
Option         "Protocol" "auto"
Option         "Device" "/dev/psaux"
Option         "Emulate3Buttons" "no"
Option         "ZAxisMapping" "4 5"
EndSection

Section "InputDevice"

# generated from default
Identifier     "Keyboard0"
Driver         "kbd"
Option         "XkbRules" "xorg"
Option         "XkbModel" "pc105"
Option         "XkbLayout" "fr"
Option         "XkbVarian" "oss"
EndSection

Section "Monitor"
Identifier     "Monitor0"
VendorName     "Unknown"
ModelName      "CRT-0"
HorizSync       30.0 - 81.0
VertRefresh     56.0 - 75.0
Option         "DPMS"
EndSection

Section "Device"
Identifier     "Device0"
Driver         "nvidia"
VendorName     "NVIDIA Corporation"
EndSection

Section "Device"
Identifier     "Videocard0"
Driver         "nvidia"
VendorName     "NVIDIA Corporation"
BoardName      "GeForce 6150SE nForce 430"
EndSection

Section "Screen"
Identifier     "Screen0"
Device         "Videocard0"
Monitor        "Monitor0"
DefaultDepth    24
Option         "TwinView" "0"
Option         "TwinViewXineramaInfoOrder" "CRT-0"
Option         "metamodes" "1280x1024_75 +0+0"
SubSection     "Display"
Depth       24
EndSubSection
EndSection

Pour aller plus loin …

vendredi, septembre 19 2008

Gravatar de KevinDunglasChanger le message d’accueil de votre terminal via Kévin Dunglas

Lorsque vous lancez un shell sous votre Unix préféré (que ce soit GNU/Linux ou un BSD ou OS X), un petit texte est affiché avant le prompt, c’est le MOTD (Message Of The Day). Ils sont souvent austère, comme c’est le cas sur les serveurs d’hébergement Gandi :

[---------------------------------------]
  Gandi - Welcome to your new OS image.
[---------------------------------------]

Pour le changer pour quelque chose de plus joyeux il suffit de modifier le fichier /etc/motd en tant que root !

Petite astuce, vous pouvez utiliser un FIGlet-like pour créer un logo en art ASCII !

lundi, août 18 2008

Gravatar de KevinDunglashosting.py 0.2 released via Kévin Dunglas

hosting.py is a web server account manager for Debian GNU/Linux and derivatives, such as Ubuntu Linux I am maintaining.

I am proud to announce that the version 0.2 is out !

hosting.py now supports MySQL accounts and databases management and his core is modular. The documentation as been rewrited and detailled.

hosting.py needs contributors. Testers and developers are wanted.

Downloads and details on Google Code.

lundi, juin 30 2008

Gravatar de KevinDunglashosting.py: Debian/Ubuntu webserver administration tool via Kévin Dunglas

hosting.py allows to easily create and manage accounts on shared servers running Debian GNU/Linux (and derivatives, such as Ubuntu Linux). It includes support for Apache virtual hosts, UNIX accounts, MySQL databases and privileges. hosting.py is a command line tool wrote in Python by Kévin Dunglas.

Philosophy

The philosophy behind this tools is “keep it simple”. hosting.py is designed for small web hosting services. hosting.py will not have advanced features like virtual mail or FTP account creation. It creates the base configuration and settings for a web hosting account. Mail, FTP or whatever must be handled by the configuration of the system to use the UNIX account.

Status

hosting.py doesn’t currently support MySQL user and database creation. This will be committed soon.

Install

hosting.py need Debian etch or Ubuntu and Python 2.5 to work. Get the source via SVN : svn checkout http://debian-hosting.googlecode.com/svn/trunk/ debian-hosting-read-only

It’s done ! Type python hosting.py --help to get started.

Optionally you can adjust the configuration by editing the variables in the head of the hosting.py file.