Re: [gentoo-user] Optional /usr merge in Gentoo

2013-08-17 Thread the . guard
 But requiring
 people to have an initramfs to boot a system that doesn't legitimately
 require it is silly. I don't even have /usr mounted separately, but
 there are many, many different system configurations out there and
 Gentoo is famous for supporting a wide variety. That variety is stomped
 on if something like a /usr merge is forced. It also makes building your
 default environment more complicated due to generating an initramfs.

Absolutely agreed.



[gentoo-user] Empty GLU

2013-06-09 Thread the guard
 Hello, friends!
After emerging media-libs/glu-9.0.0 I get an empty shared library. Hence I get 
a link time error emerging some
other packages that require GLU. Do you mind sharing your symbols? Any 
suggestions on how to fix this?

# nm -D /usr/lib/libGLU.so.1.3.1 
 w _Jv_RegisterClasses
 U _Unwind_Resume
 U _ZTVN10__cxxabiv117__class_type_infoE
 U _ZTVN10__cxxabiv120__si_class_type_infoE
 U _ZTVN10__cxxabiv121__vmi_class_type_infoE
 U _ZdaPv
 U _ZdlPv
 U _Znaj
 U _Znwj
 U __assert_fail
0008013c A __bss_start
 w __cxa_finalize
 U __cxa_pure_virtual
 U __fprintf_chk
 w __gmon_start__
 U __gxx_personality_v0
 U __longjmp_chk
 U __printf_chk
0008013c A _edata
00080144 A _end
00062c18 T _fini
1e44 T _init
 U _setjmp
 U abort
 U cosf
 U exit
 U fclose
 U floorf
 U fopen
 U fputc
 U free
 U fscanf
 U fwrite
 U glBegin
 U glColor3f
 U glDisable
 U glEnable
 U glEnd
 U glEvalCoord1f
 U glEvalCoord2f
 U glEvalMesh1
 U glEvalMesh2
 U glEvalPoint1
 U glEvalPoint2
 U glGetFloatv
 U glGetIntegerv
 U glGetString
 U glGetTexLevelParameteriv
 U glMap1f
 U glMap2f
 U glMapGrid1f
 U glMapGrid2d
 U glMapGrid2f
 U glMultMatrixd
 U glMultMatrixf
 U glNormal3f
 U glNormal3fv
 U glOrtho
 U glPixelStorei
 U glPolygonMode
 U glPopAttrib
 U glPushAttrib
 U glScalef
 U glTexCoord2f
 U glTexImage1D
 U glTexImage2D
 U glTexImage3D
 U glTranslated
 U glTranslatef
 U glVertex2f
 U glVertex2fv
 U glVertex3f
 U glVertex3fv
 U malloc
 U memcpy
 U putchar
 U puts
 U realloc
 U sincos
 U sincosf
 U sinf
 U sqrt
 U sqrtf
 U stderr
 U strcmp
 U strcpy
 U strlen
 U strtod
 U strtok

# file /usr/lib/libGLU.so.1.3.1 
/usr/lib/libGLU.so.1.3.1: ELF 32-bit LSB shared object, Intel 80386, version 1 
(SYSV), dynamically linked, stripped

# ls -alh /usr/lib/libGLU.so.1.3.1 
-rwxr-xr-x 1 root root 510K Jun  9 11:29 /usr/lib/libGLU.so.1.3.1








[gentoo-user] Re: [gentoo-user] /usr/lib/dri/i810_dri.so: No such file or directory

2013-06-02 Thread the guard



 Grant emailgr...@gmail.com:
 I'm getting this in /var/log/Xorg.0.log on a very old desktop:
 
 (EE) AIGLX error: dlopen of /usr/lib/dri/i810_dri.so failed
 (/usr/lib/dri/i810_dri.so: cannot open shared object file: No such
 file or directory)
 (EE) AIGLX: reverting to software rendering
 
 The system is remote to me but I'm pretty sure X is working.  I think
 it's supposed to be a mesa file but I've tried reinstalling mesa:
 
 [ebuild   R] media-libs/mesa-9.1.2-r1  USE=classic egl gallium
 llvm nptl pax_kernel pic shared-glapi -bindist -debug -gbm -gles1
 -gles2 -openvg -osmesa (-r600-llvm-compiler) (-selinux) -vdpau
 (-wayland) -xa -xorg -xvmc PYTHON_SINGLE_TARGET=python2_7
 -python2_6 PYTHON_TARGETS=python2_7 -python2_6 VIDEO_CARDS=intel
 -i915 -i965 -nouveau -r100 -r200 -r300 -r600 -radeon (-radeonsi)
 -vmware
 
 - Grant
