Re: Compiling ndiswrapper module (Realtek rtl8192se wireless)

2010-12-11 Thread Joel Roth
On Tue, Nov 30, 2010 at 10:26:12AM -1000, Joel Roth wrote:
> Hi all,
> 
> I've got a new Thinkpad T410 i5 to replace my Toshiba L305D
> series with Turion x64. (The latter was promising, but
> tended to overheat, even when I fixed the CPU speed at
> 1GHz.) 
> 
> The T410 come with a Realtek rtl8192se mini PCI express
> wireless card.
> 
> I've done my best with the native drivers, compiling them
> for a 2.6.36-amd64 kernel.  The module load and the wireless
> device appears in ifconfig output, but 'iw wlan0 scan' fails
> with 'Operation not permitted'.  :-(
> 
> So now I'm going back to try ndiswrapper. Thing is, it
> doesn't compile for 2.6.36 kernel.
> 
>driver make[1]: Entering directory
>   `/home/jroth/Downloads/ndiswrapper-1.56/driver' make -C
>   /usr/src/linux-source-2.6.36
>   M=/home/jroth/Downloads/ndiswrapper-1.56/driver make[2]:
>   Entering directory `/usr/src/linux-source-2.6.36' CC [M]
>   /home/jroth/Downloads/ndiswrapper-1.56/driver/loader.o
>   /home/jroth/Downloads/ndiswrapper-1.56/driver/loader.c:834:
>   error: unknown field 'ioctl' specified in initializer
>   /home/jroth/Downloads/ndiswrapper-1.56/driver/loader.c:834:
>   warning: initialization from incompatible pointer type
>   make[3]: ***
>   [/home/jroth/Downloads/ndiswrapper-1.56/driver/loader.o]
>   Error 1
> 
> Does anyone have experience with this? Or alternatively,
> Can someone suggest which recent kernel version *will* 
> compile this properly?

I've received private mail with a solution. 

from: ch0d4 at free . fr

> [...] here is what you need to successfully compile
> ndiswrapper on a 2.6.36 kernel.
 
> First, the patch that fixes the "ioctl bug" :
> http://launchpadlibrarian.net/58046844/ndiswrapper-suse.patch
 
> Then, the patch to compile ndiswrapper 1.56 successfully
> for kernel 2.6.35 and above :
> http://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-x86/net-wireless/ndiswrapper/files/ndiswrapper-1.56-2.6.35.patch?revision=1.1
 
> Download those two files to the directory when you
> ndiswrapper sources are (not in the directory itself), and
> then patch the sources : 
 
>$ cd ndiswrapper-1.56
>$ patch -Np0 < ../ndiswrapper-suse.patch
>$ patch -Np0 < ../ndiswrapper-1.56-2.6.35.patch?revision=1.1
 
> If the patching works (and it should), you just need to
> run 'make' and 'make install' and that's it for
> ndiswrapper.
 
> As for the realtek driver, what worked for me was to use
> the 32bits windows driver (of if you can't find them XP
> drivers should also work) : 

> - uncompress the archive containing the drivers (you just need the 
> net8192se.inf and rtl8192se.sys files)
> - run
>$ ndiswrapper -i net8192se.inf
>$ ndiswrapper -l # (it should list the module and the device)
>$ ndiswrapper -m # (which creates the correct alias for your module)
>$ modprobe ndiswrapper # (loads the module)
> 
 
> After this, depending on your  distribution (I was playing
> with this on a LFS), you might need to use wpa_supplicant
> and a dhcp client to end up your wireless configuration.


> I hope this will help you, and don't hesitate if you have
> any trouble or questions.
 
> Regards.
> 
> Marc


-- 
Joel Roth


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20101211080410.ga7...@sprite



用 得上f.a p.ia.o 就打: 一三四1012 零 一零零 小李

2010-12-11 Thread chedis_2
À´µç 

__
Correo Yahoo!
Espacio para todos tus mensajes, antivirus y antispam ¡gratis! 
Regístrate ya - http://correo.yahoo.es 


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/103530.18986...@smtp105.mail.ne1.yahoo.com



Re: [Semi-OT] Cropping a letterbox MPEG-2 file is easy enough...

2010-12-11 Thread godo

On 12/11/2010 05:03 AM, Ron Johnson wrote:

Hi,

But how do I save the output?

After reading the mplayer and ffmpeg man page and Googling, these are
the three methods I tried, but none of them work.

$ mplayer foo.mpeg -vf crop=720:352:0:64 \
-dumpstream -dumpfile bar.mpeg

$ mplayer foo.mpeg -vf crop=720:352:0:64 -o bar.mpeg

$ mencoder foo.mpeg -vf crop=720:352:0:64 \
-ovc copy -oac copy -o bar.mpeg

$ ffmpeg -i foo.mpeg -vf crop=720:352:0:64 \
-vcodec copy -acodec copy bar.mpeg


TIA

(Yes, Handbrake makes the job trivial, but no, I don't want to transcode
the file, just "crop and save". Disk is cheap and I want to retain DVD
quality.)


Hi,
I think it is:
ffmpeg -i in.mpeg -croptop 10 -cropbottom 20 -cropleft 30 -cropright 40 
out.mpeg


Numbers are in pixels.

I tried with .avi 320x216 and I got 250x186

--
Bye,
Goran Dobosevic
Hrvatski: www.dobosevic.com
 English: www.dobosevic.com/en/
Registered Linux User #503414


--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org

Archive: http://lists.debian.org/4d0334f4.1080...@dobosevic.com



Re: [Semi-OT] Cropping a letterbox MPEG-2 file is easy enough...

2010-12-11 Thread Phil Requirements
On 2010-12-10 22:03:55 -0600, Ron Johnson wrote:
> But how do I save the output?
> 
> After reading the mplayer and ffmpeg man page and Googling, these
> are the three methods I tried, but none of them work.
> 
> $ mplayer foo.mpeg -vf crop=720:352:0:64 \
> -dumpstream -dumpfile bar.mpeg
> 
> $ mplayer foo.mpeg -vf crop=720:352:0:64 -o bar.mpeg
> 
> $ mencoder foo.mpeg -vf crop=720:352:0:64 \
> -ovc copy -oac copy -o bar.mpeg
> 
> $ ffmpeg -i foo.mpeg -vf crop=720:352:0:64 \
> -vcodec copy -acodec copy bar.mpeg

How about this one:

mencoder foo.mpeg \
-vf crop=720:352:0:64 \
-oac copy \
-ovc lavc \
-lavcopts vcodec=mpeg2video \
-o newfile.avi

This one is a little tricky, because mencoder will transcode
your file if you're not careful. So this part...

-ovc lavc -lavcopts vcodec=mpeg2video

...needs to change according to what your source material is.
I think the above might work for DVD material?

> (Yes, Handbrake makes the job trivial, but no, I don't want to
> transcode the file, just "crop and save".  Disk is cheap and I want
> to retain DVD quality.)

I also hate to have quality degraded, which happens very easily
with videos.

Hope this helps,

Phil


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20101211083115.ga9...@kasploosh.net



Re: [Semi-OT] Cropping a letterbox MPEG-2 file is easy enough...

2010-12-11 Thread godo
And I think it is good to put "-vcodec copy -acodec copy" to preserve 
video and audio quality.


--
Bye,
Goran Dobosevic
Hrvatski: www.dobosevic.com
 English: www.dobosevic.com/en/
Registered Linux User #503414


--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org

Archive: http://lists.debian.org/4d0339b6.4020...@dobosevic.com



Re: setting up a network printer

2010-12-11 Thread Simon Hollenbach
> > > What is the ip address for the printer?
> > Quick and dirty: "cat /etc/cups/printers.conf | grep URI"
> > 
> /snip/
>     this does not produce an ip address, it produces the name of
> 
> the printer and the printer and the computer port it's connected to:
> 
> DeviceURI hp:/par/HP_LaserJet_2200?device=/dev/parport0
Hi,
I'd say that is because you havent connected the printer via ethernet, but 
through a parallel port. Therefore CUPS uses an hp:/-protocol URI, probably to 
call hplibs. Note that the port is part of the URI, as the name of the printer.

Greetings
Simon

Re: [Semi-OT] Cropping a letterbox MPEG-2 file is easy enough...

2010-12-11 Thread Klistvud

Dne, 11. 12. 2010 05:03:55 je Ron Johnson napisal(a):

(Yes, Handbrake makes the job trivial, but no, I don't want to  
transcode the file, just "crop and save".  Disk is cheap and I want  
to retain DVD quality.)


Are you positive that's possible? Wouldn't cropping necessarily involve  
transcoding?


--
Cheerio,

Klistvud  
http://bufferoverflow.tiddlyspot.com
Certifiable Loonix User #481801  Please reply to the list, not to  
me.



--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/1292065275.865...@compax



Re: Problem flushing buffers for USB devices.

2010-12-11 Thread Klistvud

Dne, 11. 12. 2010 05:07:31 je C.T.F. Jansen napisal(a):

Greetings,
  The flushing of buffers for devices plugged into a USB port  
is problematic. When writing data to a USB stick it usually took two  
attempts to write a directory to a USB stick. The first attempt  
didn't show the directory was there when it was removed then plugged  
back in.


Gnome does that automatically *provided that* you right-click on the  
USB drive icon and select "Unmount" (or was it "Eject"?) from the menu.  
Abrupt removing/replugging USB drives will only corrupt your data. Of  
course, I may be reading your situation wrong; in that case, please  
disregard my post.


--
Cheerio,

Klistvud  
http://bufferoverflow.tiddlyspot.com
Certifiable Loonix User #481801  Please reply to the list, not to  
me.



--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/1292065546.865...@compax



Re: Problem flushing buffers for USB devices.

2010-12-11 Thread teddieeb
Jansen napisal(a):
> Greetings,
>   The flushing of buffers for devices plugged into a USB port  
> is problematic. When writing data to a USB stick it usually took two  
> attempts to write a directory to a USB stick. The first attempt  
> didn't show the directory was there when it was removed then plugged  
> back in.

Gnome does that automatically *provided that* you right-click on the  
USB drive icon and select "Unmount" (or was it "Eject"?) from the menu.  
Abrupt removing/replugging USB drives will only corrupt your data. Of  
course, I may be reading your situation wrong; in that case, please  
disregard my post.

-

I read the post the same way;
I would add, outside of a GUI, if you have privileges you can run the unmount 
command in a shell or command line.

E.G.

#umount /media/usb-mount-point


TeddyB


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/1241478202-1292066005-cardhu_decombobulator_blackberry.rim.net-9596607...@bda029.bisx.prod.on.blackberry



Re: setting up a network printer

2010-12-11 Thread Paul Cartwright
On 12/11/2010 04:18 AM, Simon Hollenbach wrote:
>> DeviceURI hp:/par/HP_LaserJet_2200?device=/dev/parport0
> Hi,
> I'd say that is because you havent connected the printer via ethernet,
> but through a parallel port. Therefore CUPS uses an hp:/-protocol URI,
> probably to call hplibs. Note that the port is part of the URI, as the
> name of the printer.
no that's not true. I have an HP connected via USB and it looks like this:
cat /etc/cups/printers.conf | grep URI
DeviceURI
hal:///org/freedesktop/Hal/devices/usb_device_4b8_82c_W57P10707310003510_if1_printer_noserial
DeviceURI
hal:///org/freedesktop/Hal/devices/usb_device_4b8_82c_W57P10707310003510_if1_printer_noserial
DeviceURI hp:/usb/Officejet_5600_series?serial=CN58BCF21H04CY
DeviceURI hpfax:/usb/Officejet_5600_series?serial=CN58BCF21H04CY

I have an HP & Epson printer attached via USB.

-- 
Paul Cartwright
Registered Linux user # 367800


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4d035da1.80...@pcartwright.com



Re: User stylesheets with mozilla browsers

2010-12-11 Thread Camaleón
On Fri, 10 Dec 2010 19:21:39 -0500, Chris Jones wrote:

> On Fri, Dec 10, 2010 at 04:22:16PM EST, Camaleón wrote:
> 
> [..]
> 
>> You can use some custimozations (bigger text, no background images nor
>> underline links) but changing the whole site default layout for each
>> site on-the-fly is not something that can be 100% automated ;-(
> 
> This web page is only a couple year old and looks promising:
> 
>   http://welcome.totheinter.net/2008/07/22/multi-column-layout-with-css-
and-jquery/
> 
> It does state that, in 2008 at least, there was no ‘native CSS support
> for multi-column newspaper-style layouts’. Not sure if this still hold
> true.

I think you got it wrong :-)

Today's CSS styles techniques can split (x)html/xml output quite nicely 
and work great in all kinds all layouts (columns or whataever). 
Webmasters can make use of them and embed the code in their web pages 
(like does the code you referenced). That's the part it takes "web 
design".

References:

http://www.csszengarden.com/
http://www.maxdesign.com.au/articles/css-layouts/

But if I understood you correctly, you were looking for a way to 
dynamically change the layout of a web page you are viewing not designing,
(you as "user", not as "webmaster"), and that is very hard. You can use 
browser add-ons and tell Firefox (or Chrome...) to use custom CSS styles 
for web pages but one CSS "does not fit all" so people makes CSS  
templates to specifically customize every site (the CSS template for 
Google does not work for Facebook and so...).

In brief: you cannot change the layout design of every web page, only the 
person who makes the code of that page can. It's up to them, not you ;-)

Greetings,

-- 
Camaleón


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/pan.2010.12.11.11.21...@gmail.com



Re: Update manager - fatal error but no report

2010-12-11 Thread Camaleón
On Sat, 11 Dec 2010 11:40:11 +0530, shirish शिरीष wrote:

>Since yesterday or the day before I have been getting an Update
> manager error saying 'updates are half or there is some issue'. I update
> the system using
> 
> $ sudo aptitude update
> $ sudo aptitude safe-upgrade -y

Better if you put here the output text of the above commands.

> Of course with the recent discussion all the entries in sources.list
> point to squeeze (not testing)

Also, add the output of "cat /etc/apt/sources.list"
 
> Then when I click on the error icon to fix it, I get the update manager
> box saying 'you are up-to-date' or something to that effect.
> 
> Clicking on check does the same thing as '$ sudo aptitude update'
> 
> It sorta goes into a loop checking the same links/databases over and
> over. After a while I get a message saying update manager has a fatal
> error, please click on yes to report it. Clicking on yes does nothing.
> 
> Giving two pics. to let you guys know.
> 
> http://picturepush.com/public/4668012
> http://picturepush.com/public/4668013

Images tell no much, logs are better :-)
 
