How to port forward inside a folder ?

2012-05-24 Thread J. Bakshi
Hello,

iptables port forwarding is running fine here.

192.168.1.1:82 forwarded to 192.168.1.2:80

``
# for 82 > 80 of 192.168.1.2
iptables -A INPUT -p tcp -m tcp --dport 82 -j ACCEPT
iptables -A PREROUTING -t nat -i ${LAN_IFACE} -p tcp --dport 82 -j DNAT --to 
192.168.1.2:80
iptables -A FORWARD -p tcp --dport 82 -i ${LAN_IFACE} -j ACCEPT

iptables -A PREROUTING -t nat -i ${WAN_IFACE} -p tcp --dport 82 -j DNAT --to 
192.168.1.2:80
iptables -A FORWARD -p tcp -d 192.168.1.2 --dport 80 -j ACCEPT
```

How can I forward inside a folder like
192.168.1.1:82 forwarded to 192.168.1.2:80/mysite

I have modified the rules as [ --to 192.168.1.2:80/mysite ]
but no success. Am I missing anything ?

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/20120524134100.218f4...@shiva.selfip.org



Re: How to port forward inside a folder ?

2012-05-24 Thread Jari Fredriksson
On Thu, May 24, 2012 11:11, J. Bakshi wrote:
> Hello,
>
> iptables port forwarding is running fine here.
>
> 192.168.1.1:82 forwarded to 192.168.1.2:80
>
> ``
> # for 82 > 80 of 192.168.1.2
> iptables -A INPUT -p tcp -m tcp --dport 82 -j ACCEPT
> iptables -A PREROUTING -t nat -i ${LAN_IFACE} -p tcp --dport 82 -j DNAT
> --to 192.168.1.2:80
> iptables -A FORWARD -p tcp --dport 82 -i ${LAN_IFACE} -j ACCEPT
>
> iptables -A PREROUTING -t nat -i ${WAN_IFACE} -p tcp --dport 82 -j DNAT
> --to 192.168.1.2:80
> iptables -A FORWARD -p tcp -d 192.168.1.2 --dport 80 -j ACCEPT
> ```
>
> How can I forward inside a folder like
> 192.168.1.1:82 forwarded to 192.168.1.2:80/mysite
>
> I have modified the rules as [ --to 192.168.1.2:80/mysite ]
> but no success. Am I missing anything ?
>

Yes, you have missed quite a bit about how networking works. You just
can't do that with port forwarding or packet filtering. You have to do
that URL rewrite to the "folder" in your application serving on port 80,
probably Apache. iptables does not understand anything about folders.

> 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/e5dd1360a49841384c9fe9bb678abcd3.squir...@jarif.iki.fi



Re: [Bulk] Re: ssh error - Write failed: Broken pipe

2012-05-24 Thread elbbit
On 23/05/12 22:45, Gary Dale wrote:
> On 23/05/12 04:53 PM, elbbit wrote:
>> On your server put this line in your sshd_config after "Port 22":
>>
>> Port 443
>>
>> Do a "service ssh restart" or "/etc/init.d/ssh restart".  Connect using:
>>
>> ssh -p 443 user@host
>>
> That has the same issue as the keepalive - it presumes that the
> connection is at fault when the problem only seems to happen when I'm
> doing large amounts of data movement on the server (NOT over the
> connection).

Are you saying that if you log in by SSH then issue a command like

cp large_file4gb large_copy4gb

that even though the command produces no output you then get broken
pipe?  If so the connection is likely being terminated because it's idle
(check your internet provider).  The keepalive should prevent this.

If you log in and do a

ls -R /

do you get the output or broken pipe?  If you get broken pipe before the
command completes this again suggests (to me) that you are subject to
packet inspection.

For me, putting sshd on different ports helps here like ports 22, 81,
443, 2022, 3389 and 20222.  Some 3G providers here (UK) block port 22
altogether. One works best on port 81, on others 443 seems to work most
of the time.  Some network admins prefer to administer Windows boxes and
(thus) leave port 3389 untouched. YMMV.

Either way, in my experience broken pipe is usually a network problem.


-- 
elb...@gmail.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/4fbdf036.7080...@gmail.com



Re: How to port forward inside a folder ?

2012-05-24 Thread Stan Hoeppner
On 5/24/2012 3:11 AM, J. Bakshi wrote:
> Hello,
> 
> iptables port forwarding is running fine here.
> 
> 192.168.1.1:82 forwarded to 192.168.1.2:80
> 
> ``
> # for 82 > 80 of 192.168.1.2
> iptables -A INPUT -p tcp -m tcp --dport 82 -j ACCEPT
> iptables -A PREROUTING -t nat -i ${LAN_IFACE} -p tcp --dport 82 -j DNAT --to 
> 192.168.1.2:80
> iptables -A FORWARD -p tcp --dport 82 -i ${LAN_IFACE} -j ACCEPT
> 
> iptables -A PREROUTING -t nat -i ${WAN_IFACE} -p tcp --dport 82 -j DNAT --to 
> 192.168.1.2:80
> iptables -A FORWARD -p tcp -d 192.168.1.2 --dport 80 -j ACCEPT
> ```
> 
> How can I forward inside a folder like
> 192.168.1.1:82 forwarded to 192.168.1.2:80/mysite

You can't do this with iptables.

> I have modified the rules as [ --to 192.168.1.2:80/mysite ]
> but no success. Am I missing anything ?

You're confusing the application layer(7) with the network layer (3).
iptables works at layer 3 and is thus not aware of filesystem folders or
web directories.

You'll need to use http redirection to accomplish what you apparently
desire above, either with an http proxy or http server.

-- 
Stan


-- 
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/4fbdf163.8030...@hardwarefreak.com



Re: FS rights error with Samba share

2012-05-24 Thread keith
On Wed, 23 May 2012 22:14:08 +0500
Muhammad Yousuf Khan  wrote:

> Finally Solved..
> 
> !!!  it is sooo relaxing 
> 
>  i have been working on this for 2 days. even i knew it too but mind
> was not going that way. but now i will remember it till death :) as i
> have over-googled this matter.
> 
> Thanks a million :),
> 

Don't forget to write it down so that you can find it in 5(?) years time.   :)



-- 
keith 


-- 
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/20120524093052.4d4b5c5c17bf35536d364...@gmail.com



Re: How to port forward inside a folder ?

2012-05-24 Thread J. Bakshi
On Thu, 24 May 2012 11:23:47 +0300
"Jari Fredriksson"  wrote:

> On Thu, May 24, 2012 11:11, J. Bakshi wrote:
> > Hello,
> >
> > iptables port forwarding is running fine here.
> >
> > 192.168.1.1:82 forwarded to 192.168.1.2:80
> >
> > ``
> > # for 82 > 80 of 192.168.1.2
> > iptables -A INPUT -p tcp -m tcp --dport 82 -j ACCEPT
> > iptables -A PREROUTING -t nat -i ${LAN_IFACE} -p tcp --dport 82 -j DNAT
> > --to 192.168.1.2:80
> > iptables -A FORWARD -p tcp --dport 82 -i ${LAN_IFACE} -j ACCEPT
> >
> > iptables -A PREROUTING -t nat -i ${WAN_IFACE} -p tcp --dport 82 -j DNAT
> > --to 192.168.1.2:80
> > iptables -A FORWARD -p tcp -d 192.168.1.2 --dport 80 -j ACCEPT
> > ```
> >
> > How can I forward inside a folder like
> > 192.168.1.1:82 forwarded to 192.168.1.2:80/mysite
> >
> > I have modified the rules as [ --to 192.168.1.2:80/mysite ]
> > but no success. Am I missing anything ?
> >
> 
> Yes, you have missed quite a bit about how networking works. You just
> can't do that with port forwarding or packet filtering. You have to do
> that URL rewrite to the "folder" in your application serving on port 80,
> probably Apache. iptables does not understand anything about folders.
> 

Ok, thanks.
Then I'll do it by rewrite through .htaccess


-- 
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/20120524140236.16fa5...@shiva.selfip.org



Re: How to port forward inside a folder ?

2012-05-24 Thread Lars Noodén
On 5/24/12 11:32 AM, J. Bakshi wrote:
> Ok, thanks.
> Then I'll do it by rewrite through .htaccess

If you have access to the web server's configuration file, put your
changes there instead.  It is better to have everything in the same
place.  Also, if you haven't already, take a look at the Rewrite Guide:
https://httpd.apache.org/docs/2.2/rewrite/

Regards
/Lars


-- 
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/4fbe0379.5010...@gmail.com



Re: Re: (Debian 2.6.32-45) problems using ipv6/ip6tables #2

2012-05-24 Thread g.spellauge
thanks, bu what i do not understand is the fact, that  v6-traffic (even
the responses to http-requests) is completely blocked after successfully
receiving a few echo-replys?

if i modify

  ${IPT} -A INPUT  -i ${INE_IFACE} -m state --state
ESTABLISHED,RELATED -j ACCEPT
  ${IPT} -A INPUT  -i ${INE_IFACE} -p
icmpv6-j ACCEPT --match limit --limit 10/minute

everthing works fine.



-- 
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/4fbe01c1.9040...@softing.com



Re: How to port forward inside a folder ?

2012-05-24 Thread J. Bakshi
On Thu, 24 May 2012 12:46:33 +0300
Lars Noodén  wrote:

> On 5/24/12 11:32 AM, J. Bakshi wrote:
> > Ok, thanks.
> > Then I'll do it by rewrite through .htaccess
> 
> If you have access to the web server's configuration file, put your
> changes there instead.  It is better to have everything in the same
> place.  Also, if you haven't already, take a look at the Rewrite Guide:
> https://httpd.apache.org/docs/2.2/rewrite/
> 
> Regards
> /Lars
> 
> 
Yes, I have already use .htaccess to do this with rewrite.

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/20120524153323.7200c...@shiva.selfip.org



Re: ssh error - Write failed: Broken pipe

2012-05-24 Thread Karl E. Jorgensen
Hi - entering this thread late...

On Wed, May 23, 2012 at 07:46:29PM +0100, Gary Dale wrote:
> I'm connecting at various times to different Debian/Squeeze servers from 
> my Debian/Wheezy workstation using ssh. No matter which server I connect 
> to, I find that if I move a lot of data on the remote server, I get 
> kicked out of my ssh session with a "Write failed: Broken pipe" error.

I've seen that before and it took us ages to narrow down - in our case
(admittedly your case may be different), it was the combination of
network interface MTU and packet fragmentation.  Reducing the MTU on
our local network interface (on the server which runs the SSH client)
to 1450 (rather than the default 1500) solved it consistently:

   sudo ifconfig eth0 mtu 1450

(to make the effect permanent, tweak /etc/network/interfaces and/or
network manager config)

Unfortunately we never found the root cause of the problem: Packet
fragmentation is normally handled transparently by the TCP layer and
there were no VPNs or VLANs involved.

> This doesn't happen immediately. It usually occurs after some period of 
> time, during which time the cp or rsync command is moving data from one 
> location to another (gigabytes typically). So far as I can tell, the 
> operation finished successfully.

Interesting.