Looks like Intel video driver.


[gentoo-user] Re: [gentoo-user] IPTables - Going Stateless

2013-05-21 Thread the guard



Вторник, 21 мая 2013, 11:07 -04:00 от Nick Khamis sym...@gmail.com:
 Hello Everyone,
 
 We recently moved our stateful firewall inside, and would like to
 strip down the firewall at our router connected to the outside world.
 The problem I am experiencing is getting things to work properly
 without connection tracking. I hope I am not in breach of mailing list
 rules however, a stripped down configuration is as follows:
 
 #!/bin/bash
 IPTABLES='/sbin/iptables'
 
 #Set interface values
 INTIF1='eth0'
 
 #flush rules and delete chains
 $IPTABLES -F
 $IPTABLES -X
 
 #echo -e- Accepting input lo traffic
 $IPTABLES -A INPUT -i lo -j ACCEPT
 
 #echo -e- Accepting output lo traffic
 $IPTABLES -A OUTPUT -o lo -j ACCEPT
 
 #echo -e- Defined Chains
 $IPTABLES -N TCP
 $IPTABLES -N UDP
 
 #echo -e- Accepting SSH Traffic
 $IPTABLES -A TCP -p tcp -m tcp -s 192.168.2.0/24 -d 192.168.2.5
 --dport 22 -j ACCEPT
 $IPTABLES -A TCP -p tcp -m tcp -s 0.0.0.0/0 -d 192.168.2.5 --dport 22 -j DROP
 
 #echo -e- Accepting input TCP and UDP traffic to open ports
 $IPTABLES -A INPUT -i $INTIF1 -p tcp --syn -j TCP
 $IPTABLES -A INPUT -i $INTIF1 -p udp -j UDP
 
 #echo -e- Accepting output TCP and UDP traffic to open ports
 $IPTABLES -A OUTPUT -o $INTIF1 -p tcp --syn -j TCP
 $IPTABLES -A OUTPUT -o $INTIF1 -p udp -j UDP
 
 #echo -e- Dropping input TCP and UDP traffic to closed ports
 # $IPTABLES -A INPUT -i $INTIF1 -p tcp -j REJECT --reject-with tcp-rst
 # $IPTABLES -A INPUT -i $INTIF1 -p udp -j REJECT --reject-with
 icmp-port-unreachable
 
 #echo -e- Dropping output TCP and UDP traffic to closed ports
 # $IPTABLES -A OUTPUT -o $INTIF1 -p tcp -j REJECT --reject-with tcp-rst
 # $IPTABLES -A OUTPUT -o $INTIF1 -p udp -j REJECT --reject-with
 icmp-port-unreachable
 
 #echo -e- Dropping input traffic to remaining protocols sent
 to closed ports
 # $IPTABLES -A INPUT -i $INTIF1 -j REJECT --reject-with icmp-proto-unreachable
 
 #echo -e- Dropping output traffic to remaining protocols sent
 to closed ports
 # $IPTABLES -A OUTPUT -o $INTIF1 -j REJECT --reject-with 
 icmp-proto-unreachable
 
 
 Everything works fine with the REJECT rules commented out, but when
 included SSH access is blocked out. Not sure why, isn't the sequence
 correct (i.e., the ACCPET entries before the DROP and REJECT)?
 
 Also, any pointers or heads up when going stateless would be greatly
 appreciated.
 
 Kind Regards,
 
 Nick

Looks like the packet never gets to the tcp chain. what is --syn?

[gentoo-user] Re: [gentoo-user] Alsa Question

2013-05-17 Thread the guard



Пятница, 17 мая 2013, 20:30 +02:00 от Silvio Siefke siefke_lis...@web.de:
 Hello,
 
 
 i have build the kernel without modules, all what i need i built in Kernel
 fix. All Howto i see for alsa from Gentoo is with modules, but what i must
 do, when i have fix in Kernel. 
I beleive that if you build the sound card driver into kernel alsa cann have 
problems 
detecting the card. but once alsa has detected the card it should have no 
difference 
weather you built it into kernel or not.