P.S. Sorry, don't how to add a "CC:" in my newsreader ;-(

Greetings,

-- 
Camaleón


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/pan.2010.12.11.11.26...@gmail.com



Re: User stylesheets with mozilla browsers

2010-12-11 Thread Joel Roth
On Fri, Dec 10, 2010 at 10:56:08AM -0500, Chris Jones wrote:
> Is there any way I could use a custom stylesheet to make my web browser
> rearrange text in two or more columns so I don't get my eyes crossed
> when I'm reading?
> 
> Come to think of it, a web browser with vertical vim-style vertical
> splits, where you could display the contents of 2-3 tabs side by side
> would be nice.
> 
> Thanks,
> 
> cj

This site doesn't give you two columns, but does offer
a variety of other choices to make websites more legible.

Gets installed as a javascript program in a bookmark
that you click on to reformat a site.

http://lab.arc90.com/experiments/readability/


-- 
Joel Roth


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/2010123535.ga6...@sprite



Re: xserver-testing issues.

2010-12-11 Thread Camaleón
On Sat, 11 Dec 2010 14:24:18 +0700, Sthu Deus wrote:

(...)

> 1. How I can configure my keyboard now? 

(...)

Keyboard in testing is now configured in "/etc/default/keyboard" file.

> 2. My PC has stopped using on-board sound card and now prefers to use
> PC-speaker. 

(...)

You can use the tweak of "~/.asoundrc" to select the preferred sound card:

http://alsa.opensrc.org/.asoundrc#Default_PCM_device
 
> 3. I had distorted in most 3D-games, but working in few of them and
> anther 3d-apps - 3D support, now it is gone. Relevent string in Xorg log
> I see is this:

(...)

First, I would try with no "/etc/X11/xorg.conf" file and let xorg to set 
the card automatically. 

Do ATI cards need a firmaware to load 3D extensions? Are you using a 
stock kernel or a custom or backports one?
 
Greetings,

-- 
Camaleón


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/pan.2010.12.11.11.49...@gmail.com



Re: User stylesheets with mozilla browsers

2010-12-11 Thread Eduardo M KALINOWSKI

On 12/10/2010 07:01 PM, Chris Jones wrote:

Sorry if I was unclear but what I mean is that I am reading plain text
and with the small fonts I favor, the lines are so long on the new 1080p
screens that I often have problems keeping my eye level with them. So
I was thinking of reformatting these pages along the lines of what you
commonly see in newspapers.


How about resizing the browser window so that it does not occupy the 
whole width?


--
Unix weanies are as bad at this as anyone.
-- Larry Wall in<199702111730.jaa28...@wall.org>

Eduardo M KALINOWSKI
edua...@kalinowski.com.br


--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org

Archive: http://lists.debian.org/4d0369cb.7000...@kalinowski.com.br



Re: Problem flushing buffers for USB devices.

2010-12-11 Thread Eduardo M KALINOWSKI

On 12/11/2010 09:05 AM, Klistvud wrote:

Dne, 11. 12. 2010 05:07:31 je C.T.F. Jansen napisal(a):

Greetings,
   The flushing of buffers for devices plugged into a USB port
is problematic. When writing data to a USB stick it usually took two
attempts to write a directory to a USB stick. The first attempt
didn't show the directory was there when it was removed then plugged
back in.

Gnome does that automatically *provided that* you right-click on the
USB drive icon and select "Unmount" (or was it "Eject"?) from the menu.
Abrupt removing/replugging USB drives will only corrupt your data. Of
course, I may be reading your situation wrong; in that case, please
disregard my post.


Not only gnome: umount the disk (no matter how the umounting is invoked) 
should flush all buffers.



--
I never deny, I never contradict.  I sometimes forget.
-- Benjamin Disraeli, British PM, on dealing with the
   Royal Family

Eduardo M KALINOWSKI
edua...@kalinowski.com.br


--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org

Archive: http://lists.debian.org/4d036b05.2080...@kalinowski.com.br



Re: Problem flushing buffers for USB devices.

2010-12-11 Thread Paul Cartwright
On 12/11/2010 06:13 AM, teddi...@tmo.blackberry.net wrote:
> Gnome does that automatically *provided that* you right-click on the  
> USB drive icon and select "Unmount" (or was it "Eject"?) from the menu.  
> Abrupt removing/replugging USB drives will only corrupt your data. Of  
> course, I may be reading your situation wrong; in that case, please  
> disregard my post.
I usually do a
$mount

look for the device then
$ umount /dev/sd?1

what menu are you talking about?? from "the" menu??

-- 
Paul Cartwright
Registered Linux user # 367800


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4d036b15.5050...@pcartwright.com



Re: [OT] Mail list issue.

2010-12-11 Thread Chris Davies
Jochen Schulz  wrote:
>> But "gmane.linux.debian.user" is an incomplete address!

> It's the complete name of the newsgroup. It just happens to be available
> on only one server.

It's possibly available on many more than just one. My (leafnode) server,
for example, takes a partial feed from gmane. That's the beauty of usenet:
it's a distributed system. (The gmane mail/news gateway, on the other
hand, is most definitely available only on on system.)

Chris


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/sm2ct7xfkd@news.roaima.co.uk



"ultimate" backup choice

2010-12-11 Thread S Mathias
i have:
"SERVER A"
"SERVER B"

with "full root permisson" [ssh, etc]

each server has a folder.

i want to backup a folder in "SERVER A".

are there any backup methods, that meets these two requirements? :


1) running from e.g.: a cronjob

2) when running, it just checks the folder in "SERVER A" and "SERVER B". if a 
file/folder has been added/removed/modified in the "SERVER A"'s folder, then it 
copies/removes it/them to "SERVER B"'s folder.

please help!

Thank you in advance! [for any links, howtos :\ ]

have a nice weekend


  

Re: "ultimate" backup choice

2010-12-11 Thread kuLa
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On 11/12/10 12:17, S Mathias wrote:
> i have:
> "SERVER A"
> "SERVER B"
> 
> with "full root permisson" [ssh, etc]
> each server has a folder.
> i want to backup a folder in "SERVER A".
> are there any backup methods, that meets these two requirements? :
> 1) running from e.g.: a cronjob
> 2) when running, it just checks the folder in "SERVER A" and "SERVER B".
> if a file/folder has been added/removed/modified in the "SERVER A"'s
> folder, then it copies/removes it/them to "SERVER B"'s folder.
> 
> please help!

sorry for my rudeness :-)
but issue command 'man rsync' :-)

> Thank you in advance! [for any links, howtos :\ ]
> have a nice weekend

and you too :-)

- -- 

|_|0|_|  |
|_|_|0| "Heghlu'Meh QaQ jajVam"  |
|0|0|0|  kuLa -  |

gpg --keyserver pgp.mit.edu --recv-keys 0xC100B4CA
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.10 (GNU/Linux)

iQEcBAEBAgAGBQJNA3TeAAoJEOqHloDBALTKHkIH/RphcoN7KIl1ZRDZGw4xni3u
l7ju0fbFKbs/PEZ1Zw8JrfycaJ+Cx5RDyt+vateyi7DDh17HJGx/HnEzEhQ+DDkj
EMxH9P1+3pWT/YUg6ZoQgaNB7BmjKhQK0p5A7VWPA//CABX/mJcecyvbsVGXhkHF
VdHhSFeEqHRWlUKQURkEP4RVMez0ooofZvFUBMBI+WzXGjcN/r/7UeBLXFCdi73C
+7qA31hrSeSnAb9sqzZVW9GMM8ri5ClzuHLlMHV4oJb7+mpoyK+q7mReXgho/TYp
8N7em6uRGB6uRcgsh65LKJvc1y8XM8kwRwT79Ni3K1+0wRDci+t19Lv07AccgYo=
=z7aS
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4d0374de.7060...@kulisz.net



Re: RAID1 with multiple partitions