> 
> This is repeatable 100% of the time.
> 
> typical commands:
> cp /tmp/backups/* /media/dvd
> rsync /tmp/backups/file /media/dvd/file

Hm. These commands would not use the network - unless /tmp or /media
happen to be NFS mounted, ISCSI-backed or similar - and neither
involves ssh...

> I have even encountered it with
> if cmp /media/backupmedia/backup-set /home/shares/backup/backup-set; 
> then echo "OK"; fi

Hm.. this example does not involve ssh at all!?  And (apparantly) not
network either?

> although this sometimes works. I think it depends on the exact size of 
> the file. The cmp operation seems to not trigger it as fast as rsync or cp.
> 
> If I'm not moving large amounts of data on the server, the ssh session 
> is stable and will sit for as long as I want. I only get disconnected 
> when I'm moving data around on the remote machine.

That is consistent with the symptoms we saw before decreasing the MTU.

Hope this helps
-- 
Karl E. Jorgensen
IT Operations


-- 
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/20120524113910.GQ17862@hawking



Re: ssh error - Write failed: Broken pipe

2012-05-24 Thread Karl E. Jorgensen
On Wed, May 23, 2012 at 08:25:20PM +0100, Gary Dale wrote:
> On 23/05/12 03:07 PM, elbbit wrote:
> > On 23/05/12 19:46, Gary Dale wrote:
> >> This is repeatable 100% of the time.
> > I get this error on my ISP.  I have found they are inspecting the
> > internet packets and terminating if there is too little back-and-forth
> > traffic.  My ISP is a mobile phone network over 3G so they are probably
> > trying to keep the bandwidth for phones only.
> >
> > I do "-o ServerAliveInterval=5" which has my ssh client ping the server
> > every 5 seconds to keep it alive.
> >
> > To summarise, I get rid of broken pipe errors by using this command line
> >
> > ssh -o ServerAliveInterval=5 u...@server.com
> >
> > Hope this helps,
> > elbbit
> I can try it, but as I said, I have a stable connection when I'm not 
> doing anything. I can leave an ssh shell open overnight and it will be 
> there in the morning. It's only when I'm moving bits around on the 
> remote machine that I get disconnected.

ah. I misunderstood your scenario in my previous mail... sorry.

So the ssh breakage is (somehow) triggered by moving bits around on
the remote machine only - not by moving lots of bits through the SSH
connection.

Anything in the logs on the remote machine? these files may contain relevant 
stuff:
 /var/log/syslog
 /var/log/daemon.log
 /var/log/kern.log

.. basically all of them... look for files in /var/log which were
touched around the time (or later) of the problem.

Hope this helps

-- 
Karl E. Jorgensen
IT Operations


-- 
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/20120524114601.GR17862@hawking



Mounting local filesystem failed on boot

2012-05-24 Thread Muhammad Yousuf Khan
i am getting Mounting local filesystem failed on every boot. and the
problem line in fstab is "proc/proc   proc
defaults0   0"

here is my fstab

#
proc/proc   procdefaults0   0
# / was on /dev/sda3 during installation
UUID=42c02fba-5d23-44d6-b510-5967f61809de /   ext3
errors=remount-ro 0   1
# /boot was on /dev/sda1 during installation
UUID=52f78bea-8afd-4bee-a3b9-2498abceb55f /boot   ext3
defaults0   2
# swap was on /dev/sda5 during installation
UUID=6baabb6e-ab2d-4bfc-a21a-05ee8a0af001 noneswapsw
   0   0
#/dev/scd0   /media/cdrom0   udf,iso9660 user,noauto 0   0


the problem line is proc mounting. when i comment this line error disappear..
i haven’t created proc partition during installation. i just created 3
 partitions boot, swap and root
However the error is gone by commenting the line but i am worried how
it going to impact my system
and what this proc mount is for. as i haven’t created it.

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/cagwvfmkl9invbtdl8+a5en8pmefphygvduqhowax14spst3...@mail.gmail.com



Re: Mounting local filesystem failed on boot

2012-05-24 Thread Ralf Mardorf
On Thu, 2012-05-24 at 17:40 +0500, Muhammad Yousuf Khan wrote:
> i am getting Mounting local filesystem failed on every boot. and the
> problem line in fstab is

> proc/proc   procdefaults0   0

This can't be the cause. The line is correct.

> what this proc mount is for. as i haven’t created it.

"The proc file system is a pseudo-file system which is used as an
interface to kernel data structures. It is commonly mounted at /proc." -
http://linux.die.net/man/5/proc

There's an entry in fstab, when /proc is NOT on it's own partition.
You also can try


proc/proc   procnodev,noexec,nosuid 0   0


"dev / nodev
Interpret/do not interpret block special devices on the filesystem.
exec / noexec
exec lets you execute binaries that are on that partition, whereas
noexec does not let you do that. noexec might be useful for a partition
that contains no binaries, like /var, or contains binaries you do not
want to execute on your system, or that cannot even be executed on your
system. Last might be the case of a Windows partition.
suid / nosuid
Permit/Block the operation of suid, and sgid bits." -
http://en.wikipedia.org/wiki/Fstab

Perhaps this prevents against something fishy.

Regards,
Ralf


--
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/1337864550.2247.44.camel@precise



Re: Mounting local filesystem failed on boot

2012-05-24 Thread Muhammad Yousuf Khan
On Thu, May 24, 2012 at 6:02 PM, Ralf Mardorf
 wrote:
> On Thu, 2012-05-24 at 17:40 +0500, Muhammad Yousuf Khan wrote:
>> i am getting Mounting local filesystem failed on every boot. and the
>> problem line in fstab is
>
>> proc            /proc           proc    defaults        0       0
>
> This can't be the cause. The line is correct.
>
>> what this proc mount is for. as i haven’t created it.
>
> "The proc file system is a pseudo-file system which is used as an
> interface to kernel data structures. It is commonly mounted at /proc." -
> http://linux.die.net/man/5/proc
>
> There's an entry in fstab, when /proc is NOT on it's own partition.
> You also can try
>
>
> proc            /proc           proc    nodev,noexec,nosuid 0       0

ok, after changing it, still facing the same error. however my system
is running formal. beside from this failed error.

>
>
> "dev / nodev
>    Interpret/do not interpret block special devices on the filesystem.
> exec / noexec
>    exec lets you execute binaries that are on that partition, whereas
> noexec does not let you do that. noexec might be useful for a partition
> that contains no binaries, like /var, or contains binaries you do not
> want to execute on your system, or that cannot even be executed on your
> system. Last might be the case of a Windows partition.
> suid / nosuid
>    Permit/Block the operation of suid, and sgid bits." -
> http://en.wikipedia.org/wiki/Fstab
>
> Perhaps this prevents against something fishy.
>
> Regards,
> Ralf
>
>
> --
> 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/1337864550.2247.44.camel@precise
>


--
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/CAGWVfM=_Nhsi43=+kGCybD1S_+CYgu4VRQ=pikoswjjjcsq...@mail.gmail.com



Re: Mounting local filesystem failed on boot

2012-05-24 Thread Muhammad Yousuf Khan
On Thu, May 24, 2012 at 6:28 PM, Muhammad Yousuf Khan  wrote:
> On Thu, May 24, 2012 at 6:02 PM, Ralf Mardorf
>  wrote:
>> On Thu, 2012-05-24 at 17:40 +0500, Muhammad Yousuf Khan wrote:
>>> i am getting Mounting local filesystem failed on every boot. and the
>>> problem line in fstab is
>>
>>> proc            /proc           proc    defaults        0       0
>>
>> This can't be the cause. The line is correct.
>>
>>> what this proc mount is for. as i haven’t created it.
>>
>> "The proc file system is a pseudo-file system which is used as an
>> interface to kernel data structures. It is commonly mounted at /proc." -
>> http://linux.die.net/man/5/proc
>>
>> There's an entry in fstab, when /proc is NOT on it's own partition.
>> You also can try
>>
>>
>> proc            /proc           proc    nodev,noexec,nosuid 0       0
>
> ok, after changing it, still facing the same error. however my system
> is running formal. beside from this failed error.

sorry for the typo, i mean to say "my system is running normal.
instead of this failed error"


>
>>
>>
>> "dev / nodev
>>    Interpret/do not interpret block special devices on the filesystem.
>> exec / noexec
>>    exec lets you execute binaries that are on that partition, whereas
>> noexec does not let you do that. noexec might be useful for a partition
>> that contains no binaries, like /var, or contains binaries you do not
>> want to execute on your system, or that cannot even be executed on your
>> system. Last might be the case of a Windows partition.
>> suid / nosuid
>>    Permit/Block the operation of suid, and sgid bits." -
>> http://en.wikipedia.org/wiki/Fstab
>>
>> Perhaps this prevents against something fishy.
>>
>> Regards,
>> Ralf
>>
>>
>> --
>> 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/1337864550.2247.44.camel@precise
>>


--
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/CAGWVfM=jgL6yziQtq7nV28h4zNpYcPv3+vLiaJrarfUGYƒa...@mail.gmail.com



Re: wheezy: non-free latex fonts no longer work

2012-05-24 Thread Johannes Wiedersich
Thanks for your help!

On 23/05/12 18:55, Camaleón wrote:
> On Tue, 22 May 2012 22:40:56 +0200, Johannes Wiedersich wrote:
> According to this bug report (message #30) the script is not available 
> anymore:
>
> http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=664646
Yes, that's the problem:
1. the installed font was removed / disconfigured during the upgrade.
2. the script to reinstall the font is gone. :-(
>> How could I install or reactivate the optima font?
> I'd start by reading the mentioned "missfont.log" maybe there's something 
> of usefulness there :-?
Well, probably not:

$ cat missfont.log
mktexpk --mfmode / --bdpi 600 --mag 1+0/600 --dpi 600 uopr8r
mktexpk --mfmode / --bdpi 600 --mag 0+456/600 --dpi 456 uopb8r

Cheers,
Johannes


-- 
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/4fbe3a11.8050...@aktendiener.de



Calibre No Longer Loads, Segfault

2012-05-24 Thread Thomas H. George
Ran a dist-upgrade, Wheezy, and now starting Calibre fails with a
segmentation fault.

Tom


-- 
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/20120524141759.ga8...@tomgeorge.info



Re: [r...@verizon.net: Re: GCC - Best way to build cross compiler?]

2012-05-24 Thread rbmj

On 05/21/2012 06:20 AM, Chris Bannister wrote:

Hi, rbmj,

Please keep messages on list.
Read:
http://www.debian.org/MailingLists/

If you are not subscribed, you will not rec replies to your queries!
Weird, I know, butI thought I'd seen emails from you before hence
thought you were subscribed.



Sorry about that.  I wasn't paying attention and hit reply instead of 
reply list.  It's people like me that convince some people to munge 
reply-tos :-D.



If debian-embedd is the wrong list, then please let the list know so
that, hopefully, the mistake will only be made once.


I looked at the mailing list list, and debian-embedded says its for 
"Debian on embedded systems".  Now, the cross compiler I'm creating 
doesn't target Debian, but VxWorks, so my gut reaction is that it would 
*not* be the proper mailing list.  But I don't know the community over 
there.  It does mention that there is a debian-gcc list, but that says 
its for gcc maintainers.  Now, those may be the people most 
knowledgeable about my question, but at the same time, it might be 
considered off topic there.


Sorry again,

--
rbmj



--
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/4fbe35b7@verizon.net



Re: Calibre No Longer Loads, Segfault

2012-05-24 Thread Claudius Hubig
Hello Thomas,

"Thomas H. George"  wrote:
> Ran a dist-upgrade, Wheezy, and now starting Calibre fails with a
> segmentation fault.

Probably http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=668314, try
to install the version from unstable.

Best regards,

Claudius
-- 
The absurd is the essential concept and the first truth.
-- A. Camus
http://chubig.net  telnet nightfall.org 4242


signature.asc
Description: PGP signature


can't seem to find xorg.conf

2012-05-24 Thread Michael Fothergill
Dear folks,

Isn't xorg.conf supposed to be in /etc/X11?

I recently reinstalled squeeze on my new AMD64 box and I noticed that
the login environment in gnome looks grungier than normal - I didn't
get the cute login box and impressive pictures of the earth taken from
space followed by shots of parts of the galaxy now and again...

Gnome itself seems to be OK.

I thought maybe gdm or xorg hadn't completely installed or something
but synaptic thinks they are installed and reinstalling them didn't
seem to change much.

X is not sussing out my HW191D monitor resolution as it used to.

So I googled this and was reminded that I needed to edit the
/etc/X11/xorg.conf file and put in the correct resolution which is
1440 x 900 and try again.

So I fired up a root terminal and did the following:



root@Vigor15:/home/mikef# cd /etc/X11
root@Vigor15:/etc/X11# ls -l
total 76
drwxr-xr-x 2 root root  4096 May 23 14:17 app-defaults
-rw-r--r-- 1 root root15 May 23 14:17 default-display-manager
drwxr-xr-x 6 root root  4096 May 23 14:16 fonts
-rw-r--r-- 1 root root 17394 Sep 29  2009 rgb.txt
drwxr-xr-x 2 root root  4096 May 23 17:56 twm
lrwxrwxrwx 1 root root13 May 23 14:18 X -> /usr/bin/Xorg
drwxr-xr-x 2 root root  4096 May 23 14:17 xinit
drwxr-xr-x 2 root root  4096 Nov 23  2010 xkb
-rwxr-xr-x 1 root root   709 Oct 13  2010 Xreset
drwxr-xr-x 2 root root  4096 May 23 14:13 Xreset.d
drwxr-xr-x 2 root root  4096 May 23 14:13 Xresources
-rwxr-xr-x 1 root root  3517 Apr  8  2009 Xsession
drwxr-xr-x 2 root root  4096 May 23 14:17 Xsession.d
-rw-r--r-- 1 root root   265 Jan 16  2009 Xsession.options
-rw-r--r-- 1 root root13 Nov 25  2009 XvMCConfig
-rw--- 1 root root   601 May 23 14:13 Xwrapper.config
root@Vigor15:/etc/X11# ^C

I can't see xorg.conf in there

This is a new installation.   Maybe I'm looking with my eyes shut.

Suggestions welcome.

Regards

Michael Fothergill


-- 
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/CANc=sd0nywipha1g9dwjebhu5g9x71q6yenjtognbes40+a...@mail.gmail.com



Re: can't seem to find xorg.conf

2012-05-24 Thread Indulekha
On Thu, May 24, 2012 at 03:38:05PM +0100, Michael Fothergill wrote:
> Dear folks,
> 
> Isn't xorg.conf supposed to be in /etc/X11?
> 

/usr/share/X11 is the new location.

-- 
❤ ♫ ❤ ♫ ❤ ♫ ❤   
 Indulekha 


-- 
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/20120524144228.GA5146@radhesyama



question

2012-05-24 Thread fred_region971
Bonjour,
Puis-je tester ou installer debian sur un macbook pro (intel) de 2008 ?
merci

-- 
http://www.fastmail.fm - The professional email service


-- 
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/1337868973.31834.140661080139513.195b9...@webmail.messagingengine.com



RE: can't seem to find xorg.conf

2012-05-24 Thread Jeffrey Langerak
However, if a xorg.conf file is created and placed in /etc/X11/, the configfile 
will be loaded from there.

Verzonden met mijn Windows Phone

Van: Indulekha
Verzonden: 24-5-2012 16:42
Aan: debian-user@lists.debian.org
Onderwerp: Re: can't seem to find xorg.conf

On Thu, May 24, 2012 at 03:38:05PM +0100, Michael Fothergill wrote:
> Dear folks,
>
> Isn't xorg.conf supposed to be in /etc/X11?
>

/usr/share/X11 is the new location.

--
❤ ♫ ❤ ♫ ❤ ♫ ❤
 Indulekha


--
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/20120524144228.GA5146@radhesyama



Re: mp280

2012-05-24 Thread Camaleón
On Wed, 23 May 2012 20:30:56 +0200, steef wrote:

> Camaleón wrote:
>> On Wed, 23 May 2012 08:54:54 +0200, steef wrote:
>>
>>> just a small question: has somebody an experience with the 'canon
>>> pixma mp 280 printer' under debian; (cups) ? a very cheap and compact
>>> printer so i am told.
>>
>> Google returns some hits, for example:
>>
>> http://ubuntuforums.org/showthread.php?t=1582497
>>
>> I always avoid Canon devices as much as I can but if there's no
>> option...

> dear camaleon,
> 
> thanks for your answer. i found and read it allready.

Ah, fine :-)

It would be great if you can update this thread with your final results 
(worning/non-working) so others users can also benefit from them.

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/jplhk5$a15$9...@dough.gmane.org



dhclient does not recognize config file

2012-05-24 Thread Paul Zimmerman
dhclient in Squeeze pays no attention to the config file at 
/etc/dhcp/dhclient.conf

All I need it to do is prepend the local host to resolv.conf so dns caching 
will work. 

How do you get dhclient to do anything other than the default behavior?


-- 
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/1337870001.52679.yahoomail...@web162602.mail.bf1.yahoo.com



Re: mp280

2012-05-24 Thread Camaleón
On Wed, 23 May 2012 15:15:46 -0400, Celejar wrote:

> On Wed, 23 May 2012 17:11:58 + (UTC) Camaleón 
> wrote:

(...)

>> I always avoid Canon devices as much as I can but if there's no
>> option...
> 
> I'm not very happy with my MP-240:
> 
> 1) [Binary only :(] drivers don't install cleanly on my amd64 system,
> and hacks / tweaks (don't remember exact details) were necessary.
> 
> 2) Drivers don't expose the printer's full functionality - incredibly
> annoyingly, there's apparently no way to direct the thing to print b/w
> instead of color (which is easily done with this same machine when
> driven from a Windows box).
> 
> 3) Printing is often poor quality and unreliable: paper jams, extra
> sheets feeding through, paper jams, text not getting printed or printed
> barely legibly, as if faded. Some of this could just be the age of the
> machine or ink cartridges, but I'm pretty sure the other user of the
> machine, with a Windows box, does not see this.

Yes, that's the kind of things I have read from Canon users, at least 
when you want to get the device working in Linux and despite the good or 
bad quality of their products (which I won't comment about) the worst IMO 
is the lack/bad support from this manufacturer to Linux and for that 
reason it has been completely ditched from my list of possible candidates 
when I look for new hardware ;-(

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/jplhvd$a15$1...@dough.gmane.org



Re: Mounting local filesystem failed on boot

2012-05-24 Thread Muhammad Yousuf Khan
On Thu, May 24, 2012 at 6:33 PM, Muhammad Yousuf Khan  wrote:
> On Thu, May 24, 2012 at 6:28 PM, Muhammad Yousuf Khan  
> wrote:
>> On Thu, May 24, 2012 at 6:02 PM, Ralf Mardorf
>>  wrote:
>>> On Thu, 2012-05-24 at 17:40 +0500, Muhammad Yousuf Khan wrote:
 i am getting Mounting local filesystem failed on every boot. and the
 problem line in fstab is
>>>
 proc            /proc           proc    defaults        0       0
>>>
>>> This can't be the cause. The line is correct.
>>>
 what this proc mount is for. as i haven’t created it.
>>>
>>> "The proc file system is a pseudo-file system which is used as an
>>> interface to kernel data structures. It is commonly mounted at /proc." -
>>> http://linux.die.net/man/5/proc
>>>
>>> There's an entry in fstab, when /proc is NOT on it's own partition.
>>> You also can try
>>>
>>>
>>> proc            /proc           proc    nodev,noexec,nosuid 0       0

Kindly check this also
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=425199
 there is some thing with proc mount

>>
>> ok, after changing it, still facing the same error. however my system
>> is running formal. beside from this failed error.
>
> sorry for the typo, i mean to say "my system is running normal.
> instead of this failed error"
>
>
>>
>>>
>>>
>>> "dev / nodev
>>>    Interpret/do not interpret block special devices on the filesystem.
>>> exec / noexec
>>>    exec lets you execute binaries that are on that partition, whereas
>>> noexec does not let you do that. noexec might be useful for a partition
>>> that contains no binaries, like /var, or contains binaries you do not
>>> want to execute on your system, or that cannot even be executed on your
>>> system. Last might be the case of a Windows partition.
>>> suid / nosuid
>>>    Permit/Block the operation of suid, and sgid bits." -
>>> http://en.wikipedia.org/wiki/Fstab
>>>
>>> Perhaps this prevents against something fishy.
>>>
>>> Regards,
>>> Ralf
>>>
>>>
>>> --
>>> 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/1337864550.2247.44.camel@precise
>>>


--
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/CAGWVfM=tadsl88z8nbgdz97qthhlhaicsye6-+mwkod645p...@mail.gmail.com



Re: can't seem to find xorg.conf

2012-05-24 Thread Brian
On Thu 24 May 2012 at 15:38:05 +0100, Michael Fothergill wrote:

> Isn't xorg.conf supposed to be in /etc/X11?

No. Normally, none is required.

[Snip]

> I can't see xorg.conf in there
> 
> This is a new installation.   Maybe I'm looking with my eyes shut.

No.

> Suggestions welcome.

For help with your monitor issue post the output of 'lspci' and the
contents of /var/log/Xorg.0.log, please. 


-- 
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/20120524145829.GX2847@desktop



Re: aptitude changelog gives "You must put some 'source' URIs in your sources.list"

2012-05-24 Thread Camaleón
On Wed, 23 May 2012 20:59:43 +0200, Arnt Karlsen wrote:

> On Wed, 23 May 2012 17:41:06 + (UTC), Camaleón wrote in message
> :

>> > ..that probably depends on the usefulness of your definition of
>> > "$subject". ;o)
>> 
>> There's no much room for guessing:
> 
> ..no? ;o)

Sure not. What's what you understand?

>> $subject is the "subject" of this
>> thread which -regardless its usefulness- states:
>> 
>> ***
>> Re: aptitude changelog gives "You must put some 'source' URIs in your
>> sources.list"
>> ***
> 
> ..ok, _that's_ your definition. ;o)

"My definition"? No, it's what it can be read in the subject.

>> Bug or feature?
>> 
>> Does "aptitude changelog" need the corresponding "deb-src" entry in
>> order to avoid the error message ("E: You must put some 'source' URIs
>> in your sources.list")?
> 
> ..IMO both, 1.) a feature, because it does this thing differently than
> apt-get, which offers a viable workaround when a bug hits it, and 2.) a
> but, because aptitude's error message suggestion does not work her,
> because of a "second bug".  We've covered this, no need to get too dizzy
> looping this bird over and over again.

So you neither know. Okay, then please don't say _there's_ a bug ;-)

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/jplie1$a15$1...@dough.gmane.org



Re: can't seem to find xorg.conf

2012-05-24 Thread Brian
On Thu 24 May 2012 at 09:42:28 -0500, Indulekha wrote:

> On Thu, May 24, 2012 at 03:38:05PM +0100, Michael Fothergill wrote:
> > Dear folks,
> > 
> > Isn't xorg.conf supposed to be in /etc/X11?
> > 
> 
> /usr/share/X11 is the new location.

Are you sure of this?


-- 
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/20120524150407.GY2847@desktop



Re: FS rights error with Samba share

2012-05-24 Thread Camaleón
On Thu, 24 May 2012 09:30:52 +0100, keith wrote:

> On Wed, 23 May 2012 22:14:08 +0500
> Muhammad Yousuf Khan  wrote:
> 
>> Finally Solved..
>> 
>> !!!  it is sooo relaxing 
>> 
>>  i have been working on this for 2 days. even i knew it too but mind
>> was not going that way. but now i will remember it till death :) as i
>> have over-googled this matter.
>> 
>> Thanks a million :),
>> 
>> 
> Don't forget to write it down so that you can find it in 5(?) years
> time.   :)

Nah... that never works. 

By that time the samba team will have completely rewrote their smb stack 
which will be radically different from the current implementation so the 
tip you have saved as a treasure will be of no effect and you will be 
forced to ask all over again, an again, and again... that's known as "the 
curse of the sysadmin secure-saved-tip loop".

(just joking ;-P)

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/jplj29$a15$1...@dough.gmane.org



Re: Mounting local filesystem failed on boot

2012-05-24 Thread Brian
On Thu 24 May 2012 at 19:57:32 +0500, Muhammad Yousuf Khan wrote:

> Kindly check this also
> http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=425199
>  there is some thing with proc mount

An interesting bug report. It appears to me you have grounds for adding
to it. First compare what is on your system with the what is mentioned
in the report. From my reading of what is said your system should not be
impacted by commenting out the proc line in fstab.



-- 
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/20120524152210.GZ2847@desktop



Re: ssh error - Write failed: Broken pipe

2012-05-24 Thread Chris Davies
Karl E. Jorgensen  wrote:
> I've seen that before and it took us ages to narrow down - in our case
> (admittedly your case may be different), it was the combination of
> network interface MTU and packet fragmentation.

I was just going to suggest exactly the same thing. And it took us ages
to track down, too!

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/a6v199x2pt@news.roaima.co.uk



Re: why does control-4 generate SIGQUIT in X?

2012-05-24 Thread Chris Davies
Chris Bannister  wrote:
> start an xterm, type 
> stty quit ""
> stty -a shows quit as ""

Exactly my point. So ^\ no longer works at all (in that xterm).
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/10v199x2pt@news.roaima.co.uk



Re: wheezy: non-free latex fonts no longer work

2012-05-24 Thread Camaleón
On Thu, 24 May 2012 15:39:29 +0200, Johannes Wiedersich wrote:

> Thanks for your help!
> 
> On 23/05/12 18:55, Camaleón wrote:
>> On Tue, 22 May 2012 22:40:56 +0200, Johannes Wiedersich wrote:
>> According to this bug report (message #30) the script is not available
>> anymore:
>>
>> http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=664646

> Yes, that's the problem:
> 1. the installed font was removed / disconfigured during the upgrade. 

By reading the changelog of the package:

***
http://packages.debian.org/changelogs/pool/main/t/texlive-extra/texlive-extra_2011.20120424-1/changelog

* replace otf/ttf fonts with links to the files in the
respective Debian package, depend on that package
***

It could be that commit what misconfigured the font :-?

> 2. the script to reinstall the font is gone. :-(

That seems to be on purpose so there's must be a new way for doing the 
same with the new version, though I think this should be documented. Is 
there something at the docs that explains how to do this? If not, you can 
report a documentation bug.

>>> How could I install or reactivate the optima font?
>> I'd start by reading the mentioned "missfont.log" maybe there's
>> something of usefulness there :-?

> Well, probably not:
> 
> $ cat missfont.log
> mktexpk --mfmode / --bdpi 600 --mag 1+0/600 --dpi 600 uopr8r 
> mktexpk --mfmode / --bdpi 600 --mag 0+456/600 --dpi 456 uopb8r

Only the run commands? Mmm... let's back to the original error then:

***
mktexpk: don't know how to create bitmap font for uopb8r.
mktexpk: perhaps uopb8r is missing from the map file.
***

Check if what it says is true. Is the font "uopb8r" available at the 
mentioned map file?

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/jplke5$a15$1...@dough.gmane.org



Re: Kernel Oops when closing the lid on Alienware M11xR3 laptop

2012-05-24 Thread Camaleón
On Wed, 23 May 2012 21:42:45 +0100, elbbit wrote:

> Update...
> 
> With i915 blacklisted or not the problem continues:
> 
> Full gnome -> close lid -> kernel oops Compiz -> close lid -> kernel
> oops
> Bare xorg (just an xterm) -> close lid -> kernel oops

(...)

It seems the OP has already opened a bug report for the issue (@Debian 
BTS #674243), maybe you can track the development of the problem from 
there and also consider in adding your own comments/experience at the 
Freedesktop bug where it has been forwarded.

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/jplko0$a15$1...@dough.gmane.org



Re: dhclient does not recognize config file

2012-05-24 Thread Karl E. Jorgensen
Hi

On Thu, May 24, 2012 at 03:33:21PM +0100, Paul Zimmerman wrote:
> dhclient in Squeeze pays no attention to the config file at 
> /etc/dhcp/dhclient.conf

How about /etc/dhcp3/dhclient.conf ?


-- 
Karl E. Jorgensen
IT Operations


-- 
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/20120524154453.GV17862@hawking



Re: can't seem to find xorg.conf

2012-05-24 Thread Camaleón
On Thu, 24 May 2012 15:38:05 +0100, Michael Fothergill wrote:

> Isn't xorg.conf supposed to be in /etc/X11?

No... since a bunch of years :-)

> I recently reinstalled squeeze on my new AMD64 box and I noticed that
> the login environment in gnome looks grungier than normal - I didn't get
> the cute login box and impressive pictures of the earth taken from space
> followed by shots of parts of the galaxy now and again...

Describe "grungier" (or better yet, upload a snapshot), although that 
looks somehow unrelated to xorg.
 
> Gnome itself seems to be OK.
> 
> I thought maybe gdm or xorg hadn't completely installed or something but
> synaptic thinks they are installed and reinstalling them didn't seem to
> change much.
> 
> X is not sussing out my HW191D monitor resolution as it used to.

Run "xrandr -q" and put here the output.

> So I googled this and was reminded that I needed to edit the
> /etc/X11/xorg.conf file and put in the correct resolution which is 1440
> x 900 and try again.
> 
> So I fired up a root terminal and did the following:
> 
> 
> 
> root@Vigor15:/home/mikef# cd /etc/X11 
> root@Vigor15:/etc/X11# ls -l

(...)

> I can't see xorg.conf in there
> 
> This is a new installation.   Maybe I'm looking with my eyes shut.

If you want to correct any aspect of your screen settings, you can use 
xrandr or the GNOME display applet instead.

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/jplluc$a15$1...@dough.gmane.org



Re: question

2012-05-24 Thread Richard Owlett

fred_region...@fastmail.fm wrote:

Bonjour,
Puis-je tester ou installer debian sur un macbook pro (intel) de 2008 ?
merci



Yes.

References in English:
   http://wiki.debian.org/MacBookPro
   http://www.google.com/search?q=debian+macbook+pro+intel

Reference in French:
  http://www.debian.org/international/French.fr.html

P.S. Caution there are those on this list who believe 
English is the only real language ;<




Oui.
Références en anglais:
   http://wiki.debian.org/MacBookPro
   http://www.google.com/search?q=debian+macbook+pro+intel

Référence en français:
   http://www.debian.org/international/French.fr.html

P.S. L'attention là sont ceux sur cette liste qui croient 
que l'anglais est la seule vraie langue  ;<


Translation courtesy http://babelfish.yahoo.com/translate_txt .
My high school French of >50 years ago is too rusty. HTH



--
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/4fbe5d10.2090...@cloud85.net



Re: mail not sending message

2012-05-24 Thread Camaleón
On Wed, 23 May 2012 15:36:49 -0700, Chris Evans wrote:

> I am having trouble getting mail to send the message I attach the script
> below

(...)

> mail -s "$SUBJECT" -t "$EMAIL" < $EMAILMESSAGE 

Run the command manually and check for the output.

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/jplmr6$a15$1...@dough.gmane.org



re:10.1" nomal,B156XW02 V.6 are available

2012-05-24 Thread Aimee Luo
Dear my customer,

Good day!

10.1" normal and 15.6" LED are available. pls note.  do you want offer,pls 
contact me by email or skype:aimee_luo or MSN:shengru...@hotmail.com .

15.6"AUOB156XW02 V.61366(RGB)×768 Glossy LED 40pin10.1"ChimeiBT101WI01 
V.01024(RGB)×600 Glossy LED 40pin
---
  Aimee Luo
shengrui HK Shenzhen Shengrui Trading Co., Ltd.T: 0086 0755 83341623 | F: 0086 
0755 83975681 |MP:0086 0 13691702990 E: sa...@shengruihk.com  skype:aimee_luo   
MSN:shengru...@hotmail.comw: http://www.shengruihk.com Products Showroom on 
Alibaba.com



乐享话费2400,35Phone购机送不停! 了解更多

Re: Verifying integrity of .deb file

2012-05-24 Thread Uttam
Claudius Hubig  chubig.net> writes:

[snip]

> Do you want to verify the downloaded .deb or do you want to verify
> the content on your machine? The latter can be done with debsums, as
> you mentioned. If setting up a repository is not a good idea for you
> (for whatever reasons), you might want to try dpkg-sig which lets you
> sign and verify package signatures outside of repositories.
> 

Hello,

I am using debsums right now to check the integrity of the installed
files. However, it would be nice to verify the deb itself. I looked at
*dpkg-sig* and I think it might do the job. However, I only would like
to verify the hash and not the gpg signature of the deb file. Do you
know if this is possible with dpkg-sig? I will play around with it
tonight.

Thanks,
Amit


-- 
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/loom.20120524t182746-...@post.gmane.org



re:10.1" nomal,B156XW02 V.6 are available

2012-05-24 Thread Aimee Luo
Dear my customer,

Good day!

10.1" normal and 15.6" LED are available. pls note.  do you want offer,pls 
contact me by email or skype:aimee_luo or MSN:shengru...@hotmail.com .

15.6"AUOB156XW02 V.61366(RGB)×768 Glossy LED 40pin10.1"ChimeiBT101IW01 
V.01024(RGB)×600 Glossy LED 40pin

Waiting!

---
  Aimee Luo
shengrui HK Shenzhen Shengrui Trading Co., Ltd.T: 0086 0755 83341623 | F: 0086 
0755 83975681 |MP:0086 0 13691702990 E: sa...@shengruihk.com  skype:aimee_luo   
MSN:shengru...@hotmail.comw: http://www.shengruihk.com Products Showroom on 
Alibaba.com



公司的发展,客户的维系,少不了35CRM。 免费试用 

Re: FS rights error with Samba share

2012-05-24 Thread Muhammad Yousuf Khan
On Thu, May 24, 2012 at 8:11 PM, Camaleón  wrote:
> On Thu, 24 May 2012 09:30:52 +0100, keith wrote:
>
>> On Wed, 23 May 2012 22:14:08 +0500
>> Muhammad Yousuf Khan  wrote:
>>
>>> Finally Solved..
>>>
>>> !!!  it is sooo relaxing 
>>>
>>>  i have been working on this for 2 days. even i knew it too but mind
>>> was not going that way. but now i will remember it till death :) as i
>>> have over-googled this matter.
>>>
>>> Thanks a million :),
>>>
>>>
>> Don't forget to write it down so that you can find it in 5(?) years
>> time.   :)
>
> Nah... that never works.
>
> By that time the samba team will have completely rewrote their smb stack
> which will be radically different from the current implementation so the
> tip you have saved as a treasure will be of no effect and you will be
> forced to ask all over again, an again, and again... that's known as "the
> curse of the sysadmin secure-saved-tip loop".
>
> (just joking ;-P)
>
> Greetings,

this is more then a treasure to me and specially when you even aware
of the problem but you are thinking in a different direction  then
tips like this are life saving   :P

 being system admin its like  " life = 24/7 tension"  you may receive
a call from your bosses at night that VPN down or any support call,
specially when your customers lives in different time zones and at the
top of them all you are the only resource who can resolve the issue.
so i am not tense at all even if it is going to happen what you have
said, then i will be saving another precious tip from some one. may
be, it could  b your tip :P





>
> --
> 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/jplj29$a15$1...@dough.gmane.org
>


--
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/CAGWVfMmd8LMrXYSM4M=n_wozyesybhz8mof7dfvpqmcn7_4...@mail.gmail.com



Re: FS rights error with Samba share

2012-05-24 Thread keith
On Thu, 24 May 2012 15:11:06 + (UTC)
Camaleón  wrote:

> 
> Nah... that never works. 
> 
> By that time the samba team will have completely rewrote their smb stack 
> which will be radically different from the current implementation so the 
> tip you have saved as a treasure will be of no effect and you will be 
> forced to ask all over again, an again, and again... that's known as "the 
> curse of the sysadmin secure-saved-tip loop".
> 
> (just joking ;-P)
> 
> Greetings,
> 
> -- 
> Camaleón
> 

:)
-- 
keith 


--
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/20120524183023.214686299aa59b1480031...@gmail.com



Re: Playing Video - More questions

2012-05-24 Thread Ethan Rosenberg

At 09:43 AM 5/23/2012, Scott Ferguson wrote:

On 23/05/12 13:41, Ethan Rosenberg wrote:
> Dear List -
>
> This might not be the correct address for this problem.  If it is not,
> please direct me appropriately.
>
> I am trying to play a video. The following code is in Index1.html:
>
>  > 
"file:///home/ethan/Gingy/Converted_Files/DSCF0142.mov"

> type="video/mov" >


Should be:-



You'll probably get a mime type unknown error - with Iceweasel just tick
the "always use this application" (or similar) and select /usr/bin/vlc
as the handler in the pop-up dialog


Pick another handler if you prefer, mplayer should play Quicktime.
You're also missing a codecs parameter from the video tag - but doesn't
matter for local use. You'll need to modify your .htaccess if you want
to publish the tag.



>
> If I try to play from the terminal - /usr/bin/mplayer
> /home/ethan/Gingy/Converted_Files/DSCF0142.mov
>
> I receive the following errors:
>
> [VD_FFMPEG] Trying pixfmt=0.
> Could not find matching colorspace - retrying with -vf scale...
> Opening video filter: [scale]
> The selected video_out device is incompatible with this codec.
> Try appending the scale filter to your filter list,
> e.g. -vf spp,scale instead of -vf spp.
>
> Help and advice, please.

Mplayer may need some tuning - it appears you have the incorrect video
output module.


Try vlc - it 'should' work out of the box (*not* the one from
debian-multimedia).



Kind regards


==

Thanks to all for your advice and help.  I still cannot get it to work.

There was an error in the statement of the  tag.  I had it as 
you suggested.


Let me try some very specific questions.

Let us assume that the file is foo.avi

1] What is the command line, using mencoder, for converting foo.avi to foo.mov.

2]  What is the command line, using mplayer, for playing foo.mov.

3] What is the HTML5  code, using with the  tag, for playing foo.mov.

4] Using the answer to #2, can we force foo.mov to be played with mplayer.
  a]I do not seem to be able to fine a mplayer plug-in.
  b]I understand that Quicktime will play foo.mov.  How do I 
force that to happen?  I have the plug-in, but seems that I cannot 
find in the preferences an option to force the Quicktime plugin.


Thanks.

Ethan 




--
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/0m4j00358fdpj...@mta2.srv.hcvlny.cv.net



Re: Install Squeeze with firmware

2012-05-24 Thread Camaleón
On Thu, 24 May 2012 19:29:59 +0200, Antispammbox-debian wrote:

(...)
 
> I don't know what to do!

Don't panic.

If you are interested in reporting the problem, jump to a debug console 
or save the logs somewhere, then open a bug report and append the data.

If you only want to get the system installed, skip the netwok 
configuration and install the system with the CD or DVD packages. Once 
you complete the install, you can manually install the required firmware.

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/jplrq8$a15$2...@dough.gmane.org



Re: Install Squeeze with firmware

2012-05-24 Thread Brian
On Thu 24 May 2012 at 19:29:59 +0200, Antispammbox-debian wrote:

> I try with cat isofile.iso > /dev/sdb1, but the filesystem created on usb do
> not compatible with
> boot from usb.

The command is

   cat isofile.iso > /dev/sdb

Look - it is 'b', not 'b1'. isofile.iso is written to the whole device,
not to a partition on it.

Put tigon_tg3.bin on the root of usb2. Make sure it is a FAT16 partition
*and* is formatted with mkfs.vfat. Only insert usb2 when the installer
asks for firmware. Write down *exactly* what it says and make a note of
*exactly* what happens.

There is another way to proceed if the firmware is not loaded but let us
see what happens first.


-- 
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/20120524182135.GA2847@desktop



Fwd: Switching between modes in mutt.

2012-05-24 Thread Peter Easthope

This morning I skimmed through
http://www.mutt.org/doc/manual/manual-2.html#ss2.3 .  Section 2.3
describes index mode and pager mode.  In index mode, typing a message
number opens the message in the pager.  That's the switch from index to
pager.  How is a switch from pager to index invoked?  Ie.,
when finished reading a message, how can I see the index again?

Thanks, ... P.

--
Telephone 1 360 639 0202.  Bcc: peter at easthope.ca
"http://carnot.yi.org/ "
"http://members.shaw.ca/peasthope/index.html#Itinerary "


--
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/4fbe7f78.2050...@shaw.ca



Re: Mounting local filesystem failed on boot

2012-05-24 Thread Roger Leigh
On Thu, May 24, 2012 at 07:57:32PM +0500, Muhammad Yousuf Khan wrote:
> On Thu, May 24, 2012 at 6:33 PM, Muhammad Yousuf Khan  
> wrote:
> > On Thu, May 24, 2012 at 6:28 PM, Muhammad Yousuf Khan  
> > wrote:
> >> On Thu, May 24, 2012 at 6:02 PM, Ralf Mardorf
> >>  wrote:
> >>> On Thu, 2012-05-24 at 17:40 +0500, Muhammad Yousuf Khan wrote:
>  i am getting Mounting local filesystem failed on every boot. and the
>  problem line in fstab is
> >>>
>  proc            /proc           proc    defaults        0       0
> >>>
> >>> This can't be the cause. The line is correct.
> >>>
>  what this proc mount is for. as i haven’t created it.
> >>>
> >>> "The proc file system is a pseudo-file system which is used as an
> >>> interface to kernel data structures. It is commonly mounted at /proc." -
> >>> http://linux.die.net/man/5/proc
> >>>
> >>> There's an entry in fstab, when /proc is NOT on it's own partition.
> >>> You also can try
> >>>
> >>>
> >>> proc            /proc           proc    nodev,noexec,nosuid 0       0
> 
> Kindly check this also
> http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=425199
>  there is some thing with proc mount

This depends on which distribution you are using?  Are you on
stable, testing, unstable, or something else?  If you're on
testing or unstable, this bug /should/ be fixed.  If it's what
I'm thinking it is, the mountkernfs script (and now also the
initramfs) mounts proc with the same parameters as are by
default in /etc/fstab.  If you're on testing/unstable, you
could also try initscripts/sysvinit from experimental.

The proper solution is to get debian-installer to not create
this (useless) /etc/fstab entry in the first place.

The only reason the bug is open is because I haven't had
proper confirmation it's fixed, so knowing which distribution
you're using will be important to know.


Regards,
Roger

-- 
  .''`.  Roger Leigh
 : :' :  Debian GNU/Linuxhttp://people.debian.org/~rleigh/
 `. `'   schroot and sbuild  http://alioth.debian.org/projects/buildd-tools
   `-GPG Public Key  F33D 281D 470A B443 6756 147C 07B3 C8BC 4083 E800


-- 
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/20120524183735.ge22...@codelibre.net



Re: Fwd: Switching between modes in mutt.

2012-05-24 Thread John L. Cunningham
It's usually "q" or "i". Check at the top-left of the screen when in the
pager.  Mine says "i:Exit" but q also works.

John

On Thu, May 24, 2012 at 11:35:36AM -0700, Peter Easthope wrote:
> This morning I skimmed through
> http://www.mutt.org/doc/manual/manual-2.html#ss2.3 .  Section 2.3
> describes index mode and pager mode.  In index mode, typing a message
> number opens the message in the pager.  That's the switch from index to
> pager.  How is a switch from pager to index invoked?  Ie.,
> when finished reading a message, how can I see the index again?
> 
> Thanks, ... P.
> 
> -- 
> Telephone 1 360 639 0202.  Bcc: peter at easthope.ca
> "http://carnot.yi.org/ "
> "http://members.shaw.ca/peasthope/index.html#Itinerary "
> 
> 
> -- 
> 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/4fbe7f78.2050...@shaw.ca
> 


-- 
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/20120524184553.ga11...@infotech.vrg.org



Dying Iceweasel.

2012-05-24 Thread Peter Easthope
Two systems here with current Squeeze.  One is a Compaq Armada E500; the 
other a generic desktop machine with a Foxconn board.  Try this in each. 
 In iceweasel, google "site:skype.com create account" and attempt to 
open the account creation page.  The URI is too long to mention.


In the Foxconn machine, the page opens with no problem.  In the Armada, 
the spinning animation appears for a few milliseconds and iceweasel dies 
abruptly.  In 2005 there was a thread about removing ~/.mozilla to "fix" 
a dying browser.  More recently, there was a thread including a 
suggestion to try this.


ICEWEASEL_DSP=none iceweasel

Anyone care to offer ideas about my current problem?

Thanks,   ... Peter E.

--
Telephone 1 360 639 0202.  Bcc: peter at easthope.ca
"http://carnot.yi.org/ "
"http://members.shaw.ca/peasthope/index.html#Itinerary "


--
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/4fbe5c91.8070...@shaw.ca



Re: Install Squeeze with firmware

2012-05-24 Thread Antispammbox-debian


- Original Message - 
From: "Brian" 

To: 
Sent: Thursday, May 24, 2012 8:21 PM
Subject: Re: Install Squeeze with firmware



On Thu 24 May 2012 at 19:29:59 +0200, Antispammbox-debian wrote:

I try with cat isofile.iso > /dev/sdb1, but the filesystem created on usb 
do

not compatible with
boot from usb.


The command is

  cat isofile.iso > /dev/sdb

Look - it is 'b', not 'b1'. isofile.iso is written to the whole device,
not to a partition on it.


Ok, but I use unetbooting, is the same?




Put tigon_tg3.bin on the root of usb2. Make sure it is a FAT16 partition
*and* is formatted with mkfs.vfat. Only insert usb2 when the installer
asks for firmware. Write down *exactly* what it says and make a note of
*exactly* what happens.


usb format with gparted fat16. Is the same?



There is another way to proceed if the firmware is not loaded but let us
see what happens first.



Ok




--
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/FE4FD5A790D843B5BF923FFF0A0B6D80@rx



Re: Install Squeeze with firmware

2012-05-24 Thread Antispammbox-debian





I don't know what to do!


Don't panic.

If you are interested in reporting the problem, jump to a debug console 
or save the logs somewhere, then open a bug report and append the data.


If you only want to get the system installed, skip the netwok 
configuration and install the system with the CD or DVD packages. Once 
you complete the install, you can manually install the required firmware.


Greetings,





Tomorrow, I will try again tomorrow,  now is later for me!

I appreciate your support

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/820953FD9F8C4F71B181E9A663F445AB@rx



Re: Install Squeeze with firmware

2012-05-24 Thread Brian
On Thu 24 May 2012 at 20:47:56 +0200, Antispammbox-debian wrote:

>> On Thu 24 May 2012 at 19:29:59 +0200, Antispammbox-debian wrote:
>>
>> The command is
>>
>>   cat isofile.iso > /dev/sdb
>>
>> Look - it is 'b', not 'b1'. isofile.iso is written to the whole device,
>> not to a partition on it.
>
> Ok, but I use unetbooting, is the same?

No! It is not the same. It does something completely different. It may
work but I would not recommend you use it in preference to the 'cat'
command. Putting an iso on a USB device in Debian is best done with the
'cat' command. UNetbootin may be a fine program but it is unsuited to
deal with Debian installer images. Its use should be discouraged for
this.

>> Put tigon_tg3.bin on the root of usb2. Make sure it is a FAT16 partition
>> *and* is formatted with mkfs.vfat. Only insert usb2 when the installer
>> asks for firmware. Write down *exactly* what it says and make a note of
>> *exactly* what happens.
>
> usb format with gparted fat16. Is the same?

Sorry, I do not know. I've never used it. It sounds like it will create
a FAT16 partition but the partition must still be formatted as vfat. I'd
use

   mkfs.vfat /dev/sdX1

where X is a, b, or c or whatever.


-- 
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/20120524191004.GB2847@desktop



Re: Install Squeeze with firmware

2012-05-24 Thread Antispammbox-debian


Hi all


I partition with: cfdisk  /dev/sdb
and format with: msdosfs -F 16 /dev/sdb1

put file firmware in root usb2

tomorrow I try to install!

Thanks

Regards



- Original Message - 
From: "Brian" 

Newsgroups: linux.debian.user
Sent: Thursday, May 24, 2012 9:20 PM
Subject: Re: Install Squeeze with firmware



On Thu 24 May 2012 at 20:47:56 +0200, Antispammbox-debian wrote:


On Thu 24 May 2012 at 19:29:59 +0200, Antispammbox-debian wrote:

The command is

  cat isofile.iso > /dev/sdb

Look - it is 'b', not 'b1'. isofile.iso is written to the whole device,
not to a partition on it.


Ok, but I use unetbooting, is the same?


No! It is not the same. It does something completely different. It may
work but I would not recommend you use it in preference to the 'cat'
command. Putting an iso on a USB device in Debian is best done with the
'cat' command. UNetbootin may be a fine program but it is unsuited to
deal with Debian installer images. Its use should be discouraged for
this.


Put tigon_tg3.bin on the root of usb2. Make sure it is a FAT16 partition
*and* is formatted with mkfs.vfat. Only insert usb2 when the installer
asks for firmware. Write down *exactly* what it says and make a note of
*exactly* what happens.


usb format with gparted fat16. Is the same?


Sorry, I do not know. I've never used it. It sounds like it will create
a FAT16 partition but the partition must still be formatted as vfat. I'd
use

  mkfs.vfat /dev/sdX1

where X is a, b, or c or whatever.


--
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/20120524191004.GB2847@desktop 



--
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/B0864A2187834CF7910EC730C7297E03@rx



Re: mp280

2012-05-24 Thread steef

dear camaleon,

after all I have read now  I should have bought another printer if this one 
was not given to me. we got a dutch proverb that says: 'do not look a given 
horse into the mouth'. so: i will try out this machine whatever happens. i see 
it as a challenge. if it does not work i buy myself a decent hp-printer with 
the proverbial (?) good support.


 thank you and all others for your kind and interested reactions. so now i go 
out into my garden and have a good coffee.


cheers,

steef



Camaleón wrote:

On Wed, 23 May 2012 15:15:46 -0400, Celejar wrote:


On Wed, 23 May 2012 17:11:58 + (UTC) Camaleón
wrote:


(...)


I always avoid Canon devices as much as I can but if there's no
option...


I'm not very happy with my MP-240:

1) [Binary only :(] drivers don't install cleanly on my amd64 system,
and hacks / tweaks (don't remember exact details) were necessary.

2) Drivers don't expose the printer's full functionality - incredibly
annoyingly, there's apparently no way to direct the thing to print b/w
instead of color (which is easily done with this same machine when
driven from a Windows box).

3) Printing is often poor quality and unreliable: paper jams, extra
sheets feeding through, paper jams, text not getting printed or printed
barely legibly, as if faded. Some of this could just be the age of the
machine or ink cartridges, but I'm pretty sure the other user of the
machine, with a Windows box, does not see this.


Yes, that's the kind of things I have read from Canon users, at least
when you want to get the device working in Linux and despite the good or
bad quality of their products (which I won't comment about) the worst IMO
is the lack/bad support from this manufacturer to Linux and for that
reason it has been completely ditched from my list of possible candidates
when I look for new hardware ;-(

Greetings,




--
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/4fbe9792.7000...@home.nl



glibc2-14

2012-05-24 Thread Shane Johnson
I have just run into a issue where the driver for a ASPEED video card
worked in wheezy, and now is complaining about glibc not being at 2.14.
 When I look to see the version installed, it is 2.13.  Does anyone know if
there was a reversion or how I might go about resolving this?

Thanks

-- 
Shane D. Johnson
IT Administrator
Rasmussen Equipment


Word Perfect 5.1 under Free Dos

2012-05-24 Thread Charles Kroeger
Is this possible now? 

Installing Free Dos loading in a copy of Word Perfect 5.1
that can also use the system printer under CUPS?

Is this hopeless?

-- 
Thanks

CK


-- 
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/a27na3ftg...@mid.individual.net



Re: Word Perfect 5.1 under Free Dos

2012-05-24 Thread John L. Cunningham
On Thu, May 24, 2012 at 04:25:23PM -0500, Charles Kroeger wrote:
> Installing Free Dos loading in a copy of Word Perfect 5.1
> that can also use the system printer under CUPS?

Ah! A true believer!

IMHO think WPDOS  to work with CUPS is more trouble than it's worth. The
following page suggests that WPDOS gives you the option to print to a
postscript file. If your printer understands postscript (and I think
almost all of them do at this point?) you can print the resulting
postcript file using lpr.

http://etd.vt.edu/howto/workshop/qa.html

John


-- 
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/20120524221031.gf11...@infotech.vrg.org



Re: Word Perfect 5.1 under Free Dos

2012-05-24 Thread Roger Leigh
On Thu, May 24, 2012 at 04:25:23PM -0500, Charles Kroeger wrote:
> Is this possible now? 
> 
> Installing Free Dos loading in a copy of Word Perfect 5.1
> that can also use the system printer under CUPS?

You can certainly drive the system printer using DOSEMU.  However,
how well this will work depends on what type of printer you're
using.  If you're using a printer supported natively by WordPerfect,
then you can just get DOSEMU to run "lpr -oraw" and it will get
passed through without any processing, and behave pretty much as if
it was hooked up directly to the parallel port (albeit without direct
parallel port access--it's faked by the emulator).  However, if you
have a modern printer which needs special CUPS drivers, which can't be
driven by WordPerfect directly, you'll basically need to see if you
can find a PostScript printer driver for WordPerfect to use--then it
will send the PostScript directly to CUPS, which CUPS will happily
print one any type of printer.  You might need to fiddle with
timeouts--DOSEMU can't always tell when jobs end, so it ends the job
after a delay.

WRT WordPerfect itself, can't see why it wouldn't work; I've run
plenty of software in DOSEMU without trouble.  If FreeDOS doesn't
work, then try a copy of "real" MS-DOS, PC-DOS or DR-DOS.


Regards,
Roger

-- 
  .''`.  Roger Leigh
 : :' :  Debian GNU/Linuxhttp://people.debian.org/~rleigh/
 `. `'   schroot and sbuild  http://alioth.debian.org/projects/buildd-tools
   `-GPG Public Key  F33D 281D 470A B443 6756 147C 07B3 C8BC 4083 E800


-- 
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/20120524221502.gh22...@codelibre.net



Re: dhclient does not recognize config file

2012-05-24 Thread Paul Zimmerman
References: <1337870001.52679.yahoomail...@web162602.mail.bf1.yahoo.com>, 


Camaleón  wrote: 

>On Thu, 24 May 2012 07:33:21 -0700, Paul Zimmerman wrote: 

>> dhclient in Squeeze pays no attention to the config file 
>> at/etc/dhcp/dhclient.conf 

>How does the file look like? Also, did you restart dhclient after editing the 
>file? 

Rebooting does a pretty good job of restarting all programs, including daemons. 
:)
This is an ongoing problem through days or use, so yes, it gets restarted often.


>> All I need it to do is prepend the local host to resolv.conf so dnscaching 
>> will work. 

>You mean the "prepend domain-name-servers 127.0.0.1" stanza? 


Yes, that's what I tried first. It has absolutely no effect. Then I created 
some specific
"interface" entries. Since it left error messages in the log when I made 
mistakes, it
is clearly reading the config file.


>> How do you get dhclient to do anything other than the default behavior? 

>Are you using N-M? 


No, but I do use wicd. Does that write resolv.conf too? Avahi was running on 
the system, 

but I removed it. Also checked for resolvconf and it doesn't show as installed 
even though 

there is a resolvconf directory. Is there anything else that might be 
over-writing the file?



--
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/1337897593.21629.yahoomail...@web162604.mail.bf1.yahoo.com



Re: Fwd: Switching between modes in mutt.

2012-05-24 Thread Jude DaShiell
Probably hit q to get back into index mode.On Thu, 24 May 2012, Peter 
Easthope wrote:

> This morning I skimmed through
> http://www.mutt.org/doc/manual/manual-2.html#ss2.3 .  Section 2.3
> describes index mode and pager mode.  In index mode, typing a message
> number opens the message in the pager.  That's the switch from index to
> pager.  How is a switch from pager to index invoked?  Ie.,
> when finished reading a message, how can I see the index again?
> 
> Thanks, ... P.
> 
> 


Jude 



-- 
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/alpine.bsf.2.01.1205241853370.6...@freire1.furyyjbeyq.arg



Re: Install Squeeze with firmware

2012-05-24 Thread Brian
On Thu 24 May 2012 at 22:04:47 +0200, Antispammbox-debian wrote:

>
> I partition with: cfdisk  /dev/sdb
> and format with: msdosfs -F 16 /dev/sdb1
>
> put file firmware in root usb2

It might be a better idea to put just tigon_tg3.bin on stick.


-- 
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/20120524235833.GC2847@desktop



Re: Dying Iceweasel.

2012-05-24 Thread Arnt Karlsen
On Thu, 24 May 2012 09:06:41 -0700, Peter wrote in message 
<4fbe5c91.8070...@shaw.ca>:

> Two systems here with current Squeeze.  One is a Compaq Armada E500;
> the other a generic desktop machine with a Foxconn board.  Try this
> in each. In iceweasel, google "site:skype.com create account" and
> attempt to open the account creation page.  The URI is too long to
> mention.
> 
> In the Foxconn machine, the page opens with no problem.  In the
> Armada, the spinning animation appears for a few milliseconds and
> iceweasel dies abruptly.  

..a WAG: 'aptitude purge flashplugin-nonfree \
&&aptitude install flashplugin-nonfree ' and 
try the page again, could be they require a new
flash version.

> In 2005 there was a thread about removing
> ~/.mozilla to "fix" a dying browser.  More recently, there was a
> thread including a suggestion to try this.
> 
> ICEWEASEL_DSP=none iceweasel
> 
> Anyone care to offer ideas about my current problem?
> 
> Thanks,   ... Peter E.
> 


-- 
..med vennlig hilsen = with Kind Regards from Arnt Karlsen
...with a number of polar bear hunters in his ancestry...
  Scenarios always come in sets of three: 
  best case, worst case, and just in case.


-- 
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/20120525030202.47bb0...@celsius.lan



Re: Word Perfect 5.1 under Free Dos

2012-05-24 Thread Charles Kroeger
On Fri, 25 May 2012 00:20:02 +0200
Roger Leigh  wrote:

> You can certainly drive the system printer using DOSEMU.  However,
> how well this will work depends on what type of printer you're
> using.  If you're using a printer supported natively by WordPerfect,
> then you can just get DOSEMU to run "lpr -oraw" and it will get
> passed through without any processing, and behave pretty much as if
> it was hooked up directly to the parallel port (albeit without direct
> parallel port access--it's faked by the emulator).  However, if you
> have a modern printer which needs special CUPS drivers, which can't be
> driven by WordPerfect directly, you'll basically need to see if you
> can find a PostScript printer driver for WordPerfect to use--then it
> will send the PostScript directly to CUPS, which CUPS will happily
> print one any type of printer.  You might need to fiddle with
> timeouts--DOSEMU can't always tell when jobs end, so it ends the job
> after a delay.
> 
> WRT WordPerfect itself, can't see why it wouldn't work; I've run
> plenty of software in DOSEMU without trouble.  If FreeDOS doesn't
> work, then try a copy of "real" MS-DOS, PC-DOS or DR-DOS.

well well..thanks for this interesting read. I even have a copy of PC DOS 2000 
that
includes PC DOS 7 with enhanced support for year 2000 (remember that?) and
Eurocurrency, yes ,this is what I'm talking about.

thanks for this link John,

http://etd.vt.edu/howto/workshop/qa.html

my blood is up.

-- 
CK


-- 
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/a2830ffb9...@mid.individual.net



Re: Word Perfect 5.1 under Free Dos

2012-05-24 Thread Arnt Karlsen
On Thu, 24 May 2012 23:15:02 +0100, Roger wrote in message 
<20120524221502.gh22...@codelibre.net>:

> On Thu, May 24, 2012 at 04:25:23PM -0500, Charles Kroeger wrote:
> > Is this possible now? 
> > 
> > Installing Free Dos loading in a copy of Word Perfect 5.1
> > that can also use the system printer under CUPS?
> 
> You can certainly drive the system printer using DOSEMU.  However,
> how well this will work depends on what type of printer you're
> using.  If you're using a printer supported natively by WordPerfect,
> then you can just get DOSEMU to run "lpr -oraw" and it will get
> passed through without any processing, and behave pretty much as if
> it was hooked up directly to the parallel port (albeit without direct
> parallel port access--it's faked by the emulator).  However, if you
> have a modern printer which needs special CUPS drivers, which can't be
> driven by WordPerfect directly, you'll basically need to see if you
> can find a PostScript printer driver for WordPerfect to use--then it
> will send the PostScript directly to CUPS, which CUPS will happily
> print one any type of printer.  You might need to fiddle with
> timeouts--DOSEMU can't always tell when jobs end, so it ends the job
> after a delay.
> 
> WRT WordPerfect itself, can't see why it wouldn't work; I've run
> plenty of software in DOSEMU without trouble.  If FreeDOS doesn't
> work, then try a copy of "real" MS-DOS, PC-DOS or DR-DOS.

..and it probably doesn't need real hardware either, run it 
in a virtual machine and tell us how it worked for you. :o)

-- 
..med vennlig hilsen = with Kind Regards from Arnt Karlsen
...with a number of polar bear hunters in his ancestry...
  Scenarios always come in sets of three: 
  best case, worst case, and just in case.


-- 
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/20120525030635.48f9d...@celsius.lan



Re (2): Dying Iceweasel.

2012-05-24 Thread peter
From:   Arnt Karlsen 
Date:   Fri, 25 May 2012 03:02:02 +0200
> ..a WAG: 'aptitude purge flashplugin-nonfree \
> &&aptitude install flashplugin-nonfree ' and 
> try the page again, could be they require a new
> flash version.

These systems have flashplayer-mozilla.  I can try 
reinstalling that.

Thanks,... Peter E.

-- 
Telephone 1 360 639 0202.  Bcc: peter at easthope.ca
"http://carnot.yi.org/ "
"http://members.shaw.ca/peasthope/index.html#Itinerary "


-- 
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/170757528.76814.68972@cantor.invalid



How to get new RSA key in known_hosts file?

2012-05-24 Thread Marc Shapiro
I recently had to reinstall Squeeze on my desktop box due to hard disk
issues.  On reinstalling OpenSSH a new key was generated.  Now, when I
try to connect from my laptop I get the following message:

@@@
@WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED! @
@@@
IT IS POSSIBLE THAT SOMEONE IS DOING SOMETHING NASTY!
Someone could be eavesdropping on you right now (man-in-the-middle attack)!
It is also possible that the RSA host key has just been changed.
The fingerprint for the RSA key sent by the remote host is
cb:fa:a3:10:3d:01:c0:e6:6a:2d:3e:59:e1:b9:4e:b8.
Please contact your system administrator.
Add correct host key in /home/marc/.ssh/known_hosts to get rid of this message.
Offending key in /home/marc/.ssh/known_hosts:1
RSA host key for xander has changed and you have requested strict checking.
Host key verification failed.



Googling for how to update my known_hosts file turned up this suggestion:

ssh -o StrictHostKeyChecking=no yourserver

I tried this (obviously replacing "yourserver" with the name of my
desktop box to which I am trying to connect).  This resulted in the
following, similar, but not quite the same message:

@@@
@WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED! @
@@@
IT IS POSSIBLE THAT SOMEONE IS DOING SOMETHING NASTY!
Someone could be eavesdropping on you right now (man-in-the-middle attack)!
It is also possible that the RSA host key has just been changed.
The fingerprint for the RSA key sent by the remote host is
cb:fa:a3:10:3d:01:c0:e6:6a:2d:3e:59:e1:b9:4e:b8.
Please contact your system administrator.
Add correct host key in /home/marc/.ssh/known_hosts to get rid of this message.
Offending key in /home/marc/.ssh/known_hosts:1
Password authentication is disabled to avoid man-in-the-middle attacks.
Keyboard-interactive authentication is disabled to avoid
man-in-the-middle attacks.
Permission denied (publickey,password).



I have no .ssh/config file

The contents of my /etc/ssh/ssh_config file is:

# This is the ssh client system-wide configuration file.  See
# ssh_config(5) for more information.  This file provides defaults for
# users, and the values can be changed in per-user configuration files
# or on the command line.

# Configuration data is parsed as follows:
#  1. command line options
#  2. user-specific file
#  3. system-wide file
# Any configuration value is only changed the first time it is set.
# Thus, host-specific definitions should be at the beginning of the
# configuration file, and defaults at the end.

# Site-wide defaults for some commonly used options.  For a comprehensive
# list of available options, their meanings and defaults, please see the
# ssh_config(5) man page.

Host *
#   ForwardAgent no
#   ForwardX11 no
#   ForwardX11Trusted yes
#   RhostsRSAAuthentication no
#   RSAAuthentication yes
#   PasswordAuthentication yes
#   HostbasedAuthentication no
#   GSSAPIAuthentication no
#   GSSAPIDelegateCredentials no
#   GSSAPIKeyExchange no
#   GSSAPITrustDNS no
#   BatchMode no
#   CheckHostIP yes
#   AddressFamily any
#   ConnectTimeout 0
#   StrictHostKeyChecking ask
#   IdentityFile ~/.ssh/identity
#   IdentityFile ~/.ssh/id_rsa
#   IdentityFile ~/.ssh/id_dsa
#   Port 22
#   Protocol 2,1
#   Cipher 3des
#   Ciphers 
aes128-ctr,aes192-ctr,aes256-ctr,arcfour256,arcfour128,aes128-cbc,3des-cbc
#   MACs hmac-md5,hmac-sha1,umac...@openssh.com,hmac-ripemd160
#   EscapeChar ~
#   Tunnel no
#   TunnelDevice any:any
#   PermitLocalCommand no
#   VisualHostKey no
#   ProxyCommand ssh -q -W %h:%p gateway.example.com
SendEnv LANG LC_*
HashKnownHosts yes
GSSAPIAuthentication yes
GSSAPIDelegateCredentials no



How do I manually enter the rsa key, or get ssh to do so, so that  I
can connect again?

Marc


-- 
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/CANbRw9mb+Sap8GCH60zMo_eRpwWWydT2j=a7sraz7xkkc1t...@mail.gmail.com



Re: Word Perfect 5.1 under Free Dos

2012-05-24 Thread Marc Shapiro

On 05/24/2012 03:10 PM, John L. Cunningham wrote:

On Thu, May 24, 2012 at 04:25:23PM -0500, Charles Kroeger wrote:

Installing Free Dos loading in a copy of Word Perfect 5.1
that can also use the system printer under CUPS?

Ah! A true believer!

If I could only get "View Codes" in OO.o!

Marc


--
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/4fbefe27.6030...@gmail.com



Re: How to get new RSA key in known_hosts file?

2012-05-24 Thread Celejar
On Thu, 24 May 2012 20:24:49 -0700
Marc Shapiro  wrote:

> I recently had to reinstall Squeeze on my desktop box due to hard disk
> issues.  On reinstalling OpenSSH a new key was generated.  Now, when I
> try to connect from my laptop I get the following message:
> 
> @@@
> @WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED! @
> @@@
> IT IS POSSIBLE THAT SOMEONE IS DOING SOMETHING NASTY!

...

> How do I manually enter the rsa key, or get ssh to do so, so that  I
> can connect again?

Issue 'ssh-keygen -R your_hostname_or_ip_address'

Then try reconnecting.

Celejar


-- 
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/20120524234721.c6d8444a.cele...@gmail.com



Re: Dying Iceweasel.

2012-05-24 Thread Scott Ferguson
On 25/05/12 02:06, Peter Easthope wrote:
> Two systems here with current Squeeze.  One is a Compaq Armada E500; the
> other a generic desktop machine with a Foxconn board.  Try this in each.
>  In iceweasel, google "site:skype.com create account" and attempt to
> open the account creation page.  The URI is too long to mention.

Bizarre
I can't duplicate your problem... why don't you bypass the monkey and go
to:-
https://login.skype.com/account/signup-form

no ffflash required there
no long URL either.



Kind regards

-- 
Iceweasel/Firefox/Chrome/Chromium/Iceape/IE extensions for finding
answers to questions about Debian:-
https://addons.mozilla.org/en-US/firefox/collections/Scott_Ferguson/debian/


-- 
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/4fbf085a.70...@gmail.com



Re: Playing Video - More questions -- Please --- some answers -- I'm stuck

2012-05-24 Thread Ethan Rosenberg

At 09:43 AM 5/23/2012, Scott Ferguson wrote:

On 23/05/12 13:41, Ethan Rosenberg wrote:
> Dear List -
>
> This might not be the correct address for this problem.  If it is not,
> please direct me appropriately.
>
> I am trying to play a video. The following code is in Index1.html:
>
>  > 
"file:///home/ethan/Gingy/Converted_Files/DSCF0142.mov"

> type="video/mov" >


Should be:-



You'll probably get a mime type unknown error - with Iceweasel just tick
the "always use this application" (or similar) and select /usr/bin/vlc
as the handler in the pop-up dialog


Pick another handler if you prefer, mplayer should play Quicktime.
You're also missing a codecs parameter from the video tag - but doesn't
matter for local use. You'll need to modify your .htaccess if you want
to publish the tag.



>
> If I try to play from the terminal - /usr/bin/mplayer
> /home/ethan/Gingy/Converted_Files/DSCF0142.mov
>
> I receive the following errors:
>
> [VD_FFMPEG] Trying pixfmt=0.
> Could not find matching colorspace - retrying with -vf scale...
> Opening video filter: [scale]
> The selected video_out device is incompatible with this codec.
> Try appending the scale filter to your filter list,
> e.g. -vf spp,scale instead of -vf spp.
>
> Help and advice, please.

Mplayer may need some tuning - it appears you have the incorrect video
output module.


Try vlc - it 'should' work out of the box (*not* the one from
debian-multimedia).



Kind regards


==

Thanks to all for your advice and help.  I still cannot get it to work.

There was an error in the statement of the  tag.  I had it as 
you suggested.


Let me try some very specific questions.

Let us assume that the file is foo.avi

1] What is the command line, using mencoder, for converting foo.avi to foo.mov.

2]  What is the command line, using mplayer, for playing foo.mov.

3] What is the HTML5  code, using with the  tag, for playing foo.mov.

4] Using the answer to #2, can we force foo.mov to be played with mplayer.
  a]I do not seem to be able to fine a mplayer plug-in.
  b]I understand that Quicktime will play foo.mov.  How do I 
force that to happen?  I have the plug-in, but seems that I cannot 
find in the preferences an option to force the Quicktime plugin.


Thanks.

Ethan


--
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/0m4j00358fdpj...@mta2.srv.hcvlny.cv.net





--
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/0m4k00ka3bj5m...@mta3.srv.hcvlny.cv.net



(Almost Solved) Re: How to get new RSA key in known_hosts file?

2012-05-24 Thread Marc Shapiro
On 5/24/12, Celejar  wrote:
> On Thu, 24 May 2012 20:24:49 -0700
> Marc Shapiro  wrote:

>> How do I manually enter the rsa key, or get ssh to do so, so that  I
>> can connect again?
>
> Issue 'ssh-keygen -R your_hostname_or_ip_address'
>
> Then try reconnecting.

That got me connected, after answering 'yes' to a few prompts, but...
When I now try to connect, I get the following:

Warning: the RSA host key for 'xx' differs from the key for the IP
address '192.168.1.2'
Offending key for IP in /home/xxx/.ssh/known_hosts:2
Matching host key in /home/xxx/.ssh/known_hosts:3
Are you sure you want to continue connecting (yes/no)? yes
xxx@xx's password:
Linux xx 2.6.32-5-686 #1 SMP Sun May 6 04:01:19 UTC 2012 i686

The programs included with the Debian GNU/Linux system are free software;
the exact distribution terms for each program are described in the
individual files in /usr/share/doc/*/copyright.