[gentoo-user] microphone

2013-05-11 Thread the guard
 Hi.
My sound playback works fine. when I try to record sound via sox rec I get 
nothing. in the file, but i can hear myself in the headphones while recording.
cat /proc/asound/card0/pcm0c/info 
card: 0
device: 0
subdevice: 0
stream: CAPTURE
id: ALC272X Analog
name: ALC272X Analog
subname: subdevice #0
class: 0
subclass: 0
subdevices_count: 1
subdevices_avail: 1

cat /proc/asound/card0/pcm0p/info  
card: 0
device: 0
subdevice: 0
stream: PLAYBACK
id: ALC272X Analog
name: ALC272X Analog
subname: subdevice #0
class: 0
subclass: 0
subdevices_count: 1
subdevices_avail: 1

Could you help me out with that?


[gentoo-user] Re: [gentoo-user] Problem with iptables logging (iptables: No chain/target/match by that name.)

2013-05-04 Thread the guard



Суббота,  4 мая 2013, 12:41 -04:00 от Nick Khamis sym...@gmail.com:
 Hello Everyone,
 
 While trying to include a logging chain to our IPTables rules, I am
 receiving the following
 error: (iptables: No chain/target/match by that name.
 
 The chain looks like:
 
 # Set Log Limit
 LOGLIMIT=2/s
 LOGLIMITBURST=10
 
 $IPTABLES -N LOGDROP
 
 #echo -e- Logging Dropped Traffic
 # $IPTABLES -A LOGDROP -i $INTIF1 -p tcp -m limit --limit $LOGLIMIT
 --limit-burst $LOGLIMITBURST -j LOG --log-prefix TCP LOGDROP: 
 
 # $IPTABLES -A LOGDROP -j DROP
 # $IPTABLES -A INPUT -p icmp -i $INTIF1 -j LOGDROP
 # $IPTABLES -A INPUT -p tcp  -i $INTIF1 -j LOGDROP
 # $IPTABLES -A INPUT -p udp  -i $INTIF1 -j LOGDROP
 
 Some searching caused me to make sure that I have the correct modules loaded:
 
 modprobe ipt_LOG
 
 Module  Size  Used by
 iptable_nat 3220  0
 nf_nat 11228  1 iptable_nat
 ipt_LOG 6454  0
 ipt_REJECT  1917  3
 nf_conntrack_ipv4   9141  10 nf_nat,iptable_nat
 nf_defrag_ipv4   847  1 nf_conntrack_ipv4
 iptable_filter   988  1
 ip_tables   8370  2 iptable_filter,iptable_nat
 
 
 But still no go.
 
6 or 4?


[gentoo-user] Re[2]: [gentoo-user] Re: [gentoo-user] Problem with iptables logging (iptables: No chain/target/match by that name.)

2013-05-04 Thread the guard



Суббота,  4 мая 2013, 14:06 -04:00 от Nick Khamis sym...@gmail.com:
 On 5/4/13, the guard the.gu...@mail.ru wrote:
 
 
 
  Суббота,  4 мая 2013, 12:41 -04:00 от Nick Khamis sym...@gmail.com:
  Hello Everyone,
 
  While trying to include a logging chain to our IPTables rules, I am
  receiving the following
  error: (iptables: No chain/target/match by that name.
 
  The chain looks like:
 
  # Set Log Limit
  LOGLIMIT=2/s
  LOGLIMITBURST=10
 
  $IPTABLES -N LOGDROP
 
  #echo -e- Logging Dropped Traffic
  # $IPTABLES -A LOGDROP -i $INTIF1 -p tcp -m limit --limit $LOGLIMIT
  --limit-burst $LOGLIMITBURST -j LOG --log-prefix TCP LOGDROP: 
 
  # $IPTABLES -A LOGDROP -j DROP
  # $IPTABLES -A INPUT -p icmp -i $INTIF1 -j LOGDROP
  # $IPTABLES -A INPUT -p tcp  -i $INTIF1 -j LOGDROP
  # $IPTABLES -A INPUT -p udp  -i $INTIF1 -j LOGDROP
 
  Some searching caused me to make sure that I have the correct modules
  loaded:
 
  modprobe ipt_LOG
 
  Module  Size  Used by
  iptable_nat 3220  0
  nf_nat 11228  1 iptable_nat
  ipt_LOG 6454  0
  ipt_REJECT  1917  3
  nf_conntrack_ipv4   9141  10 nf_nat,iptable_nat
  nf_defrag_ipv4   847  1 nf_conntrack_ipv4
  iptable_filter   988  1
  ip_tables   8370  2 iptable_filter,iptable_nat
 
 
  But still no go.
 
  6 or 4?
 
 
 
 I was gazing at your question for a sec. 4 :). I thought you were asking
 about kernel minor+ version, or iptables version... IPV4 Sir :)
 
 N.
 
 