2010-12-11 Thread Rob Owens
On Fri, Dec 10, 2010 at 09:29:49PM -0500, David Gaudine wrote:
> On 10/12/2010 8:11 PM, Rob Owens wrote:
>> On Fri, Dec 10, 2010 at 05:57:09PM -0500, David Gaudine wrote:
>>> Here I have a big problem.  The guide said to run grub and do
>>> root(hd0,0)
>>> setup(hd0)
>>> and repeat for the other disk.  I don't have an executable file "grub".
>>> grub-pc is installed.  After a bit of reading I tried this:
>>>
>> Are you trying it as root?
>
> I assume you mean the part about root(hd0,0), not the part later that  
> you snipped.  I did try it as root.  The first problem is, on this and  

Actually, I was talking about 'I don't have an executable file "grub"'.
But I didn't catch that you were running Squeeze.

-Rob


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20101211131706.ga19...@aurora.owens.net



Re: Installing latest version of mediawiki & removing Lenny's mediawiki package

2010-12-11 Thread Camaleón
On Fri, 10 Dec 2010 15:25:20 -0800, Tech Geek wrote:

> I am using Debian Lenny on my AMD Anthlon X2 box. Currently I am using
> mediawiki version 1.12 that shipps with Lenny. However, I would like to
> upgrade to latest version of mediawiki 1.16 [1]. I know Debian backports
> has 1.15 but I want 1.16 (or whatever is the latest version).

Think if you really will get any gain in using the lastest available 
version, I mean, the upstream package instead the Debian one.

I tell you this because you will have to manually check for any security 
update of the whole package at a regular basis while using Debian 
provided packages the patches (when available) will reach you 
automatically via security updates.
 
> What is the best method to make this transition (from Debian mediawiki
> package 1.12 to the vanilla mediawiki 1.16) in Debian Lenny?

Again, re-think this :-)

Unless there is a feature in the upstream version that is a MUST for you, 
I would keep the "oldie" one that comes with Lenny.

> Should I first uninstall the mediawiki package from the Debian Lenny and
> then follow the normal instructions from [1] to install the latest
> mediawiki assuming I am backing up my extensions, LocalSettings.php,
> image directory and any other mediawiki code file that I may have
> modified?

Well, if you still prefer going that path, just some points:

- Check for Mediawiki 1.16 requirements an ensure yu fulfill all of them

http://www.mediawiki.org/wiki/Installation

- Mediawiki seems to be a php template driven package (you uncompress the 
tar.gz inside a folder in your web server and run the wizard) so I don't 
think you'll fall into many problems

- Check the Debian page inside mediawiki:

Get latest MediaWiki
http://www.mediawiki.org/wiki/Manual:Running_MediaWiki_on_Debian_GNU/Linux

Should you remove the old (lenny) package? Dunno, it is porssible that 
you can keep both and just setup and work with the new one.

Greetings,

-- 
Camaleón


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/pan.2010.12.11.13.25...@gmail.com



Scrolling problems Iceweasel (Radeon HD 3850 problem?)

2010-12-11 Thread Joost Kraaijeveld
Hi ,

After an update somewhere the last few weeks (I can't remember when
exactly)  scrolling in Iceweasel started to become problematically. I
have two (separate?) problems:

1. Scrolling of web pages with graphics is slow with frequent repainting
of the complete web page from bottom to top which looks like a tidal
wave on my screen. TExt pages do not seem to show this problem.
2. Clicking *just once* on the right scroll bar results in a complete
scroll down as if I am clicking constantly.

I suspect that it is a problem with the N(non-free) fglrx video driver
because this does not happen onmy other PC which has a NVidia.

Does anyone recognise these problems and/or has a solution?

TIA

-- 
Met vriendelijke groeten,

Joost Kraaijeveld
Askesis B.V.
Molukkenstraat 14
6524NB Nijmegen
tel: 024-3888063 / 06-51855277
fax: 024-3608416
web: www.askesis.nl


signature.asc
Description: This is a digitally signed message part


Re: Debian 5 installation

2010-12-11 Thread H Scott
You think, Cameleon, that I am picky because I think an OS with an automatic
configuration should be able to correctly configure a Nvidia TNT2 video card
with a CMedia sound board. Slackware and Zenwalk do a fine job of it.
Let me say that in one regard you are mistaken You must register first
before using this userlist.
Secondly I don't appreciate you editing my messages! I know it makes you
look great but it aint honest.
You have told me absolutely nothing except to seek help from outside and
it's probably the best piece of advice I have received.
Thank you.
- Original Message - 
From: "Camaleón" 
To: "Debian [en]" 
Sent: Monday, December 06, 2010 9:30 AM
Subject: Re: Debian 5 installation


> El 2010-12-06 a las 08:33 -, Harry escribió:
>
> (resending to the list)
>
> > - Original Message - 
> > From: "Camaleón" 
> > To: 
> > Sent: Sunday, December 05, 2010 12:59 PM
> > Subject: Re: Debian 5 installation
> >
> >
> > > On Sat, 04 Dec 2010 12:36:20 +, Harry Scott wrote:
> > >
> > > > I wanted help to install a nvidia legacy graphics driver for TNT 2
AGP
> > > > so I thought to contact the user lists for guidance. This was not
> > > > possible because:
> > > > 1 When I tried to use evolution after asking permission (used
windows
> > > > mail to confirm) I couldn't move its window up to click on forward.
The
> > > > default vga video setting making the window too large.
> > >
> > > You can post over http.
> > >
> > > > 2 I thought,
> > > > having read the installation instructions, Lenny would note that a
> > > > nvidia driver was needed. Looking at the xorg.conf file it obviously
> > > > couldn't. Configured device was all it said.
> > >
> > > You don't need the nvidia driver, "nv" is the default and should work
> > > just fine.
> > >
> > > > 3 I read the Debian wiki
> > > > after downloading appropriate driver from Nvidia. And downloaded
> > > > nvidia-xconfig the missing piece of the puzzle. I think your help on
the
> > > > installation is ego-centric. Is it possible to get easier
assistance?
> > >
> > > Nothing in linux concerning closed source drivers is "easy" by
definition
> > > >:-)
> > >
> > > I installed nvidia proprietary drivers by following Debian wiki steps:
> > >
> > > http://wiki.debian.org/NvidiaGraphicsDrivers
> > >
> > > Just ensure you install the nvidia driver suitable for your card.
> > >
> > > OTOH, I did not install "nvidia-xconfig" package, just edited my
"/etc/
> > > X11/xorg.file" to tell X server to load the nvidia driver instead the
> > > open one:
> > >
> > > ***
> > > Section "Device"
> > > Identifier "Configured Video Device"
> > > Driver "nvidia"
> > > EndSection
> > > ***
>
> > Your reply makes no sense:
> > I had to use Evolution to sign in to this group. Which I did via
windows.
> > Evolution is not able to be set up using vga. Of course Debian could use
> > another emailer but that,s another thing.
>
> First, this mailing list does not require you to sign in order to read
> and post messages. It is open, no subscription needed.
>
> Second, you can post a message over http. In the event you cannot setup
> an e-mail client (like Evolution or Mutt -the latter does not even need
> a GUI-) you can go to Gmane and use their http gateway:
>
> http://news.gmane.org/gmane.linux.debian.user
>
> Select the message you want to reply, click over the jump menu "followup",
> and you're done. Not so difficult and very convenient when no MUA
> available.
>
> > You seem to believe in miracles: the xorg.conf controls the setting of
the
> > graphics card and that comes as a contrived piece of software using the
term
> > configured device. To automatically generate an xorg.conf file I had to
> > download nvidia-xconfig or face manually changing it.
>
> Again, I have not installed "nvidia-xconfig" app, it is an optional
> step. And I did it manually. Google is plenty of sites describing the
> lines you have to fill in xorg.conf for your VGA. Heck, even Debian wiki
> tells you how to do it:
>
> http://wiki.debian.org/NvidiaGraphicsDrivers#Modifyanexistingxorg.conf
>
> > Since I don't know what drivers are installed that's my point about the
> > "it's all automatic".
>
> You installed "nvidia" driver (or so you said).
>
> But if by "automatic" you mean that the system should have
> auto-configured your "xorg.conf" to use the closed nvidia driver, that
> will no happen. Is the user who has to manually set what driver wants to
> use, at least for now.
>
> > From a developer point of view he knows what's there
> > but this idiot doesn't I'm afraid.
>
> I'm not a developer. I'm a plain user, like you. And when I don't know
> something, I search in Google or ask in mailing lists, like you. What I
> fail to see is which of my words disgusted you.
>
> > I have partially cured the driver problem but I need to fix the range
since
> > it's too great for the monitor and seems to  need changing each time I
use
> > it.
>
> By range you mean "screen resolution" or "dpi"? Better if you

Re: Installing latest version of mediawiki & removing Lenny's mediawiki package

2010-12-11 Thread Osamu Aoki
Hi,

On Fri, Dec 10, 2010 at 03:25:20PM -0800, Tech Geek wrote:
> I am using Debian Lenny on my AMD Anthlon X2 box. Currently I am using
> mediawiki version 1.12 that shipps with Lenny. However, I would like to
> upgrade to latest version of mediawiki 1.16 [1]. I know Debian backports has
> 1.15 but I want 1.16 (or whatever is the latest version).
> 
> What is the best method to make this transition (from Debian mediawiki
> package 1.12 to the vanilla mediawiki 1.16) in Debian Lenny?

It is difficult to assess what is BEST depending on how much risk and
hassle you can take.

> Should I first uninstall the mediawiki package from the Debian Lenny and
> then follow the normal instructions from [1] to install the latest mediawiki
> assuming I am backing up my extensions, LocalSettings.php, image directory
> and any other mediawiki code file that I may have modified?

This can be 2nd highest risk path.  (One without back up is the worst.)

I do not think you need to uninstall debian package.  Installation via
tar.gz path usually installs under /usr/local so it usually do not collide
with Debian package as long as some services are properly turned off.
This is normally a path we used to take on small system.

The safer path is not to touch current set up and try any update
activity on a separate instance of machine with a copy of your current
system.  Having another system for testing such things used to be luxury
for most of us but it is getting not-so-expensive option using virtual
machines or just by buying another cheap machine for experiment.  These
are safer.


> Thanks!
> 
> [1] http://www.mediawiki.org/wiki/Download


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20101211131831.ga11...@debian.org



Re: Debian 5 installation

2010-12-11 Thread Tom H
2010/12/7 H Scott :
>
> You think, Cameleon, that I am picky because I think an OS with an automatic
> configuration should be able to correctly configure a Nvidia TNT2 video card
> with a CMedia sound board. Slackware and Zenwalk do a fine job of it.
> Let me say that in one regard you are mistaken You must register first
> before using this userlist.
> Secondly I don't appreciate you editing my messages! I know it makes you
> look great but it aint honest.
> You have told me absolutely nothing except to seek help from outside and
> it's probably the best piece of advice I have received.

Anyone who's been subscribed to this list for any length of time knows
that Camaleon is one of the most helpful members here!

I don't see anything in her (IIRC!) replies to your posts that would
merit your email above. Her advice was good, as usual.

FYI

From
http://lists.debian.org/debian-user/


"Help and discussion among users of Debian
Support for Debian users who speak English. (High-volume mailing list.)
This list is not moderated; posting is allowed by anyone.



-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/aanlktikscwylc1b_oqr8fytdbgxxkg1c92cmynhry...@mail.gmail.com



Re: Scrolling problems Iceweasel (Radeon HD 3850 problem?)