Debian GNU/Linux comes with ABSOLUTELY NO WARRANTY, to the extent
permitted by applicable law.
Last login: Thu May 24 21:14:27 2012 from new-host-3.home
mns@xander:~$



As you can see, it does connect me, but only after requiring me to
answer a prompt and enter my password.  I don't think that I needed to
enter my password before.  Password authentication was disabled for
security purposes.

Marc


-- 
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/CANbRw9nSV3n5s90LY9M=ag+jkfx7z0xelds6dve3cauhj_+...@mail.gmail.com



Re: Playing Video - More questions

2012-05-24 Thread Scott Ferguson
On 25/05/12 03:32, Ethan Rosenberg wrote:
> At 09:43 AM 5/23/2012, Scott Ferguson wrote:
>> On 23/05/12 13:41, Ethan Rosenberg wrote:
>>> Dear List -
>>> 
>>> This might not be the correct address for this problem.  If it is
>>> not, please direct me appropriately.
>>> 
>>> I am trying to play a video. The following code is in
>>> Index1.html:
>>> 
>>> >> 
>> "file:///home/ethan/Gingy/Converted_Files/DSCF0142.mov"
>>
>>
>> 
> type="video/mov" >
>> 
>> 
>> Should be:-
>> 
>> > src="file:///home/ethan/Gingy/Converted_Files/DSCF0142.mov" 
>> type="video/mov" >
>> 
>> You'll probably get a mime type unknown error - with Iceweasel just
>> tick the "always use this application" (or similar) and select
>> /usr/bin/vlc as the handler in the pop-up dialog
>> 
>> 
>> Pick another handler if you prefer, mplayer should play Quicktime. 
>> You're also missing a codecs parameter from the video tag - but
>> doesn't matter for local use. You'll need to modify your .htaccess
>> if you want to publish the tag.
>> 
>> 
>> 
>>> 
>>> If I try to play from the terminal - /usr/bin/mplayer 
>>> /home/ethan/Gingy/Converted_Files/DSCF0142.mov
>>> 
>>> I receive the following errors:
>>> 
>>> [VD_FFMPEG] Trying pixfmt=0. Could not find matching colorspace -
>>> retrying with -vf scale... Opening video filter: [scale] The
>>> selected video_out device is incompatible with this codec. Try
>>> appending the scale filter to your filter list, e.g. -vf
>>> spp,scale instead of -vf spp.
>>> 
>>> Help and advice, please.
>> 
>> Mplayer may need some tuning - it appears you have the incorrect
>> video output module.