[gentoo-user] Re[2]: [gentoo-user] Re: [gentoo-user] Problem with iptables logging (iptables: No chain/target/match by that name.)

2013-05-04 Thread the guard



Суббота,  4 мая 2013, 14:06 -04:00 от Nick Khamis sym...@gmail.com:
 On 5/4/13, the guard the.gu...@mail.ru wrote:
 
 
 
  Суббота,  4 мая 2013, 12:41 -04:00 от Nick Khamis sym...@gmail.com:
  Hello Everyone,
 
  While trying to include a logging chain to our IPTables rules, I am
  receiving the following
  error: (iptables: No chain/target/match by that name.
 
  The chain looks like:
 
  # Set Log Limit
  LOGLIMIT=2/s
  LOGLIMITBURST=10
 
  $IPTABLES -N LOGDROP
 
  #echo -e- Logging Dropped Traffic
  # $IPTABLES -A LOGDROP -i $INTIF1 -p tcp -m limit --limit $LOGLIMIT
  --limit-burst $LOGLIMITBURST -j LOG --log-prefix TCP LOGDROP: 
 
  # $IPTABLES -A LOGDROP -j DROP
  # $IPTABLES -A INPUT -p icmp -i $INTIF1 -j LOGDROP
  # $IPTABLES -A INPUT -p tcp  -i $INTIF1 -j LOGDROP
  # $IPTABLES -A INPUT -p udp  -i $INTIF1 -j LOGDROP
 
  Some searching caused me to make sure that I have the correct modules
  loaded:
 
  modprobe ipt_LOG
 
  Module  Size  Used by
  iptable_nat 3220  0
  nf_nat 11228  1 iptable_nat
  ipt_LOG 6454  0
  ipt_REJECT  1917  3
  nf_conntrack_ipv4   9141  10 nf_nat,iptable_nat
  nf_defrag_ipv4   847  1 nf_conntrack_ipv4
  iptable_filter   988  1
  ip_tables   8370  2 iptable_filter,iptable_nat
 
 
  But still no go.
 
  6 or 4?
 
 
 
 I was gazing at your question for a sec. 4 :). I thought you were asking
 about kernel minor+ version, or iptables version... IPV4 Sir :)
 
 N.
 
 
Sorry, my bad. -L?


[gentoo-user] Re[2]: [gentoo-user] Server system date synchronizaion

2013-04-26 Thread the guard



Пятница, 26 апреля 2013, 22:41 +02:00 от Alan McKinnon 
alan.mckin...@gmail.com:
 On 26/04/2013 20:54, Paul Hartman wrote:
  On Thu, Apr 25, 2013 at 9:33 AM, Nick Khamis sym...@gmail.com wrote:
  Hello Everyone,
 
  We are trying to sync our server's time with an accurate ntp
  server, and was wondering which of the many solutions are
  considered viable. I did see the
  http://en.gentoo-wiki.com/wiki/Time_Synchronization.
  Our services are quite time sensitive.
  
  I think the classic method is to use net-misc/ntp
  
  See the extensive article at http://en.gentoo-wiki.com/wiki/NTP for
  great examples and description.
  
 
 Do none of us here ever deal with Windows? :-)
 
 I notice that no-one has yet mentioned that Windows does not do ntp, as
 Windows does not do time right, doesn't do timezones right and I
 strongly suspect can't even do dates right (this latter still unproven)
 
 Windows time servers need some magic Microsoft thing called ENTP which
 is in no way related to the ntp we all know and love
 
It refuses to adjust time if you have a wrong date.   timezone is set in your 
system


[gentoo-user] Re[2]: [gentoo-user] Re[2]: [gentoo-user] Server system date synchronizaion

2013-04-26 Thread the guard



