get hardware info through lspci

2009-06-04 Thread Michael Casey
I've recently read: Linux Find Out If PCI Hardware Supported or Not In The Current Running Kernel So, if I: grep 27d8 /lib/modules/$(uname -r)/modules.pcimap and see this: snd-hda-intel0x8086 0x27d8 0

can't shutdown pc when using iptables rule

2009-06-01 Thread Michael Casey
When I add any iptables rule, e.g.: iptables -P INPUT DROP iptables -P OUTPUT ACCEPT iptables -P FORWARD DROP iptables -A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT iptables -A OUTPUT -m state --state ESTABLISHED,RELATED -j ACCEPT The rule works, ok, but when I want to shut down the pc,

wtf vodafone k3715

2009-05-26 Thread Michael Casey
It worked like a charm for a month... Then suddenly it didn't connect: tail -f /var/log/messages http://pastebin.ca/1434877 when I want to launch wvdial: http://pastebin.ca/1434878 I use this config: echo '[Dialer Defaults] Phone = *99***1# Username=vodafone Password=vodafone Stupid Mode=1

Re: cd to folder with spaces - in a script

2009-05-24 Thread Michael Casey
I used it for this: http://pastebin.ca/1432758 generating m3u files for each subfolder too

Re: cd to folder with spaces - in a script

2009-05-21 Thread Michael Casey
yeah, SOLVED: :)) clear; find . -type d | while read FOLDERNAME; do $(cd "$FOLDERNAME"); done Thank you!!

cd to folder with spaces - in a script

2009-05-21 Thread Michael Casey
How can I cd into a dir, when it contains spaces, and I need to use it in a script? the directory: /home/user/this is a folder/something normally I would use: cd /home/user/this\ is\ a\ folder/something/ but in a script I cant just add the "\" like: find . -type d | while read FOLDER; do cd $FO

Re: what happened to spampoison.com?

2009-05-19 Thread Michael Casey
Plus, does someone has the full video (it was about ~20 minutes) of the BBC clickonline botnet programme? I found a shorter one of it: http://news.bbc.co.uk/2/hi/programmes/click_online/7932816.stm

what happened to spampoison.com?

2009-05-19 Thread Michael Casey
What happened to http://www.spampoison.com/ ? Does anybody know a good site, that makes similar activity? I mean to "fight" against spam? Like putting a link to a site, and that link points to another site, what's full with False email addresses :) Thank you

Re: if no NFS server clients are waiting..

2009-05-14 Thread Michael Casey
the fstab entry is this vim /etc/fstab 192.168.1.1:/mnt/share/ /home/user/Desktop/Share/ nfs defaults,ro,nfsvers=3,nolock 0 0

Re: if no NFS server clients are waiting..

2009-05-14 Thread Michael Casey
I tried "ls --color=never" https://bugzilla.redhat.com/show_bug.cgi?id=468049 it still waits I tried on the client side with other mount options: intr, soft it still waits update :D : I turn the NFS server down Clients hang reboot client client cant see the NFS share, but at least it doesn't wai

if no NFS server clients are waiting..

2009-05-13 Thread Michael Casey
What can I do, If the NFS server is rebooting/offline? I mean the clients just wait and wait and wait... I tried to set timeo=5,retrans=2 mount options when mounting nfs in fstab on client side Thank you for any tips

Re: if no NFS server clients are waiting..

2009-05-13 Thread Michael Casey
still no luck, clients are just waiting... Can I set a timeout somewhere? On Wed, May 13, 2009 at 11:23 PM, Michael Casey wrote: > What can I do, If the NFS server is rebooting/offline? > I mean the clients just wait and wait and wait... > > I tried to set > > timeo=5,retrans=2

Re: Iceweasel Lenny

2009-05-13 Thread Michael Casey
ok, thank you On Wed, May 13, 2009 at 3:57 PM, Johannes Wiedersich < johan...@physik.blm.tu-muenchen.de> wrote: > Michael Casey wrote: > > Firefox is at 3.0.10 > > Iceweasel is at 3.0.6 [stable] > > > > Sorry for asking, but doesn't it makes a security hole,

Iceweasel Lenny

2009-05-13 Thread Michael Casey
Firefox is at 3.0.10 Iceweasel is at 3.0.6 [stable] Sorry for asking, but doesn't it makes a security hole, having a non up-to-date Iceweasel? Thank you

Re: dhcp id

2009-05-12 Thread Michael Casey
If I del the # from #send host-name #send dhcp-client-identifier then I could ping the Debian pc by hostname but if I think of itI just comment it out, then the dhcp of my router will give good ip's, thanks :) On Tue, May 12, 2009 at 1:01 PM, Michael Casey wrote: > when I

Re: NFS slow nautilus

2009-05-12 Thread Michael Casey
problem solved: I used nfsvers=3 option in fstab On Tue, May 12, 2009 at 7:42 PM, Michael Casey wrote: > I have an NFS share. I mounted it with mount. I can browse it in eg.: > midnight commander, I can play a film from it with the command-line > mplayer > > Why can

NFS slow nautilus

2009-05-12 Thread Michael Casey
I have an NFS share. I mounted it with mount. I can browse it in eg.: midnight commander, I can play a film from it with the command-line mplayer Why can't I browse the NFS directory with Nautilus (GNOME) ??? :( - When I open the NFS folder with Nautilus...it just waits...and waits :) :D :

dhcp id

2009-05-12 Thread Michael Casey
when I finish a "Desktop Debian" install, I always have to change the dhcp id, in: "/etc/dhcp3/dhclient.conf" because the "send dhcp-client-identifier" is always the same Is this a feature or a bug? :) or I must write a script to change the dhcp identifier to a random id :P thank you