2010-12-11 Thread Paul Cartwright
On 12/11/2010 08:25 AM, Joost Kraaijeveld wrote:
> 1. Scrolling of web pages with graphics is slow with frequent repainting
> of the complete web page from bottom to top which looks like a tidal
> wave on my screen. TExt pages do not seem to show this problem.
> 2. Clicking *just once* on the right scroll bar results in a complete
> scroll down as if I am clicking constantly.

this morning I am having similar problems with chrome freezing, not
completing web pages & getting the dreaded " page has died-kill/wait".
Yet Opera ( 11 beta) does not show that issue on the same pages..

Chrome is showing 2% CPU useage & 8% memory useage.

-- 
Paul Cartwright
Registered Linux user # 367800


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4d038306.4060...@pcartwright.com



bash increment in a given way

2010-12-11 Thread S Mathias
It's ok, that i can use this, when i want an incrementing sequence, in a given 
way:

# {START..END..INCREMENT}
$ for i in {0..10..2}; do echo "Welcome $i times"; done
Welcome 0 times
Welcome 2 times
Welcome 4 times
Welcome 6 times
Welcome 8 times
Welcome 10 times
$

but what's the "magic" for this? :

$ MAGIC; do echo "Welcome $i times"; done
Welcome 0 times
Welcome 1 times
Welcome 4 times
Welcome 5 times
Welcome 8 times
Welcome 9 times
$

thanks:\



  

Re: Debian 5 installation

2010-12-11 Thread Camaleón
On Tue, 07 Dec 2010 08:14:33 +, H Scott wrote:

(...)

>> > Before I do that I have to get sound from my c-media driver.
>>
>> If you need advice, ask. But no need to be so picky when someone
>> replies to your messages. If do not understand something, just ask the
>> user what is he/she referring to >:-)

> You think, Cameleon, that I am picky because I think an OS with an
> automatic configuration should be able to correctly configure a Nvidia
> TNT2 video card with a CMedia sound board. Slackware and Zenwalk do a
> fine job of it. 

No. I think you are "picky" for replying in the manner you did to someone 
who tries to help you.

> Let me say that in one regard you are mistaken You must
> register first before using this userlist.

No, you don't.

This mailing list is "open" to anyone, for both reading and posting:

***
http://lists.debian.org/debian-user/

This list is not moderated; posting is allowed by anyone.
***

Subscribing is an option for those who want to receive e-mails from the 
list in a regular basis.

> Secondly I don't appreciate you editing my messages! I know it makes you
> look great but it aint honest.

"Honest"? What are you talking about?

I have to edit your messages because you are using a top-posting style 
that it's hard to follow. Sorry if you don't like it, but this is the 
common way of doing it when posting/replying to mailing lists.

In addition, your e-mail client leaves the whole header of the message 
you are replying and that information is not needed at all, this is not a 
B2B correspondence.

> You have told me absolutely nothing except to seek help from outside and
> it's probably the best piece of advice I have received. Thank you.

Then make yourself a favor, calm down and re-read the whole thread again. 
It seems to me that you have understood nothing :-/

Greetings,

-- 
Camaleón


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/pan.2010.12.11.14.58...@gmail.com



Re: using jigdo or/and rsync to keep images freshen.

2010-12-11 Thread Hugo Vanwoerkom

Rob Owens wrote:

On Fri, Dec 10, 2010 at 11:28:03AM -0600, Hugo Vanwoerkom wrote:







Try using the '-P' switch for rsync.



Thanks!

Hugo


--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org

Archive: http://lists.debian.org/ie0865$rk...@dough.gmane.org



Re: bash increment in a given way

2010-12-11 Thread Chris Jackson
S Mathias wrote:

> $ MAGIC; do echo "Welcome $i times"; done
> Welcome 0 times
> Welcome 1 times
> Welcome 4 times
> Welcome 5 times
> Welcome 8 times
> Welcome 9 times
> $
> 
> thanks:\


for i in 0 1 4 5 8 9; do "elcome $i times"; done

--
Chris Jackson
Shadowcat Systems Ltd.


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4d039b75.1040...@shadowcat.co.uk



Re: xserver-testing issues.

2010-12-11 Thread Sthu Deus
Thank You for Your time and answer, Camaleón:

> Keyboard in testing is now configured in "/etc/default/keyboard" file.

OK. What should I put in there? - There is exactly what my xorg.conf
keyboard settings are. - Before it did work, not - not. - I have no
idea what to add more there.
 
> You can use the tweak of "~/.asoundrc" to select the preferred sound
> card:
> 
> http://alsa.opensrc.org/.asoundrc#Default_PCM_device

I have already tried that and a player said that I have no pcm file
for the device number in /dev/snd, and indeed, I have:

by-path  controlC0  controlC1  hwC1D0  hwC1D1  pcmC0D0p  pcmC1D0c
pcmC1D0p  timer

- AFAIK, for the second device (that has number 1), there should be
  pcmC1D1p.

though alsa util did show that I had two device - but it was before I
have run its configurator - now it shows I have only one card - that is
PC-speaker. :)

yet w/ lspci I see the card:

00:14.2 Audio device: ATI Technologies Inc SBx00 Azalia (Intel HDA)

and w/

lsmod |grep snd

I believe I have the appropriate modules being loaded at boot:

snd_hda_intel  19955  0
snd_hda_codec  54244  1 snd_hda_intel
snd_pcsp6579  1
snd_hwdep   5380  1 snd_hda_codec
snd_pcm_oss32591  0
snd_mixer_oss  12606  1 snd_pcm_oss
snd_pcm60503  4
snd_hda_intel,snd_hda_codec,snd_pcsp,snd_pcm_oss snd_timer
15534  1 snd_pcm snd46414  10
snd_hda_intel,snd_hda_codec,snd_pcsp,snd_hwdep,snd_pcm_oss,snd_mixer_oss,snd_pcm,snd_timer
soundcore   4598  1 snd snd_page_alloc  6169  2
snd_hda_intel,snd_pcm

Farther, I do not know what to do. - May I have to file up a bug report
against it? - But against what? - I know that testing is not the same
as stable, but may others can meet the same problem upgrading froim
lenny to squeeze.

> > 3. I had distorted in most 3D-games, but working in few of them and
> > anther 3d-apps - 3D support, now it is gone. Relevent string in
> > Xorg log I see is this:
> 
> First, I would try with no "/etc/X11/xorg.conf" file and let xorg to
> set the card automatically. 

I've tried - same result beside some other things - but no 3D
acceleration.

> Do ATI cards need a firmaware to load 3D extensions? Are you using a 
> stock kernel or a custom or backports one?

I have free and non-free firmwares - both set to be upgraded w/ testing
repo - but I guess only was actually upgraded.

I use the latest backported kernel.

Thanks for Your help, once again.


--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4d03a562.52790e0a.4403.e...@mx.google.com



Re: setting up a network printer

2010-12-11 Thread Simon Hollenbach
> DeviceURI
> hal:///org/freedesktop/Hal/devices/usb_device_4b8_82c_W57P10707310003510_if1_printer_noserial
> DeviceURI
> hal:///org/freedesktop/Hal/devices/usb_device_4b8_82c_W57P10707310003510_if1_printer_noserial
> DeviceURI hp:/usb/Officejet_5600_series?serial=CN58BCF21H04CY
> DeviceURI hpfax:/usb/Officejet_5600_series?serial=CN58BCF21H04CY

Sorry Paul, but i dont get how your posting makes my statement false. Here we 
see the usage of another two helper protocols at DeviceURI, namely hal and 
hpfax. Im staying at my opinion that a network-attached printer would make an 
IP show up under DeviceURI, whereas other link ways lead to a workaround, a 
'virtual print server', a very basic one of course. Correct me if thats bogus...

greets
Simon

Re: bash increment in a given way

2010-12-11 Thread Chris Davies
S Mathias  wrote:
> [-- text/plain, encoding 7bit, charset: us-ascii, 28 lines --]

> but what's the "magic" for this? :
> $ MAGIC; do echo "Welcome $i times"; done
> Welcome 0 times
> Welcome 1 times
> Welcome 4 times
> Welcome 5 times
> Welcome 8 times
> Welcome 9 times

for i in 0 1 4 5 8 9; do echo "Welcome $i times"; done

Chris


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/o8jct7xnuh@news.roaima.co.uk



Re: Debian 5 installation

2010-12-11 Thread Stephen Powell
On Sat, 11 Dec 2010 08:55:39 -0500 (EST), Tom H wrote:
> 
> Anyone who's been subscribed to this list for any length of time knows
> that Camaleon is one of the most helpful members here!
> 

I agree.  Camaleón has earned her place on this list.

As for the OP, he clearly doesn't understand a number of basic
things about Debian and this list, such as:

(1) While Debian may make closed-source drivers available in the
non-free section of the archive, the stock Debian installer will
*never* install a non-free driver by default.  The Debian distribution
is committed to being an all-free distribution.  (That's free as
in freedom, as well as in price.)  Most other distributions do not
have this commitment.  If you don't like that, then don't use Debian.
This is who we are, and this is what we do.  As I compose this e-mail,
I am using a computer running Debian squeeze which has a video card with
an Nvidia RIVA TNT/TNT2 chipset, and using the free nv driver.
(The default driver in squeeze for this card is nouveau; but nouveau
does not work properly with interlaced video modes, which
my monitor requires.)

