Hi, this is my new blog.
It is a translation from my blog in Spanish, http://debianenmipc.blogspot.com , which is about using Debian GNU/Linux in my PC. Specifically Debian Squeeze for x86 in my desktop at home.
Software, hardware, how to, and much more, everything to tune my PC up using Debian/GNU Linux.
Jose A. Viana
My Debian PC
Using Debian GNU/Linux in my PC.
Nov 15, 2009
Feb 13, 2009
How to mount a NTFS partition on Debian
Let's mount a NTFS partition of Windows Vista (could be any Windows OS using NTFS) in our Debian GNU/Linux Lenny as only read.
First, make a new folder which will contain your Windows files:
$ mkdir /home/your_user/windowsThen, as root, check the partition name that you want to mount:
# fdisk -l | grep NTFS
/dev/sda2 * 7 19129 153600000 7 HPFS/NTFS
In my case, the partition is
sda2. Now, as root, mount the partition in the new folder, with only read permission for user UID=1000:# mount -t ntfs /dev/sda2 /home/your_user/windows/ -o uid=1000(You got to check the
UID for your user and be sure which is your UID before make the last command).It's done, you will see in
/home/your_user/windows/ everything that is in your Windows partition.Jose A. Viana
Feb 13, 2008
VF0470 Live! Cam Notebook Creative
lsub command:# lsusb -vBus 002 Device 005: ID 041e:4068 Creative Technology, LtdDevice Descriptor:bLength 18bDescriptorType 1bcdUSB 1.10bDeviceClass 0 (Defined at Interface level)bDeviceSubClass 0bDeviceProtocol 0bMaxPacketSize0 8idVendor 0x041e Creative Technology, LtdidProduct 0x4068bcdDevice 1.00iManufacturer 1 Creative LabsiProduct 2 VF0470 Live! Cam NotebookiSerial 0bNumConfigurations 1It shows the product name and specific information about our webcam. Now, download the ov51x-jpeg driver from http://www.rastageeks.org/downloads/ov51x-jpeg/ov51x-jpeg-1.5.6.tar.gz . Be sure you dont't have the
ov511 driver loaded because it could start first on the boot sequence and make a mess.# rmmod ov511Then, delete its module from
/lib/module/`uname -r`Compilation and installation
You will need kernel headers and the
videodev module builds with video4linux option (first as root, try modprobe videodev). Extract files from ov51x-jpg-1.5.6.tar.gz you already downloaded:$ tar -xzvf ov51x-jpeg-1.5.6.tar.gzNext , as normal user, go to the folder ov51-jpeg-1.5.6 and make:
$ makeAnd, as root:
# make install# modprobe ov51x-jpegReady, connect your webcam and try with your favorite application. For me, it works with Kopete and Amsn. As additional information, the ov51x-jpeg comes pre-compilated in Debian but this webcam is not supported by that driver.
Jose A. Viana
Feb 1, 2008
ATI video card in Debian GNU/Linux [Lenny] AMD64
First, as root:
# aptitude updateThen, let's install the driver:
# aptitude install module-assistant fglrx-driver fglrx-kernel-srcNow, make and install the fglrx module:
# module-assistant auto-install fglrx-kernel-srcAt this point, you must restart the computer to be sure the new module is loaded. You will see the kdm or gdm won't change at all, it happens because xorg doesn't have the new configuration. Change to one of the consoles ( e.g.: Ctrl+Atl+F1 ) and, as root, stop the display manager:
# /etc/init.d/kdm stopor
# /etc/init.d/gdm stopNext, configure xorg.conf with the new ATI card:
# aticonfig --initialFinally, restart the computer and you will see the change. Log in with your regular user, open a term, and check the new configuration:
$ fglrxinfoAnd you will get something like this:
display: :0.0 screen: 0
OpenGL vendor string: ATI Technologies Inc.
OpenGL renderer string: ATI Radeon HD 2600 Pro
OpenGL version string: 2.1.7276 ReleaseFor more information, check the Unofficial Wiki for the ATI Linux Driver out, where there are other ways using the proprietary ATI Linux driver.
Jose A. Viana
Subscribe to:
Posts (Atom)