Try changing the video output module in mplayer - sorry I can't give you
more help, but you're dealing with an application I don't install.

>> 
>> 
>> Try vlc - it 'should' work out of the box (*not* the one from 
>> debian-multimedia).
>> 
>> 
>> 
>> Kind regards
> 
> ==
> 
> Thanks to all for your advice and help.  I still cannot get it to
> work.

I suggest you confirm that your .mov movie is valid before spending time
trying to put the video into a web page (and to stream it you'll need to
provide codec information, and change the src=file:///)

> 
> There was an error in the statement of the  tag.  I had it as
> you suggested.

I tested (the tag) with a known working .mov file.



> 
> Let me try some very specific questions.
> 
> Let us assume that the file is foo.avi
> 
> 1] What is the command line, using mencoder, for converting foo.avi
> to foo.mov.

No idea - I use WinFF (from debian-multimedia, uses ffmpeg) for that.
(presuming you understand difference between container and codec)

Feeding your question into a search engine yields:-
$ for fl in YOURMOVFILE.MOV
 do
   mencoder ${fl} -o ${fl/mov/avi} -oac mp3lame -ovc lavc
   mplayer -ao pcm -vo null -vc dummy -dumpaudio -dumpfile ${fl/mov/mp3}
${fl/mov/avi}
   #rm ${fl/mov/avi}
 done