Пятница, 26 апреля 2013, 22:54 +02:00 от Alan McKinnon 
alan.mckin...@gmail.com:
 On 26/04/2013 22:46, the guard wrote:
  
  
  
  Пятница, 26 апреля 2013, 22:41 +02:00 от Alan McKinnon 
  alan.mckin...@gmail.com:
  On 26/04/2013 20:54, Paul Hartman wrote:
  On Thu, Apr 25, 2013 at 9:33 AM, Nick Khamis sym...@gmail.com wrote:
  Hello Everyone,
 
  We are trying to sync our server's time with an accurate ntp
  server, and was wondering which of the many solutions are
  considered viable. I did see the
  http://en.gentoo-wiki.com/wiki/Time_Synchronization.
  Our services are quite time sensitive.
 
  I think the classic method is to use net-misc/ntp
 
  See the extensive article at http://en.gentoo-wiki.com/wiki/NTP for
  great examples and description.
 
 
  Do none of us here ever deal with Windows? :-)
 
  I notice that no-one has yet mentioned that Windows does not do ntp, as
  Windows does not do time right, doesn't do timezones right and I
  strongly suspect can't even do dates right (this latter still unproven)
 
  Windows time servers need some magic Microsoft thing called ENTP which
  is in no way related to the ntp we all know and love
 
  It refuses to adjust time if you have a wrong date.   timezone is set in 
  your system
  
 
 
 I was thinking more along the lines of how Windows has no concept of UTC
 set in the hw clock and a local timezone, and how timezones are odd
 things like Harare/Pretoria instead of the official names like
 SAST GMT+2 as set by the scientific timekeeping community.
 
 How about daylight savings? Can Windows deal with that? Other than by
 just shoving the clock back and forward by an hour on the right days?
 
 
All I can say that XP didn't understand our polititians when they cancelled 
summer time
daylight saving. btw I saw a good quote in this list. something like  only a 
white man can believe 
that by tearing a blanket at the bottom and attaching it on the top he will 
make tha blanket longer


[gentoo-user] Re[2]: [gentoo-user] Re: [gentoo-user] bus error during compilation of gcc

2013-04-25 Thread the guard



Воскресенье, 21 апреля 2013, 13:27 +01:00 от Mick michaelkintz...@gmail.com:
 On Saturday 20 Apr 2013 20:29:31 the guard wrote:
  Суббота, 20 апреля 2013, 15:25 -04:00 от Forrest Schultz 
 f.schul...@gmail.com:
   Doesn't lowering makeopts just reduce the number of parallel
   compilations?
  
  yes, it does. I heard somewhere that bus error is caused by lack of
  sufficient amount of memory during compilations.I also tried to remove
  cflags.
 
 Simplifying cflags to something like: 
 
   CFLAGS=-march=native -O2 -pipe
 
 may help and also setting makeopts to 1:
 
   MAKEOPTS=-j1
 
 
 but none of the above will help if the problem is due to a bug.  Have you 
 done 
 the basics like revdep-rebuild and python-updater?
 
 -- 
 Regards,
 Mick
 
 
didn't help, Mick

[gentoo-user] Re[2]: [gentoo-user] Re: bus error during compilation of gcc

2013-04-22 Thread the guard



Воскресенье, 21 апреля 2013, 19:42 UTC от Nuno J. Silva (aka njsg) 
nunojsi...@ist.utl.pt:
 On 2013-04-20, the guard the.gu...@mail.ru wrote:
 
 
 
  Суббота, 20 апреля 2013, 19:56 UTC от Grant Edwards 
  grant.b.edwa...@gmail.com:
  On 2013-04-20, the guard the.gu...@mail.ru wrote:
  
   The package i decided to install required a gcc rebuild so I started
   rebuilding it and got a bus error. I've googled and found suggestions
   to lower makeopts, but it didn't help. 
  
  Every time I've gotten bus errors when building things it turned out
  to be a hardware problem.
  
  Bad RAM, failing CPU, failing motherboard power supply capacitors, bad
  disk controller card (obviously, that was a _long_ time ago).
  
  If I were you, I'd start by running memtest86+ overnight.
  
  
  memtest revealed nothing
 
 Which does not mean there's nothing there ;-)
 
No, this isn't funny. Everything else compiles fine. My hardware is fine! It's 
a software problem. How do I fix it?
Should I file a bugreport?