(2) As Camaleón correctly stated, it is not necessary to subscribe
to the list in order to post to it.  It is only necessary to subsribe
to the list if you want to get postings to the list (including
replies to your own postings) sent to you as e-mails.  An alternative
to subscribing is to use a web browser to browse the list archives.
(See http://lists.debian.org/debian-user/ for more information.)

(3) Top posting is frowned upon around here.  Please use the usenet
style of quoting.  Some e-mail clients adapt to this posting method
more easily than others, but that's no excuse.  My own e-mail client
uses top posting by default, and I have to spend some time reformatting
things.  But I do it, because that's the way things are done around
here.

(4) Trimming posts is a normal part of the usenet quoting style.
(See http://en.wikipedia.org/wiki/Top-posting for more information.)
When in Rome, do as the Romans do.

(5) If you don't understand something, ask follow-up questions.
Misunderstandings are to be expected when others can't see your
screen, etc.  But don't insult the people from whom you are trying
to get free help.  If you want to give verbal abuse to your
support personel, then buy a paid support contract from somebody
and abuse them, if they will stand for it; but don't treat your
fellow users that way!  It's not even in your own interests
to do so.

-- 
  .''`. Stephen Powell
 : :'  :
 `. `'`
   `-


--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/975443052.998340.1292086059072.javamail.r...@md01.wow.synacor.com



Re: [Semi-OT] Cropping a letterbox MPEG-2 file is easy enough...

2010-12-11 Thread Ron Johnson

On 12/11/2010 05:01 AM, Klistvud wrote:

Dne, 11. 12. 2010 05:03:55 je Ron Johnson napisal(a):


(Yes, Handbrake makes the job trivial, but no, I don't want to
transcode the file, just "crop and save". Disk is cheap and I want
to retain DVD quality.)


Are you positive that's possible? Wouldn't cropping necessarily
involve transcoding?



I don't know.

--
Seek truth from facts.


--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org

Archive: http://lists.debian.org/4d03abb7.30...@cox.net



Re: [Semi-OT] Cropping a letterbox MPEG-2 file is easy enough...

2010-12-11 Thread Ron Johnson

On 12/11/2010 02:31 AM, Phil Requirements wrote:

On 2010-12-10 22:03:55 -0600, Ron Johnson wrote:

But how do I save the output?

After reading the mplayer and ffmpeg man page and Googling, these
are the three methods I tried, but none of them work.

$ mplayer foo.mpeg -vf crop=720:352:0:64 \
 -dumpstream -dumpfile bar.mpeg

$ mplayer foo.mpeg -vf crop=720:352:0:64 -o bar.mpeg

$ mencoder foo.mpeg -vf crop=720:352:0:64 \
 -ovc copy -oac copy -o bar.mpeg

$ ffmpeg -i foo.mpeg -vf crop=720:352:0:64 \
 -vcodec copy -acodec copy bar.mpeg


How about this one:

 mencoder foo.mpeg \
 -vf crop=720:352:0:64 \
 -oac copy \
 -ovc lavc \
 -lavcopts vcodec=mpeg2video \
 -o newfile.avi



Does mencoder peek at the outfile extension to determine container type?


This one is a little tricky, because mencoder will transcode
your file if you're not careful. So this part...

 -ovc lavc -lavcopts vcodec=mpeg2video

...needs to change according to what your source material is.
I think the above might work for DVD material?



I'll try that.

--
Seek truth from facts.


--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org

Archive: http://lists.debian.org/4d03ac32.4050...@cox.net



Re: bash increment in a given way

2010-12-11 Thread Camaleón
On Sat, 11 Dec 2010 06:34:14 -0800, S Mathias wrote:

> It's ok, that i can use this, when i want an incrementing sequence, in a
> given way:
> 
> # {START..END..INCREMENT}
> $ for i in {0..10..2}; do echo "Welcome $i times"; done Welcome 0 times
> Welcome 2 times
> Welcome 4 times
> Welcome 6 times
> Welcome 8 times
> Welcome 10 times
> $
> 
> but what's the "magic" for this? :
> 
> $ MAGIC; do echo "Welcome $i times"; done Welcome 0 times
> Welcome 1 times
> Welcome 4 times
> Welcome 5 times
> Welcome 8 times
> Welcome 9 times
> $
> 
> thanks:\

Hum... I'm not very good at "bashing" but, something like this? :-?

***
echo "Limit...?"
read limit

a=0
echo $a
for ((i=0; i<$limit; i++));
do
  a=$(($a + 1))
  echo $a
  a=$(($a + 3))
  echo $a
done
***

Greetings,

-- 
Camaleón


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/pan.2010.12.11.16.57...@gmail.com



Re: Update manager - fatal error but no report

2010-12-11 Thread Patrick Wiseman
2010/12/11 shirish शिरीष :
> Hi all,
>       Since yesterday or the day before I have been getting an Update
> manager error saying 'updates are half or there is some issue'. I
> update the system using
>
> $ sudo aptitude update
> $ sudo aptitude safe-upgrade -y
>
> Of course with the recent discussion all the entries in sources.list
> point to squeeze (not testing)
>
> Then when I click on the error icon to fix it, I get the update
> manager box saying 'you are up-to-date' or something to that effect.
>
> Clicking on check does the same thing as '$ sudo aptitude update'
>
> It sorta goes into a loop checking the same links/databases over and
> over. After a while I get a message saying update manager has a fatal
> error, please click on yes to report it. Clicking on yes does nothing.
>
> Giving two pics. to let you guys know.
>
> http://picturepush.com/public/4668012
> http://picturepush.com/public/4668013
>
> The first one is of the Update-manager icon in my notification area.
>
> The second one of the update-manager in a loop.
>
> Should I report it or should I check for something first? Perhaps
> something is wrong at my end.
>
> If its a bug and already reported, then a link would be nice.

For what little it's worth, I'm seeing exactly the same behavior (on a
regularly updated 'testing' system).

Patrick


--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/aanlkti=0qdsfp73hqbwdy_pvlgzk1lq_uuvgk4e64...@mail.gmail.com



Re: bash increment in a given way

2010-12-11 Thread S Mathias
already solved!

$ for i in $(seq 0 4 16); do seq $i 1 $(( $i + 1 )); done
0
1
4
5
8
9
12
13
16
17

thank you!

--- On Sat, 12/11/10, Camaleón  wrote:

From: Camaleón 
Subject: Re: bash increment in a given way
To: debian-user@lists.debian.org
Date: Saturday, December 11, 2010, 4:57 PM

On Sat, 11 Dec 2010 06:34:14 -0800, S Mathias wrote:

> It's ok, that i can use this, when i want an incrementing sequence, in a
> given way:
> 
> # {START..END..INCREMENT}
> $ for i in {0..10..2}; do echo "Welcome $i times"; done Welcome 0 times
> Welcome 2 times
> Welcome 4 times
> Welcome 6 times
> Welcome 8 times
> Welcome 10 times
> $
> 
> but what's the "magic" for this? :
> 
> $ MAGIC; do echo "Welcome $i times"; done Welcome 0 times
> Welcome 1 times
> Welcome 4 times
> Welcome 5 times
> Welcome 8 times
> Welcome 9 times
> $
> 
> thanks:\

Hum... I'm not very good at "bashing" but, something like this? :-?

***
echo "Limit...?"
read limit

a=0
echo $a
for ((i=0; i<$limit; i++));
do
  a=$(($a + 1))
  echo $a
  a=$(($a + 3))
  echo $a
done
***

Greetings,

-- 
Camaleón


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/pan.2010.12.11.16.57...@gmail.com




  

Re: Scrolling problems Iceweasel (Radeon HD 3850 problem?)

2010-12-11 Thread Camaleón
On Sat, 11 Dec 2010 14:25:07 +0100, Joost Kraaijeveld wrote:

> After an update somewhere the last few weeks (I can't remember when
> exactly)  scrolling in Iceweasel started to become problematically. I
> have two (separate?) problems:
> 
> 1. Scrolling of web pages with graphics is slow with frequent repainting
> of the complete web page from bottom to top which looks like a tidal
> wave on my screen. TExt pages do not seem to show this problem. 2.
> Clicking *just once* on the right scroll bar results in a complete
> scroll down as if I am clicking constantly.
> 
> I suspect that it is a problem with the N(non-free) fglrx video driver
> because this does not happen onmy other PC which has a NVidia.
> 
> Does anyone recognise these problems and/or has a solution?

A similar problem has been reported:

iceweasel: Scrolling in Google Reader is slow
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=593115

The bug seems to be merged with some older ones.

Greetings,

-- 
Camaleón


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/pan.2010.12.11.17.30...@gmail.com



Re: setting up a network printer

2010-12-11 Thread Paul Cartwright
On 12/11/2010 11:25 AM, Simon Hollenbach wrote:
>>
> hal:///org/freedesktop/Hal/devices/usb_device_4b8_82c_W57P10707310003510_if1_printer_noserial
> 
>> DeviceURI
>>
> hal:///org/freedesktop/Hal/devices/usb_device_4b8_82c_W57P10707310003510_if1_printer_noserial
> 
>> DeviceURI hp:/usb/Officejet_5600_series?serial=CN58BCF21H04CY
>> DeviceURI hpfax:/usb/Officejet_5600_series?serial=CN58BCF21H04CY
> 
> Sorry Paul, but i dont get how your posting makes my statement false.
> Here we see the usage of another two helper protocols at DeviceURI,
> namely hal and hpfax. Im staying at my opinion that a network-attached
> printer would make an IP show up under DeviceURI, whereas other link
> ways lead to a workaround, a 'virtual print server', a very basic one of
> course. Correct me if thats bogus...
ah, you are right, I missed the hp:/par/... mine says hp:/usb, now I see
the difference:) that's what I get for replying before my 2nd cup of
coffee:)


-- 
Paul Cartwright
Registered Linux user # 367800


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4d03bab7.9090...@pcartwright.com



Re: xserver-testing issues.

2010-12-11 Thread Camaleón
On Sat, 11 Dec 2010 23:22:50 +0700, Sthu Deus wrote:

>> Keyboard in testing is now configured in "/etc/default/keyboard" file.
> 
> OK. What should I put in there? - There is exactly what my xorg.conf
> keyboard settings are. - Before it did work, not - not. - I have no idea
> what to add more there.

If you are using "squeeze", "/etc/default/keyboard.conf" should contain 
the same settings you had specified in your "/etc/X11/xorg.conf" for the 
keyboard:

#xorg.conf
Option  "XkbModel"  "pc105"
Option  "XkbLayout" "us,de"
Option  "XkbVariant""winkeys"
Option  "XkbOptions""grp:ctrl_shift_toggle,grp_led:scroll"

Now in the form:

#keyboard.conf
XKBMODEL="pc105"
XKBLAYOUT="us,de"
XKBVARIANT="winkeys"
XKBOPTIONS="grp:ctrl_shift_toggle,grp_led:scroll"

Don't forget to remove (or comment #) the old settings from your 
"xorg.conf" so they don't collide.

>> You can use the tweak of "~/.asoundrc" to select the preferred sound
>> card:
>> 
>> http://alsa.opensrc.org/.asoundrc#Default_PCM_device
> 
> I have already tried that and a player said that I have no pcm file for
> the device number in /dev/snd, and indeed, I have:

You have to run "aplay -l", it should display the all your outputs, for 
example:

***
s...@stt008:~$ aplay -L
default:CARD=Intel
HDA Intel, ALC883 Analog
Default Audio Device
front:CARD=Intel,DEV=0
HDA Intel, ALC883 Analog
Front speakers
surround40:CARD=Intel,DEV=0
HDA Intel, ALC883 Analog
4.0 Surround output to Front and Rear speakers
surround41:CARD=Intel,DEV=0
HDA Intel, ALC883 Analog
4.1 Surround output to Front, Rear and Subwoofer speakers
surround50:CARD=Intel,DEV=0
HDA Intel, ALC883 Analog
5.0 Surround output to Front, Center and Rear speakers
surround51:CARD=Intel,DEV=0
HDA Intel, ALC883 Analog
5.1 Surround output to Front, Center, Rear and Subwoofer speakers
surround71:CARD=Intel,DEV=0
HDA Intel, ALC883 Analog
7.1 Surround output to Front, Center, Side, Rear and Woofer speakers
iec958:CARD=Intel,DEV=0
HDA Intel
IEC958 (S/PDIF) Digital Audio Output
null
Discard all samples (playback) or generate zero samples (capture)
***

And then you can put in your "~./asoundrc" file:

***
pcm.!default front:Intel
***

In the avobe line I am choosing the Intel card (now I only have one 
installed) as my default pcm card.
 
(...)

> Farther, I do not know what to do. - May I have to file up a bug report
> against it? - But against what? - I know that testing is not the same as
> stable, but may others can meet the same problem upgrading froim lenny
> to squeeze.

Try fisrt by following the alsasound tip and check the output of the 
aplay -L command.

>> First, I would try with no "/etc/X11/xorg.conf" file and let xorg to
>> set the card automatically.
> 
> I've tried - same result beside some other things - but no 3D
> acceleration.
> 
>> Do ATI cards need a firmaware to load 3D extensions? Are you using a
>> stock kernel or a custom or backports one?
> 
> I have free and non-free firmwares - both set to be upgraded w/ testing
> repo - but I guess only was actually upgraded.
> 
> I use the latest backported kernel.

This was the errors you were getting:

***
(EE) AIGLX error: r300 exports no extensions (/usr/lib/dri/r300_dri.so:
undefined symbol: __driDriverExtensions) 
(EE) AIGLX: reverting to software rendering 
(II) AIGLX: Screen 0 is not DRI capable
(EE) AIGLX error: dlopen of /usr/lib/dri/swrast_dri.so failed
(/usr/lib/dri/swrast_dri.so: cannot open shared object file: No such
file or directory) 
(EE) GLX: could not load software renderer 
(II) GLX: no usable GL providers found for screen 0
***

Sounds like Xorg cannot load some files for enabling 3D acceleration... 
let's see, "swrast_dri.so" is included in package "libgl1-mesa-dri", do 
you have it installed? Can you locate that library installed in the 
mentioned path? :-?

Greetings,

-- 
Camaleón


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/pan.2010.12.11.18.16...@gmail.com



Re: Scrolling problems Iceweasel (Radeon HD 3850 problem?)

2010-12-11 Thread Joost Kraaijeveld
Hi Camaleón,

Thanks for the respons.

On Sat, 2010-12-11 at 17:30 +, Camaleón wrote: 
> A similar problem has been reported:
> 
> iceweasel: Scrolling in Google Reader is slow
> http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=593115
> 
> The bug seems to be merged with some older ones.
I have seen that report (and to be honest some more) but as it worked OK
until recently (1-2 weeks ago) so I did not think that these reports
were related to my problem. Also some of the reports mention problems
with NVidia cards, whereas my other PC with a NVidia card works OK.

It is actually quit annoying. Especially because it seems that after a
while (> 4-5 hours of working on the pc) it starts to affect other
applications, and I actually have to reboot my machine.


-- 
Met vriendelijke groeten,

Joost Kraaijeveld
Askesis B.V.
Molukkenstraat 14
6524NB Nijmegen
tel: 024-3888063 / 06-51855277
fax: 024-3608416
web: www.askesis.nl


signature.asc
Description: This is a digitally signed message part


Re: Setting a default network cups printer

2010-12-11 Thread Camaleón
On Sat, 11 Dec 2010 18:25:10 +, T o n g wrote:

> I'm having difficulties setting a default network cups printer.
> 
> I've set the default printer on the server, and verified via the web
> interface. Also, I did
> 
>  lpadmin -d new_printer
> 
> on my client host, either as root and as myself.
> 
> However, the printing still goes to the old printer that I set
> previously.
> 
> Anyone can help?

What does "lpstat -t | grep default" say?

Greetings,

-- 
Camaleón


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/pan.2010.12.11.18.33...@gmail.com



Re: Setting a default network cups printer

2010-12-11 Thread T o n g
On Sat, 11 Dec 2010 18:34:04 +, Camaleón wrote:

>> I've set the default printer on the server, and verified via the web
>> interface. Also, I did
>> 
>>  lpadmin -d new_printer
>> 
>> on my client host, either as root and as myself.
>> 
>> However, the printing still goes to the old printer that I set
>> previously.

> What does "lpstat -t | grep default" say?

Oh, that's how you find default printers --

$ lpstat -t | grep default
system default destination: epson_cx1500

Still pointing to my old printer on the client. On the server it reports 
correctly.

-- 
Tong (remove underscore(s) to reply)
  http://xpt.sourceforge.net/techdocs/
  http://xpt.sourceforge.net/tools/


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/ie0gh0$qg...@dough.gmane.org



Re: Scrolling problems Iceweasel (Radeon HD 3850 problem?)

2010-12-11 Thread Angus Hedger
On Sat, 11 Dec 2010 14:25:07 +0100
Joost Kraaijeveld  wrote:

> Hi ,
> 
> After an update somewhere the last few weeks (I can't remember when
> exactly)  scrolling in Iceweasel started to become problematically. I
> have two (separate?) problems:
> 
> 1. Scrolling of web pages with graphics is slow with frequent
> repainting of the complete web page from bottom to top which looks
> like a tidal wave on my screen. TExt pages do not seem to show this
> problem. 2. Clicking *just once* on the right scroll bar results in a
> complete scroll down as if I am clicking constantly.
> 
> I suspect that it is a problem with the N(non-free) fglrx video driver
> because this does not happen onmy other PC which has a NVidia.
> 
> Does anyone recognise these problems and/or has a solution?
> 
> TIA

What version of fglrx are you using?

You could try turning off the "new" 2D acceleration stuff, if your
catalyst version is > 10.6 but < 10.10 (its supposed to be all fixed
and shiny, but you can still try this).

Do the following as root without X running.

# aticonfig --del-pcs-key=DDX,Direct2DAccel
# aticonfig --set-pcs-str=DDX,ForceXAA,TRUE

--
Regards,

Angus Hedger

Debian GNU/Linux User   PGP Public Key 0xEE6A4B97


signature.asc
Description: PGP signature


Re: Compiling ndiswrapper module (Realtek rtl8192se wireless) (Solved!)

2010-12-11 Thread Joel Roth
On Fri, Dec 10, 2010 at 10:04:10PM -1000, Joel Roth wrote:
> On Tue, Nov 30, 2010 at 10:26:12AM -1000, Joel Roth wrote:
> > Hi all,
> > 
> > I've got a new Thinkpad T410 i5.
> >
> > The T410 come with a Realtek rtl8192se mini PCI express
> > wireless card.
> > 
> > I've done my best with the native drivers, compiling them
> > for a 2.6.36-amd64 kernel.  The module load and the wireless
> > device appears in ifconfig output, but 'iw wlan0 scan' fails
> > with 'Operation not supported (-95)'.  :-(

However, "iwconfig wlan1 scan" succeeds!  :-p

The ndiswrapper module installs, as described in the
previous mail, however 32-bit XP realtek driver is not
compatible with my amd64 system (modprobe ndiswrapper
complains specifically about this). And 'modprobe
ndiswrapper' after setting up the 64-bit XP drivers results
in 'unknown symbol' errors involving NDIS.SYS.

So the final result is success using a native driver.

Thanks to all who helped and who incidentally inhabited the
problem/solution space. :)

Joel

-- 
Joel Roth


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20101211191824.ga9...@sprite



Re: Setting a default network cups printer

2010-12-11 Thread David Jardine
On Sat, Dec 11, 2010 at 06:39:28PM +, T o n g wrote:
> On Sat, 11 Dec 2010 18:34:04 +, Camaleón wrote:
> 
> >> I've set the default printer on the server, and verified via the web
> >> interface. Also, I did
> >> 
> >>  lpadmin -d new_printer
> >> 
> >> on my client host, either as root and as myself.
> >> 
> >> However, the printing still goes to the old printer that I set
> >> previously.
> 
> > What does "lpstat -t | grep default" say?
> 
> Oh, that's how you find default printers --
> 
> $ lpstat -t | grep default
> system default destination: epson_cx1500
> 
> Still pointing to my old printer on the client. On the server it reports 
> correctly.

Have you perhaps set the PRINTER environment variable?  Try

printenv PRINTER

Cheers,
David


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20101211192307.ga1...@gennes.augarten



Re: Scrolling problems Iceweasel (Radeon HD 3850 problem?)

2010-12-11 Thread Joost Kraaijeveld
On Sat, 2010-12-11 at 18:51 +, Angus Hedger wrote: 
> What version of fglrx are you using?


> 
> You could try turning off the "new" 2D acceleration stuff, if your
> catalyst version is > 10.6 but < 10.10 (its supposed to be all fixed
> and shiny, but you can still try this).
10.9-3, the version Squeeze has.

> 
> Do the following as root without X running.
> 
> # aticonfig --del-pcs-key=DDX,Direct2DAccel
> # aticonfig --set-pcs-str=DDX,ForceXAA,TRUE
> 
panoramix:/etc/X11# aticonfig --del-pcs-key=DDX,Direct2DAccel
Error: Key DDX,Direct2DAccel not found in PCS database
panoramix:/etc/X11# aticonfig --set-pcs-str=DDX,ForceXAA,TRUE
Set key DDX,ForceXAA

Although the first command resulted in an error, it seems to work indeed
during a short test. Thank you.

-- 
Groeten,

Joost Kraaijeveld
Askesis B.V.
Molukkenstraat 14
6524NB Nijmegen
tel: 024-3888063 / 06-51855277
fax: 024-3608416
web: www.askesis.nl



-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/1292096878.6299.4.ca...@asterix.askesis.nl



Re: Setting a default network cups printer

2010-12-11 Thread Camaleón
On Sat, 11 Dec 2010 18:39:28 +, T o n g wrote:

> On Sat, 11 Dec 2010 18:34:04 +, Camaleón wrote:
> 
>> What does "lpstat -t | grep default" say?
> 
> Oh, that's how you find default printers --
> 
> $ lpstat -t | grep default
> system default destination: epson_cx1500
> 
> Still pointing to my old printer on the client. On the server it reports
> correctly.

Besides David's advice, have you tried by restarting cups daemon ("/etc/
init.d/cups restart") on the client side? :-?

Greetings,

-- 
Camaleón


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/pan.2010.12.11.20.00...@gmail.com



Re: Debian 5 installation

2010-12-11 Thread Osamu Aoki
Hi,

On Sat, Dec 04, 2010 at 12:36:20PM +, Harry Scott wrote:
> I wanted help to install a nvidia legacy graphics driver for TNT 2  AGP
> so I thought to contact the user lists for guidance. This was not
> possible because:
> 1 When I tried to use evolution after asking permission (used windows
> mail to confirm) I couldn't move its window up to click on forward. The
> default vga video setting making the window too large.
> 2 I thought, having read the installation instructions, Lenny would note
> that a nvidia driver was needed. Looking at the xorg.conf file it
> obviously couldn't. Configured device was all it said.
> 3 I read the Debian wiki after downloading appropriate driver from
> Nvidia. And downloaded nvidia-xconfig the missing piece of the puzzle.
> I think your help on the installation is ego-centric. Is it possible to
> get easier assistance?

Everyone, including me and you, are ego-centric in some way.  

You want free help by yelling.  No a good way.  You can always pay to
get help 

I have to admit that Debian still has high technical hurdle for some, or
I should say most non-technical, people.  But we do our best to get
skill to drive this OS.  

The installation manual is one you need to read.
It's list is available one click from http://www.debian.org/.
  http://www.debian.org/releases/stable/installmanual

Osamu


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20101211194704.gb23...@debian.org



Re: Compiling ndiswrapper module (Realtek rtl8192se wireless) (Solved!)

2010-12-11 Thread Joel Roth
On Sat, Dec 11, 2010 at 09:18:24AM -1000, Joel Roth wrote:
> However, "iwconfig wlan1 scan" succeeds!  :-p

Sorry that should be:

 iwlist wlan1 scan

Also, wpa_supplicant does not appear to work for this driver.

-- 
Joel Roth


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20101211200419.ga9...@sprite



Re: Scrolling problems Iceweasel (Radeon HD 3850 problem?)

2010-12-11 Thread Angus Hedger
On Sat, 11 Dec 2010 20:47:58 +0100
Joost Kraaijeveld  wrote:

> On Sat, 2010-12-11 at 18:51 +, Angus Hedger wrote: 
> > What version of fglrx are you using?
> 
> 
> > 
> > You could try turning off the "new" 2D acceleration stuff, if your
> > catalyst version is > 10.6 but < 10.10 (its supposed to be all fixed
> > and shiny, but you can still try this).
> 10.9-3, the version Squeeze has.
> 
> > 
> > Do the following as root without X running.
> > 
> > # aticonfig --del-pcs-key=DDX,Direct2DAccel
> > # aticonfig --set-pcs-str=DDX,ForceXAA,TRUE
> > 
> panoramix:/etc/X11# aticonfig --del-pcs-key=DDX,Direct2DAccel
> Error: Key DDX,Direct2DAccel not found in PCS database
> panoramix:/etc/X11# aticonfig --set-pcs-str=DDX,ForceXAA,TRUE
> Set key DDX,ForceXAA
> 
> Although the first command resulted in an error, it seems to work
> indeed during a short test. Thank you.
> 

Your welcome.

If/When you upgrade to 10.10 or above, you may want to reverse it, as
the new stuff is supposed to be fixed.

Best of luck.

--
Regards,

Angus Hedger

Debian GNU/Linux User   PGP Public Key 0xEE6A4B97


signature.asc
Description: PGP signature


Weird icon colors in squeeze (ppc). Which package should i file a bug report for?

2010-12-11 Thread Drew Engelbrecht
Since my upgrade to squeeze, many menu icons, scrollbars, and some images
displayed in browsers have been displaying funky colors. I don't know which
package is causing this bug, so can anyone offer any advice?

Here is a picture of what I'm talking about, using the clearlooks theme:
http://imgur.com/mK8Uv

The other themes I've tried have the same issues, except for Amaranth
(mostly). I noticed that the customization window doesn't allow color
schemes for this theme. Also, I can change the iconset to the debian default
and have no problems, despite the fact that these same icons are displaying
poorly in other themes. However, if I customize the appearance of the
"controls" in Aramanth to inherit from another theme, then everything looks
just as bad as if I had selected one of the problematic themes.

Here is some choppiness that is caused by scrolling up and down with one of
the bad themes:
http://imgur.com/Kb6zP

This picture is of OpenOffice Draw. It seems to be using a different theme
than Amaranth, so that might be why it is still kinda messed-up:
http://imgur.com/Px8M6

I'm also noticing that the Debian icon in iceweasel looks blue sometimes.
Some other icons on webpages do have issues as well. Sometimes, rolling over
a bad image (or on the same latitude) with the mouse will fix it.

Someone on irc suggested that this might be a bug in an image library, but I
don't know which one is the culprit. Does anyone know which package this
might be caused by, or which other package I should post the bug to in the
meantime?

Thanks,
-Drew


Re: Weird icon colors in squeeze (ppc). Which package should i file a bug report for?

2010-12-11 Thread Camaleón
On Sat, 11 Dec 2010 14:54:16 -0500, Drew Engelbrecht wrote:

> Since my upgrade to squeeze, many menu icons, scrollbars, and some
> images displayed in browsers have been displaying funky colors. I don't
> know which package is causing this bug, so can anyone offer any advice?

(...)

Quick check: does it happen when you login with a fresh new created user?

Greetings,

-- 
Camaleón


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/pan.2010.12.11.20.59...@gmail.com



Re: Update manager - fatal error but no report

2010-12-11 Thread shirish शिरीष
On 11/12/2010, Patrick Wiseman  wrote:



> For what little it's worth, I'm seeing exactly the same behavior (on a
> regularly updated 'testing' system).

Thank you Patrick.

On a casual browse saw Cameleon had also responded. FWIW here are the
things requested.


$ sudo aptitude update
[sudo] password for shirish:
Hit http://www.mirrorservice.org squeeze Release.gpg
Ign http://www.mirrorservice.org/sites/ftp.debian.org/debian/
squeeze/contrib Translation-en
Ign http://www.mirrorservice.org/sites/ftp.debian.org/debian/
squeeze/contrib Translation-en_IN
Ign http://www.mirrorservice.org/sites/ftp.debian.org/debian/
squeeze/main Translation-en
Ign http://www.mirrorservice.org/sites/ftp.debian.org/debian/
squeeze/main Translation-en_IN
Ign http://www.mirrorservice.org/sites/ftp.debian.org/debian/
squeeze/non-free Translation-en
Ign http://www.mirrorservice.org/sites/ftp.debian.org/debian/
squeeze/non-free Translation-en_IN
Ign http://www.mirrorservice.org squeeze/updates Release.gpg
Ign http://www.mirrorservice.org/sites/ftp.debian.org/debian/
squeeze/updates/non-free Translation-en
Ign http://www.mirrorservice.org/sites/ftp.debian.org/debian/
squeeze/updates/non-free Translation-en_IN
Hit http://www.mirrorservice.org squeeze Release
Ign http://www.mirrorservice.org squeeze/updates Release
Hit http://www.mirrorservice.org squeeze/main amd64 Packages/DiffIndex
Hit http://www.mirrorservice.org squeeze/contrib amd64 Packages/DiffIndex
Hit http://www.mirrorservice.org squeeze/non-free amd64 Packages/DiffIndex
Ign http://www.mirrorservice.org squeeze/updates/non-free amd64 Packages
Err http://www.mirrorservice.org squeeze/updates/non-free amd64 Packages
  404  Not Found [IP: 212.219.56.139 80]
Get:1 http://security.debian.org squeeze/updates Release.gpg [835 B]
Ign http://security.debian.org/ squeeze/updates/contrib Translation-en
Ign http://security.debian.org/ squeeze/updates/contrib Translation-en_IN
Ign http://security.debian.org/ squeeze/updates/main Translation-en
Ign http://security.debian.org/ squeeze/updates/main Translation-en_IN
Ign http://security.debian.org/ squeeze/updates/non-free Translation-en
Ign http://security.debian.org/ squeeze/updates/non-free Translation-en_IN
Get:2 http://security.debian.org squeeze/updates Release [44.6 kB]
Hit http://security.debian.org squeeze/updates/main amd64 Packages
Hit http://security.debian.org squeeze/updates/contrib amd64 Packages
Hit http://security.debian.org squeeze/updates/non-free amd64 Packages
Get:3 http://www.debian-multimedia.org squeeze Release.gpg [198 B]
Ign http://www.debian-multimedia.org/ squeeze/main Translation-en
Ign http://www.debian-multimedia.org/ squeeze/main Translation-en_IN
Ign http://www.debian-multimedia.org/ squeeze/non-free Translation-en
Ign http://www.debian-multimedia.org/ squeeze/non-free Translation-en_IN
Get:4 http://www.debian-multimedia.org squeeze Release [26.7 kB]
Hit http://www.debian-multimedia.org squeeze/main amd64 Packages/DiffIndex
Hit http://www.debian-multimedia.org squeeze/non-free amd64 Packages/DiffIndex
Fetched 72.4 kB in 19s (3,649 B/s)

Ok because there are no updates as of yet hence cannot put up the second one.

As far as the third one here it is :-

~$ cat /etc/apt/sources.list
#

# deb cdrom:[Debian GNU/Linux squeeze _Squeeze_ - Official Snapshot
amd64 DVD Binary-1 20101122-04:58]/ squeeze contrib main

# deb cdrom:[Debian GNU/Linux squeeze _Squeeze_ - Official Snapshot
amd64 DVD Binary-1 20101122-04:58]/ squeeze contrib main

# Debian Main
deb http://www.mirrorservice.org/sites/ftp.debian.org/debian/ squeeze
main contrib non-free

# Debian Security
deb http://security.debian.org/ squeeze/updates main contrib non-free

# Unofficial Maintainers
# deb http://unofficial.debian-maintainers.org/ squeeze main contrib
non-free restricted

# Debian-Multimedia.org Repository
deb http://www.mirrorservice.org/sites/ftp.debian.org/debian/
squeeze/updates non-free
deb http://www.debian-multimedia.org squeeze main non-free

As far as my choice of mirrorservice.org is concerned its simply
because that's what Best Server gave me as .

> Patrick

Possibly it gets triggered when safe-upgrade is applied, will try in a
little while again.

-- 
  Regards,
  Shirish Agarwal  शिरीष अग्रवाल
  My quotes in this email licensed under CC 3.0
http://creativecommons.org/licenses/by-nc/3.0/
http://flossexperiences.wordpress.com
065C 6D79 A68C E7EA 52B3  8D70 950D 53FB 729A 8B17


--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/aanlktikroprgstsjjz-8z0kboqy8rnrkq3fp6jmxa...@mail.gmail.com



需要f.a p.iao 吗,来咨询: 134 一零一201 零零 ;小美

2010-12-11 Thread riperkill521
 Çë¼±µç 

__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/155641.22956...@smtp113.mail.ne1.yahoo.com



Re: bash increment in a given way

2010-12-11 Thread andrea
Let me understand: you want to accomplish that with a single loop,
right? I think so, because the following two nested loops do what you
want very easily:

for((i=0;i<=30;i+=4)); do 
  for((j=0; j<2;j++)); do 
echo "Welcome $((i+j)) times"; 
  done;
done

Welcome 0 times
Welcome 1 times
Welcome 4 times
Welcome 5 times
Welcome 8 times
Welcome 9 times
Welcome 12 times
Welcome 13 times
Welcome 16 times
Welcome 17 times
Welcome 20 times
Welcome 21 times
Welcome 24 times
Welcome 25 times
Welcome 28 times
Welcome 29 times

Best regards.

On Sat, 2010-12-11 at 06:34 -0800, S Mathias wrote:
> It's ok, that i can use this, when i want an incrementing sequence, in
> a given way:
> 
> # {START..END..INCREMENT}
> $ for i in {0..10..2}; do echo "Welcome $i times"; done
> Welcome 0 times
> Welcome 2 times
> Welcome 4 times
> Welcome 6 times
> Welcome 8 times
> Welcome 10 times
> $
> 
> but what's the "magic" for this? :
> 
> $ MAGIC; do echo "Welcome $i times"; done
> Welcome 0 times
> Welcome 1 times
> Welcome 4 times
> Welcome 5 times
> Welcome 8 times
> Welcome 9 times
> $
> 
> thanks:\
> 
> 


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/1292102985.17011.7.ca...@debian



Re: [Semi-OT] Cropping a letterbox MPEG-2 file is easy enough...

2010-12-11 Thread Rob Owens
On Sat, Dec 11, 2010 at 10:49:59AM -0600, Ron Johnson wrote:
> On 12/11/2010 05:01 AM, Klistvud wrote:
>> Dne, 11. 12. 2010 05:03:55 je Ron Johnson napisal(a):
>>
>>> (Yes, Handbrake makes the job trivial, but no, I don't want to
>>> transcode the file, just "crop and save". Disk is cheap and I want
>>> to retain DVD quality.)
>>
>> Are you positive that's possible? Wouldn't cropping necessarily
>> involve transcoding?
>>
>
> I don't know.
>
Avidemux can crop, but it won't let you do that if you choose "copy" for
the codec, unfortunately.  

-Rob


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20101211221226.ga22...@aurora.owens.net



Re: Setting a default network cups printer

2010-12-11 Thread Rob Owens
On Sat, Dec 11, 2010 at 06:25:10PM +, T o n g wrote:
> Hi,
> 
> I'm having difficulties setting a default network cups printer. 
> 
> I've set the default printer on the server, and verified via the web 
> interface. Also, I did 
> 
>  lpadmin -d new_printer
> 
> on my client host, either as root and as myself. 
> 
> However, the printing still goes to the old printer that I set 
> previously. 
> 
I think that each user can specify his own default printer.  I'm not
sure how to do it, except for using Gnome's printer tools.  

-Rob


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20101211221349.gb22...@aurora.owens.net



Re: Barcode reader. Need help and suggestions.

2010-12-11 Thread Bob Proulx
Roman Khomasuridze wrote:
> Yesterday I received barcode scanner (for credit cards) from quite unknown
> chinese manufacturer. it has USB interface.manufacturer is MSR (I guess),
> and model is HCC7...
> Bus 005 Device 006: ID 04b4:bca1 Cypress Semiconductor Corp. Barcode Reader

I have never seen a barcode on any of my credit cards.  Mine all have
magnetic stripes.  But I have used bar code readers on my Debian
machine to read bar codes.

> the barcode reader seems to be on, as I see green light.
> When I put my visa card in it, device goes down, it seems to be turned off.

You appear to have a non-keyboard version.  The version of barcode
scanners I have used have either been older serial port versions or
newer USB versions.

> After much reading, I found suggestion to connect barcode reader to PC
> through usb2ps2 adapter. With this setup there seems some "Progress": when i
> slide my visa card through scanner it doesnt turn off - The same behaviour
> can be found on Windows PC if no driver for this device is loaded.

Interesting.

> So, as I guess all I need now, is software, that will output data from
> barcode reader to... well somewhere.

The USB barcode scanner versions that I have used so far all appear to
the system as a keyboard.  Scanning in a barcode acts as if the data
were typed in at a keyboard.  This type is fairly easy to use since
there are no special drivers needed since the usb keyboard driver is
already available.  Unfortunately you appear to have a different type.

> and i get this in dmesg:
> [ 7014.401237] generic-usb: probe of 0003:04B4:BCA1.0008 failed with error -22

Perhaps the information in this thread will be of use.

  http://ubuntuforums.org/showthread.php?t=1112575

Bob


signature.asc
Description: Digital signature


Re: [Semi-OT] Cropping a letterbox MPEG-2 file is easy enough...

2010-12-11 Thread Phil Requirements
On 2010-12-11 10:52:02 -0600, Ron Johnson wrote:
> On 12/11/2010 02:31 AM, Phil Requirements wrote:
> >On 2010-12-10 22:03:55 -0600, Ron Johnson wrote:
> >>But how do I save the output?
> >>
> >>After reading the mplayer and ffmpeg man page and Googling, these
> >>are the three methods I tried, but none of them work.
> >>
> >>$ mplayer foo.mpeg -vf crop=720:352:0:64 \
> >> -dumpstream -dumpfile bar.mpeg
> >>
> >>$ mplayer foo.mpeg -vf crop=720:352:0:64 -o bar.mpeg
> >>
> >>$ mencoder foo.mpeg -vf crop=720:352:0:64 \
> >> -ovc copy -oac copy -o bar.mpeg
> >>
> >>$ ffmpeg -i foo.mpeg -vf crop=720:352:0:64 \
> >> -vcodec copy -acodec copy bar.mpeg
> >
> >How about this one:
> >
> > mencoder foo.mpeg \
> > -vf crop=720:352:0:64 \
> > -oac copy \
> > -ovc lavc \
> > -lavcopts vcodec=mpeg2video \
> > -o newfile.avi
> >
> 
> Does mencoder peek at the outfile extension to determine container type?

Sorry! The avi thing is a typo. I had written my example command, then
I changed it to match your example command, but I forgot to change the
name of the output file. It should have read:

 mencoder foo.mpeg \
 -vf crop=720:352:0:64 \
 -oac copy \
 -ovc lavc \
 -lavcopts vcodec=mpeg2video \
 -o bar.mpeg

Sorry for the confusion,

Phil


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20101212015658.ga2...@kasploosh.net



Re: Cannot mount floppy drive in Squeeze

2010-12-11 Thread Stephen Powell
On Thu, 09 Dec 2010 20:11:40 -0500 (EST), Stephen Powell wrote:
> 
> I don't know.  My computer does not have a USB floppy drive, that's true.
> It is a traditional AT-style floppy disk controller with two floppy
> drives.  And I can no longer reproduce the problem.  Having a floppy
> disk in the drive at boot time just once seems to have permanently
> cured the problem.  Did a udev rule get created as a result of a
> "ready" floppy drive at boot time?  I don't know.  But I don't think
> there's much point in filing a bug report if I can no longer reproduce
> the problem and I don't know what cured it.

I spoke too soon.  The problem has recurred.  After some more trial-
and-error experimentation, the problem now seems to be GNOME-related.
I can mount and umount the floppy disk UNTIL I logon to GNOME.
Then, things go haywire.  I have been able to circumvent the problem
by commenting out the following entries in /etc/fstab and rebooting:

/dev/fd0/media/floppy0  autorw,user,noauto  0   0
/dev/fd1/media/floppy1  autorw,user,noauto  0   0

Now only root can mount and umount floppies.  Since GNOME does not
run with root privileges, it can't mess me up.

-- 
  .''`. Stephen Powell
 : :'  :
 `. `'`
   `-


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/2106438276.1006033.1292121041382.javamail.r...@md01.wow.synacor.com



Re: Cannot mount floppy drive in Squeeze

2010-12-11 Thread Tom H
On Sat, Dec 11, 2010 at 9:30 PM, Stephen Powell  wrote:
> On Thu, 09 Dec 2010 20:11:40 -0500 (EST), Stephen Powell wrote:
>>
>> I don't know.  My computer does not have a USB floppy drive, that's true.
>> It is a traditional AT-style floppy disk controller with two floppy
>> drives.  And I can no longer reproduce the problem.  Having a floppy
>> disk in the drive at boot time just once seems to have permanently
>> cured the problem.  Did a udev rule get created as a result of a
>> "ready" floppy drive at boot time?  I don't know.  But I don't think
>> there's much point in filing a bug report if I can no longer reproduce
>> the problem and I don't know what cured it.
>
> I spoke too soon.  The problem has recurred.  After some more trial-
> and-error experimentation, the problem now seems to be GNOME-related.
> I can mount and umount the floppy disk UNTIL I logon to GNOME.
> Then, things go haywire.  I have been able to circumvent the problem
> by commenting out the following entries in /etc/fstab and rebooting:
>
> /dev/fd0        /media/floppy0  auto    rw,user,noauto  0       0
> /dev/fd1        /media/floppy1  auto    rw,user,noauto  0       0
>
> Now only root can mount and umount floppies.  Since GNOME does not
> run with root privileges, it can't mess me up.

I've been systematically deleting the emails in this thread unread. I
was about to do the same with this one when I remembered a
Ubuntu-users thread/rant about floppies where the apparent solution
was to keep the above lines in "/etc/fstab" and mount floppies with
"udisks --mount /dev/fdX". Since Ubuntu's based on a mix of testing
and unstable and uses the Debian udisks package without "ubuntufying"
it...


--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/aanlktinp+q33qkxcakv8e2e52dz--zuwdvy++7sa5...@mail.gmail.com



How do I set up compiz ? No xorg.conf anymore ?

2010-12-11 Thread shirish शिरीष
Hi all,
 How do I set up compiz. I downloaded compiz and the compiz-manager
using this wiki page.

http://wiki.debian.org/Compiz

I used the minimalist gtk option and then added the gnome-bit so that
it works with GNOME - The WM I use.

$ aptitude search compiz
p   cairo-dock-compiz-icon-plugin  - Cairo-dock - Compiz icon plug-in
p   compiz - OpenGL window and compositing manager
i A compiz-core- OpenGL window and compositing manager
v   compiz-core-abiversion-2009061 -
p   compiz-dev - OpenGL window and compositing manager - d
p   compiz-fusion-bcop - Compiz Fusion option code generator
p   compiz-fusion-plugins-extra- Compiz Fusion plugins - extra collection
p   compiz-fusion-plugins-main - Compiz Fusion plugins - main collection
p   compiz-fusion-plugins-unsuppor - Compiz Fusion plugins - "unsupported" col
i   compiz-gnome   - OpenGL window and compositing manager - G
i   compiz-gtk - OpenGL window and compositing manager - G
p   compiz-kde - OpenGL window and compositing manager - K
i A compiz-plugins - OpenGL window and compositing manager - p
p   compizconfig-backend-gconf - Compiz Fusion configuration system - gcon
p   compizconfig-backend-kconfig   - Compiz Fusion configuration system - kcon
i   compizconfig-settings-manager  - Compizconfig Settings Manager
p   libcompizconfig-dev- Configuration settings library for compiz
i A libcompizconfig0   - Configuration settings library for compiz
i A python-compizconfig- Compizconfig bindings for python

Now I'm on an Intel machine (GMA31 chipset) and there's no /etc/X11/xorg.conf

$ ls /etc/X11
app-defaults twmXreset  Xsession.d
default-display-manager  X  Xreset.dXsession.options
fontsxinit  Xresources  XvMCConfig
rgb.txt  xkbXsessionXwrapper.

I searched and found this
http://linux.koolsolutions.com/2009/04/24/howto-resolve-x-server-video-driver-errorscrashes-in-debian-linux/

I am/was mainly looking for howto restart X.

So should I create an xorg.conf with the parameters given ?

Looking forward for help and advice as to how to proceed.

-- 
  Regards,
  Shirish Agarwal  शिरीष अग्रवाल
  My quotes in this email licensed under CC 3.0
http://creativecommons.org/licenses/by-nc/3.0/
http://flossexperiences.wordpress.com
065C 6D79 A68C E7EA 52B3  8D70 950D 53FB 729A 8B17


--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/aanlkti�mfrrgkb=+k9eqkpu4ryk1qbbx1r-impu...@mail.gmail.com



Re: User stylesheets with mozilla browsers

2010-12-11 Thread Chris Jones
On Sat, Dec 11, 2010 at 06:35:35AM EST, Joel Roth wrote:

> On Fri, Dec 10, 2010 at 10:56:08AM -0500, Chris Jones wrote:

> > Is there any way I could use a custom stylesheet to make my web browser
> > rearrange text in two or more columns so I don't get my eyes crossed
> > when I'm reading?
> > 
> > Come to think of it, a web browser with vertical vim-style vertical
> > splits, where you could display the contents of 2-3 tabs side by side
> > would be nice.

[..]

> This site doesn't give you two columns, but does offer
> a variety of other choices to make websites more legible.
> 
> Gets installed as a javascript program in a bookmark
> that you click on to reformat a site.
> 
> http://lab.arc90.com/experiments/readability/

For H's sake.. I don't even use a bookmark toolbar :-)

Not having a clue as to what this thing is/does.. where the source is...
who the blessed author is and how long he plans on staying alive and
hopefully maintaining his creation... such as keeping abreast of browser
upgrades in an timely fashion, for instance.. I'll pass on this one :-)

All that stuff kinda reminds me.. of Microsoft Windows practices.. you
drool, you click, and yet another piece of potential scumware graciously
installs itself and infects your computer.

Add-ons, indeed...

Nothing personal, I assure you: To be honest, I did activate the
bookmarks ‘bar’ in seamonkey and checked what this add-on does before
(hopefully..?) removing it. If nothing else, playing with it gave me
perspective in an area of computing I am totally unfamiliar with. 

Thanks a bunch for the suggestion.

FYI, y'all.. css3's ‘column-width’ and ‘column-count’ may need a bit of
tweaking my end yet, but that's what I was looking for.

HTH :-)

cj


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20101212053950.ga3...@turki.gavron.org