> 
> 2]  What is the command line, using mplayer, for playing foo.mov.


No idea.
Seriously - I don't have it installed (vlc works fine).

> 
> 3] What is the HTML5  code, using with the  tag, for playing 
> foo.mov.

I suspect you misunderstand the difference between legal use of the tag
(what you have) and support for your use of the tag (which you won't
get). As yet the tag is not widely supported - it won't work with Safari
3.1.2 (under WINE).

You can test for support by seeing if a browser will render text between
the video tags. eg.

http://http.cdnlayer.com/itke/blogs.dir/36/files/2012/01/chuck-norris-thumb.jpg";>
http://*.*.*.*.*.*/uploads/files/419ScammerScammedByChuckNorris.mov"; 
type="video/mov"/>
  If you can read this then your browser does not support the video tag.


NOTE: the above tag has been tested, with the correct IP address, but it
still requires the client to configure the application association -
less than ideal.

> 
> 4] Using the answer to #2, can we force foo.mov to be played with
> mplayer.

No.

*If* mplayer will play your .mov file then you just need to set that as
a mime type association. (command line doesn't come into it)

 ie. video/mov is the mimetype you need to register (locally)
 and mov => mplayer is the association you need to register (locally).


Perhaps if you explained what you want to do?

While it's possible to use the video tag to display a mov file most
people won't go to the trouble of configuring their browser to display
it - and it (as it stands) won't stream so people will have to wait for
the whole movie to download before viewing it.  Note that the "poster"
parameter will give people something to look at while they wait, but
it's less than ideal.

> a]I do not seem to be able to find a mplayer plug-in.