[gentoo-user] Re: [gentoo-user] A torrent client which can listen to interface

2013-04-22 Thread the guard



Понедельник, 22 апреля 2013, 22:48 +05:30 от Nilesh Govindrajan 
m...@nileshgr.com:
 
 Hi, 
 I'm looking for a torrent client which can listen to an interface instead of 
 ips. Any pointers? 
ammm. configure transmission to use a specified port and write iptables rules???

[gentoo-user] Re[2]: [gentoo-user] bus error during compilation of gcc

2013-04-20 Thread the guard



Суббота, 20 апреля 2013, 23:24 +05:30 от Nilesh Govindrajan m...@nileshgr.com:
 On Saturday 20 April 2013 10:59:09 PM IST, the guard wrote:
  Hello, gentlemen
 
  The package i decided to install required a gcc rebuild so I started
  rebuilding it and got a bus error. I've googled and found suggestions
  to lower makeopts, but it didn't help.
 
 
 Quite interestingly, I had the *exactly* same problem few days ago and 
 I ended up reinstalling it totally.
 
 
 
Excuse me, but reinstalling what?

[gentoo-user] Re: [gentoo-user] bus error during compilation of gcc

2013-04-20 Thread the guard



Суббота, 20 апреля 2013, 15:25 -04:00 от Forrest Schultz f.schul...@gmail.com:
 
 Doesn't lowering makeopts just reduce the number of parallel compilations?
 

yes, it does. I heard somewhere that bus error is caused by lack of sufficient 
amount of memory during compilations.I also tried to remove cflags.

[gentoo-user] Re: [gentoo-user] Re: bus error during compilation of gcc

2013-04-20 Thread the guard



Суббота, 20 апреля 2013, 19:56 UTC от Grant Edwards grant.b.edwa...@gmail.com:
 On 2013-04-20, the guard the.gu...@mail.ru wrote:
 
  The package i decided to install required a gcc rebuild so I started
  rebuilding it and got a bus error. I've googled and found suggestions
  to lower makeopts, but it didn't help. 
 
 Every time I've gotten bus errors when building things it turned out
 to be a hardware problem.
 
 Bad RAM, failing CPU, failing motherboard power supply capacitors, bad
 disk controller card (obviously, that was a _long_ time ago).
 
 If I were you, I'd start by running memtest86+ overnight.
 
 -- 
 Grant
 
 
 
 
 
memtest revealed nothing


[gentoo-user] Re[2]: [gentoo-user] Removing pulseaudio

2013-04-19 Thread the guard
 Sound started working in Counter-Strike 1.6 only after i installed PA



[gentoo-user] Re: [gentoo-user] user folder in path when mounting

2013-03-28 Thread the guard



Среда, 27 марта 2013, 16:05 -07:00 от Grant emailgr...@gmail.com:
I've been mounting my external HD in thunar.  When I clicked the
device icon, the HD was mounted to /media/VOLUME_LABEL/.  Now I see
the path has changed to /run/media/grant/VOLUME_LABEL/ and the grant
folder is:

drwxr-x---+ 3 root root

which I think is preventing my automated remote backups from working
because the backup user's home directory which contains
authorized_keys is on the backup HD.

What is the right way to get this working again?

- Grant

udev rules maybe. 


[gentoo-user] Re: [gentoo-user] Sync, emerge -puND world, and WHAM!!! ~100 packages to merge.

2013-03-28 Thread the guard



Среда, 27 марта 2013, 18:09 UTC от Alan Mackenzie a...@muc.de:
Hi, Gentoo!

Has anybody else seen this?  I did a sync, then emerge -puND world and
got a list of ~100 packages to merge.  About a third of them seem to be
new perl stuff, 13 packages with gnome, and a lot of this and that.

Most worrying is sys-fs/udisks-2.1.0.  Should I be worried about this
(all my other udev-ish stuff is up to date), or will it just work?

But getting such a large update, all at once, seems worrying.  Should I
worry about anything, or just plough ahead with the update?

-- 
Alan Mackenzie (Nuremberg, Germany).

depends on how long it's been since you had the last uodate


[gentoo-user] Re: [gentoo-user] Problem with kworld usb dvb-t stick not working

2013-03-23 Thread the guard
 error while loading driver (-19)
must be a kernel problem