I don't believe it needs one - but I'm not a mplayer user.

> b]I understand that Quicktime will play foo.mov.

I would hope so - it *is* a quicktime format. ;-p

> How do I force that to happen?  I have the plug-in, 

What plug-in?

I'm vaguely aware of a Helix/RealPlayer Quicktime associatio

Re: How to get new RSA key in known_hosts file?

2012-05-24 Thread Scott Ferguson
On 25/05/12 13:24, Marc Shapiro wrote:
> I recently had to reinstall Squeeze on my desktop box due to hard disk
> issues.  On reinstalling OpenSSH a new key was generated.  Now, when I
> try to connect from my laptop I get the following message:
> 
> @@@
> @WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED! @
> @@@
> IT IS POSSIBLE THAT SOMEONE IS DOING SOMETHING NASTY!
> Someone could be eavesdropping on you right now (man-in-the-middle attack)!
> It is also possible that the RSA host key has just been changed.
> The fingerprint for the RSA key sent by the remote host is
> cb:fa:a3:10:3d:01:c0:e6:6a:2d:3e:59:e1:b9:4e:b8.
> Please contact your system administrator.
> Add correct host key in /home/marc/.ssh/known_hosts to get rid of this 
> message.
> Offending key in /home/marc/.ssh/known_hosts:1
> RSA host key for xander has changed and you have requested strict checking.
> Host key verification failed.
> 
> 
> 
> Googling for how to update my known_hosts file turned up this suggestion:
> 
> ssh -o StrictHostKeyChecking=no yourserver
> 
> I tried this (obviously replacing "yourserver" with the name of my
> desktop box to which I am trying to connect).  This resulted in the
> following, similar, but not quite the same message:
> 
> @@@
> @WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED! @
> @@@
> IT IS POSSIBLE THAT SOMEONE IS DOING SOMETHING NASTY!
> Someone could be eavesdropping on you right now (man-in-the-middle attack)!
> It is also possible that the RSA host key has just been changed.
> The fingerprint for the RSA key sent by the remote host is
> cb:fa:a3:10:3d:01:c0:e6:6a:2d:3e:59:e1:b9:4e:b8.
> Please contact your system administrator.
> Add correct host key in /home/marc/.ssh/known_hosts to get rid of this 
> message.
> Offending key in /home/marc/.ssh/known_hosts:1




> 
> How do I manually enter the rsa key, or get ssh to do so, so that  I
> can connect again?
> 
> Marc
> 
> 


$ nano .ssh/known_hosts
and delete the first line (they're numbered starting with 1).

That's it.



Kind regards

-- 
Iceweasel/Firefox/Chrome/Chromium/Iceape/IE extensions for finding
answers to questions about Debian:-
https://addons.mozilla.org/en-US/firefox/collections/Scott_Ferguson/debian/


-- 
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/4fbf1a77.6000...@gmail.com



Re: Playing Video - More questions -- Please --- some answers -- I'm stuck

2012-05-24 Thread Scott Ferguson
On 25/05/12 15:06, Ethan Rosenberg wrote:
> At 09:43 AM 5/23/2012, Scott Ferguson wrote:
>> On 23/05/12 13:41, Ethan Rosenberg wrote:
>> > Dear List -
>> >


Hi Ethan, I can't see much difference between this post, and the one
I've just responded to



Kind regards

-- 
Iceweasel/Firefox/Chrome/Chromium/Iceape/IE extensions for finding
answers to questions about Debian:-
https://addons.mozilla.org/en-US/firefox/collections/Scott_Ferguson/debian/


-- 
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/4fbf1ae8.4060...@gmail.com



Re: How to get new RSA key in known_hosts file?

2012-05-24 Thread Scott Ferguson
On 25/05/12 13:47, Celejar wrote:
> On Thu, 24 May 2012 20:24:49 -0700 Marc Shapiro
>  wrote:
> 
>> I recently had to reinstall Squeeze on my desktop box due to hard 
>> disk issues.  On reinstalling OpenSSH a new key was generated. Now,
>> when I try to connect from my laptop I get the following message:
>> 
>> @@@ @ 
>> WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED! @ 
>> @@@ IT IS 
>> POSSIBLE THAT SOMEONE IS DOING SOMETHING NASTY!
> 
> ...
>> It is also possible that the RSA host key has just been changed. 
>> The fingerprint for the RSA key sent by the remote host is 
>> cb:fa:a3:10:3d:01:c0:e6:6a:2d:3e:59:e1:b9:4e:b8. Please contact 
>> your system administrator. Add correct host key in 
>> /home/marc/.ssh/known_hosts to get rid of this message. Offending
>> key in /home/marc/.ssh/known_hosts:1
> 
>> How do I manually enter the rsa key, or get ssh to do so, so that I
>> can connect again?
> 
> Issue 'ssh-keygen -R your_hostname_or_ip_address'

Marc has previously connected to a given address and stored a key.

That address now has another key - the correct (IMO) approach is to
delete the old key for that address (remove the 1st entry in
~/.ssh/known_hosts.

i.e. change the key stored for *that* computer.

You've asked him to change *his* key which will have no effect on the
problem (the machine he's connecting to still has a new key that differs
from the one he has stored).


> 
> Then try reconnecting.
> 
> Celejar
> 
> 


Kind regards

-- 
Iceweasel/Firefox/Chrome/Chromium/Iceape/IE extensions for finding
answers to questions about Debian:-
https://addons.mozilla.org/en-US/firefox/collections/Scott_Ferguson/debian/


-- 
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/4fbf1c64.5050...@gmail.com



Re: Mounting local filesystem failed on boot

2012-05-24 Thread Ralf Mardorf
On Thu, 2012-05-24 at 19:57 +0500, Muhammad Yousuf Khan wrote:
> Kindly check this also
> http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=425199
>  there is some thing with proc mount

Subject: Re: Bug#425199: Mounting local filesystems... Failed!
Date: Tue, 10 Jan 2012 15:04:55 +
> Is it an issue with initscripts in current testing/unstable?  I've
> updated the mountall shell functions to merge initscripts defaults
> with matching fstab entries, so both should be supported equally well
> now, and this should have solved this bug.

So there was a bug in January? It was solved? And appears now again? :(

You should file a bug report.

- Ralf

-- 
PS: For me it's ok, if you carbon copy, but it's not wanted for the
mailing list. You should sent replies to the list only.


-- 
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/1337926071.2251.6.camel@precise



Re: Word Perfect 5.1 under Free Dos

2012-05-24 Thread Charles Kroeger
On Fri, 25 May 2012 03:10:02 +0200
Arnt Karlsen  wrote:

> ..and it probably doesn't need real hardware either, run it 
> in a virtual machine and tell us how it worked for you. :o)

I'll be glad to report back but first a little help:

I take it this isn't about using DOSMU but a virtual machine with a FAT16 file
system like going back to 1987. How can I do that?

-- 
CK 


-- 
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/a28likf1o...@mid.individual.net



Re: Mounting local filesystem failed on boot

2012-05-24 Thread Muhammad Yousuf Khan
On Thu, May 24, 2012 at 11:37 PM, Roger Leigh  wrote:
>
> On Thu, May 24, 2012 at 07:57:32PM +0500, Muhammad Yousuf Khan wrote:
> > On Thu, May 24, 2012 at 6:33 PM, Muhammad Yousuf Khan  
> > wrote:
> > > On Thu, May 24, 2012 at 6:28 PM, Muhammad Yousuf Khan  
> > > wrote:
> > >> On Thu, May 24, 2012 at 6:02 PM, Ralf Mardorf
> > >>  wrote:
> > >>> On Thu, 2012-05-24 at 17:40 +0500, Muhammad Yousuf Khan wrote:
> >  i am getting Mounting local filesystem failed on every boot. and the
> >  problem line in fstab is
> > >>>
> >  proc            /proc           proc    defaults        0       0
> > >>>
> > >>> This can't be the cause. The line is correct.
> > >>>
> >  what this proc mount is for. as i haven’t created it.
> > >>>
> > >>> "The proc file system is a pseudo-file system which is used as an
> > >>> interface to kernel data structures. It is commonly mounted at /proc." -
> > >>> http://linux.die.net/man/5/proc
> > >>>
> > >>> There's an entry in fstab, when /proc is NOT on it's own partition.
> > >>> You also can try
> > >>>
> > >>>
> > >>> proc            /proc           proc    nodev,noexec,nosuid 0       0
> >
> > Kindly check this also
> > http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=425199
> >  there is some thing with proc mount
>
> This depends on which distribution you are using?  Are you on
> stable, testing, unstable, or something else?



>
>  If you're on
> testing or unstable, this bug /should/ be fixed.  If it's what
> I'm thinking it is, the mountkernfs script (and now also the
> initramfs) mounts proc with the same parameters as are by
> default in /etc/fstab.  If you're on testing/unstable, you
> could also try initscripts/sysvinit from experimental.
>
> The proper solution is to get debian-installer to not create
> this (useless) /etc/fstab entry in the first place.
>
> The only reason the bug is open is because I haven't had
> proper confirmation it's fixed, so knowing which distribution
> you're using will be important to know.

ok here are the details,

root@abc:/etc# cat debian_version
6.0.4
root@abc:/etc# uname -a
Linux abc 2.6.32-5-686 #1 SMP Mon Jan 16 16:04:25 UTC 2012 i686 GNU/Linux

>
>
> Regards,
> Roger
>
> --
>  .''`.  Roger Leigh
>  : :' :  Debian GNU/Linux    http://people.debian.org/~rleigh/
>  `. `'   schroot and sbuild  http://alioth.debian.org/projects/buildd-tools
>   `-    GPG Public Key      F33D 281D 470A B443 6756 147C 07B3 C8BC 4083 E800


--
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/cagwvfmmpb3ombcga6dr4hqopnuvp9nm-lg+75dkowcxujzv...@mail.gmail.com



Re: Mounting local filesystem failed on boot

2012-05-24 Thread Muhammad Yousuf Khan
On Fri, May 25, 2012 at 11:07 AM, Ralf Mardorf
 wrote:
> On Thu, 2012-05-24 at 19:57 +0500, Muhammad Yousuf Khan wrote:
>> Kindly check this also
>> http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=425199
>>  there is some thing with proc mount
>
> Subject: Re: Bug#425199: Mounting local filesystems... Failed!
> Date: Tue, 10 Jan 2012 15:04:55 +
>> Is it an issue with initscripts in current testing/unstable?  I've
>> updated the mountall shell functions to merge initscripts defaults
>> with matching fstab entries, so both should be supported equally well
>> now, and this should have solved this bug.
>
> So there was a bug in January? It was solved? And appears now again? :(
>
> You should file a bug report.

i am not sure if it is a bug or my mistake as i am new to linux. i
think i should verify at my end first instead of reporting false bug
:)


> - Ralf
>
> --
> PS: For me it's ok, if you carbon copy, but it's not wanted for the
> mailing list. You should sent replies to the list only.
>
>
> --
> 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/1337926071.2251.6.camel@precise
>


--
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/CAGWVfMmbhGhy8dEXb_TDuHFcNrZRjgen_N=mopjqpfqp4wz...@mail.gmail.com