Re: Just a simple question.

2024-09-11 Thread Gerard ROBIN
Le Tue, Sep 10, 2024 at 08:18:03PM -0400, Maureen L Thomas a écrit :
> Date: Tue, 10 Sep 2024 20:18:03 -0400
> From: Maureen L Thomas 
> To: debian-user@lists.debian.org
> Subject: Just a simple question.
> 
> My old HP is not working right and it is very old.  I am looking at laser
> printers and have always favored HP.  But, in saying that I am open to any
> brand.  I always get an all in one model since it does come in handy.  Any
> advice is welcome.  Thanks in advance.

Same problem, my old HP printer worked fine with HPLIP but new HP printers
don't support HPLIP anymore. Finally I bought a Brother that I could
configure very easily with Bookworm. And if needed Brother provides Debian
packages for configuration.

-- 
Gerard


 Created with Mutt  2.2.1
 under Debian Linux BOOKWORM




Re: printer replacement

2024-08-30 Thread Gerard ROBIN
Le Fri, Aug 30, 2024 at 06:49:41AM +0100, Brad Rogers a écrit :
> Date: Fri, 30 Aug 2024 06:49:41 +0100
> From: Brad Rogers 
> To: debian-user@lists.debian.org
> Cc: Debian Users ML 
> Subject: Re: printer replacement
> X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on bendel.debian.org
> X-Spam-Level: 
> X-Spam-Status: No, score=-16.1 required=4.0 tests=DKIM_SIGNED,DKIM_VALID,
>  DKIM_VALID_AU,DKIM_VALID_EF,LDOSUBSCRIBER,LDO_WHITELIST,
>  MISSING_HEADERS,PGPSIGNATURE,RCVD_IN_DNSWL_NONE,RCVD_IN_MSPIKE_H4,
>  RCVD_IN_MSPIKE_WL,T_SCC_BODY_TEXT_LINE autolearn=unavailable
>  autolearn_force=no version=3.4.6
> X-Mailer: Claws Mail 4.3.0git35 (GTK 3.24.43; x86_64-pc-linux-gnu)
> 
> On Fri, 30 Aug 2024 00:27:39 +0200
> Gerard ROBIN  wrote:
> 
> Hello Gerard,
> 
> I suspect this will fall on deaf ears, but hear goes..
> 
> >tia.
> 
> Four people replied to this exact same question when you asked it
> yesterday.
> 
> Please read them.

thanks for your reply. Sorry for sending this useless email. I had forgotten
that I was no longer registered on the debian-user list and when I didn't get
a response to my message I realized it and I registered and resent my message.
I read the messages of those who answered me and I thank them. I was asking
for help because I tried to configure the HP Smart Tank 7006 printer but it
was impossible: HPLIP is not suitable, CUPS does not see the printer, avahi
does not either. The Linux driver for this printer is missing. Finally I
returned it and now I'm still looking ... I will think about what Van Snyder
wrote and look elsewhere than at HP ?
Thanks again to all four of you.

-- 
Gerard


 Created with Mutt  2.2.1
 under Debian Linux BOOKWORM




printer replacement

2024-08-29 Thread Gerard ROBIN


Hello,
my old hp ptotosmart printer died. It worked fine with HPLIP. Now I have to
buy a new one but they all use "HP Smart" for Windows exclusively. I would
like to know if these printers are still compatible with HPLIP. The printer
I want to buy is the "HP OfficeJet Pro 8134e All-ine-One" which is linux
compatible according to the specifications but which is configurable with
"HP Smart" under Windows. Will HPLIP be valid for this printer also under
linux ? Otherwise how can it be configured ?

tia.

-- 
Gerard


 Created with Mutt  2.2.1
 under Debian Linux BOOKWORM




printer replacement

2024-08-29 Thread Gerard ROBIN
Hello,
my old hp ptotosmart printer died. It worked fine with HPLIP. Now I have to
buy a new one but they all use "HP Smart" for Windows exclusively. I would
like to know if these printers are still compatible with HPLIP. The printer
I want to buy is the "HP OfficeJet Pro 8134e All-ine-One" which is linux
compatible according to the specifications but which is configurable with
"HP Smart" under Windows. Will HPLIP be valid for this printer also under
linux ? Otherwise how can it be configured ?

tia.

-- 
Gerard


 Created with Mutt  2.2.1
 under Debian Linux BOOKWORM




"Name or service not known" in Bookworm on Kubernetes

2023-06-27 Thread Robin Gustafsson
Hi,

I'm running Debian on Kubernetes using the official Docker images [1].

In Bookworm, attempted connections to some internal domains fail with
"Name or service not known". It works as expected in Bullseye.

DNS lookups with `dig` and `host` work as expected, but most programs, e.g.
`nc`, `telnet` and `curl`, fail. `getaddrinfo` fails to resolve the name
(returns -2).

The problem seems to occur only for domains managed by the DNS in the Kubernetes
cluster.

For example (with altered domain names):

root@debian12:/# nc -zv dev.example.com 443
nc: getaddrinfo for host "dev.example.com" port 443: Name or
service not known

root@debian12:/# dig dev.example.com
; <<>> DiG 9.18.16-1~deb12u1-Debian <<>> dev.example.com
;; global options: +cmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 24682
;; flags: qr rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 0, ADDITIONAL: 1

;; OPT PSEUDOSECTION:
; EDNS: version: 0, flags:; udp: 1232
; COOKIE: d2bf261c4440a84d (echoed)
;; QUESTION SECTION:
;dev.example.com. IN A

;; ANSWER SECTION:
dev-nl.k8s-staging.example.com. 30 IN A 10.100.57.247

;; Query time: 4 msec
;; SERVER: 10.100.0.10#53(10.100.0.10) (UDP)
;; WHEN: Mon Jun 26 11:37:45 UTC 2023
;; MSG SIZE rcvd: 108

root@debian12:/# host dev.example.com
dev-nl.k8s-staging.example.com has address 10.100.57.247

root@debian12:/# nc -zv dev-nl.k8s-staging.example.com 443
Connection to dev-nl.k8s-staging.example.com (10.100.57.247)
443 port [tcp/*] succeeded!

The configuration files /etc/nsswitch.conf, /etc/host.conf, /etc/resolv.conf,
/etc/hosts, and /etc/gai.conf are all identical in Bullseye and Bookworm, except
for one line in /etc/hosts with the containers' own IP and hostname.

I found no obviously interesting differences in the lists of installed packages
(other than newer versions of almost everything, of course).

It could be container/Kubernetes-specific. I don't have a similar DNS setup
elsewhere to reproduce it.

Any ideas about noteworthy differences between Bullseye and Bookworm w.r.t DNS,
or what to try next to figure it out?

Please CC me in replies.

[1]: https://hub.docker.com/_/debian

Regards,
Robin



Re: fetchmail

2022-09-12 Thread Gerard ROBIN
Le Mon, Sep 12, 2022 at 09:06:08AM -, Bert Riding a écrit :
> Date: Mon, 12 Sep 2022 09:06:08 - (UTC)
> From: Bert Riding 
> To: debian-user@lists.debian.org
> Subject: Re: fetchmail
> 
> On Sat, 10 Sep 2022 22:50:01 +0200, Gerard ROBIN wrote:
> 
> > Hello,
> > in Bullseye (stable) fetchmail works fine, but in Bookworm (testing) I
> > get:
> > 
> > fetchmail: can't accept options while a background fetchmail is running.
> > argc = 5, arg list:
> > arg 1 = "-k"
> > arg 2 = "--ssl"
> > arg 3 = "--mda"
> > arg 4 = "/usr/bin/procmail -d %T"
> > 
> > No mail arrived since 
> > 
> > ps ax | grep fetchmail
> > 
> > 1943 ?Ss 0:00 fetchmail --nodetach --daemon 300
> > 4220 pts/1S+ 0:00 grep fetchmail
> > 
> > how can i prevent the fetchmail daemon from running on startup in
> > Bookworm ?
> 
> 
> Fetchmail can now run as a daemon, started by systemd.
Ok good to know.

> I think maybe the real 
> solution for this problem is
> 
> systemctl --user stop fetchmail.service
> systemctl --user disable fetchmail.service
it works, just add --user option.
I keep fetchmail.

Thanks so much

-- 
Gerard
___
***
Created with Mutt  2.2.7
under Debian Linux BOOKWORM
***



Re: fetchmail

2022-09-11 Thread Gerard ROBIN
Le Sun, Sep 11, 2022 at 09:24:27AM -0400, Greg Wooledge a écrit :
> Date: Sun, 11 Sep 2022 09:24:27 -0400
> From: Greg Wooledge 
> To: debian-user@lists.debian.org
> Subject: Re: fetchmail
> X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on bendel.debian.org
> X-Spam-Level: 
> X-Spam-Status: No, score=-7.7 required=4.0
>  tests=LDOSUBSCRIBER,LDO_WHITELIST, ONEWORD,RDNS_NONE,T_SCC_BODY_TEXT_LINE
>  autolearn=unavailable autolearn_force=no version=3.4.2
> 
> On Sun, Sep 11, 2022 at 12:14:15PM +0200, Gerard ROBIN wrote:
> > My problem is that I don't know what starts it.
> > [...]
> > Debian Bookworm (and Bullseye too) use systemd.
> 
> It's too late now, because you already "solved" the problem by purging
> and reinstalling the package.  (Which is not a bad solution -- just not
> one that enlightens.)

Thank you for your reply. reinstalling fetchmail is not the solution
because on the next start the problem comes back and (I must be stupid)
because despite all the ideas you give me I cannot kill the background
process of fetchmail.
The solution: purge fetchmail and install getmail6.
Getmail6 works well, without complications.

Thanks again.

Gerard


Created with Mutt  2.2.6-1
under Debian Linux BOOKWORM




Re: fetchmail

2022-09-11 Thread Gerard ROBIN
Le Sun, Sep 11, 2022 at 06:18:07AM +0200, to...@tuxteam.de a écrit :
> Date: Sun, 11 Sep 2022 06:18:07 +0200
> From: to...@tuxteam.de
> To: debian-user@lists.debian.org
> Subject: Re: fetchmail
> 
> On Sat, Sep 10, 2022 at 10:45:23PM +0200, Gerard ROBIN wrote:
> > Hello,
> > in Bullseye (stable) fetchmail works fine, but in Bookworm (testing) I
> > get:
> > 
> > fetchmail: can't accept options while a background fetchmail is running.
> > argc = 5, arg list:
> > arg 1 = "-k"
> > arg 2 = "--ssl"
> > arg 3 = "--mda"
> > arg 4 = "/usr/bin/procmail -d %T"
> > 
> > No mail arrived since 
> > 
> > ps ax | grep fetchmail
> > 
> > 1943 ?Ss 0:00 fetchmail --nodetach --daemon 300
> > 4220 pts/1S+ 0:00 grep fetchmail
> > 
> > how can i prevent the fetchmail daemon from running on startup in
> > Bookworm ?
> 
> What is starting it? What init system do you use?

My problem is that I don't know what starts it.
If I knew what started it I might be able to prevent it from starting.
I never had this problem with bullseye.
Debian Bookworm (and Bullseye too) use systemd.

Thanks.

-- 
Gerard
_
*
 Created with Mutt  2.0.5 
 under Debian Linux BULLSEYE
*



Re: fetchmail

2022-09-10 Thread Gerard ROBIN
Le Sat, Sep 10, 2022 at 04:37:40PM -0500, Nate Bargmann a écrit :
> Date: Sat, 10 Sep 2022 16:37:40 -0500
> From: Nate Bargmann 
> To: debian-user@lists.debian.org
> Subject: Re: fetchmail
> X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on bendel.debian.org
> X-Spam-Level: 
> X-Spam-Status: No, score=-12.6 required=4.0 tests=DKIM_SIGNED,DKIM_VALID,
>  DKIM_VALID_AU,DKIM_VALID_EF,LDOSUBSCRIBER,LDO_WHITELIST,ONEWORD,
>  PGPSIGNATURE,SARE_BOUNDARY_LC,T_SCC_BODY_TEXT_LINE autolearn=unavailable
>  autolearn_force=no version=3.4.2
> 
> * On 2022 10 Sep 16:28 -0500, Gerard ROBIN wrote:
> > Hello,
> > in Bullseye (stable) fetchmail works fine, but in Bookworm (testing) I
> > get:
> > 
> > fetchmail: can't accept options while a background fetchmail is running.
> > argc = 5, arg list:
> > arg 1 = "-k"
> > arg 2 = "--ssl"
> > arg 3 = "--mda"
> > arg 4 = "/usr/bin/procmail -d %T"
> > 
> > No mail arrived since 
> > 
> > ps ax | grep fetchmail
> > 
> > 1943 ?Ss 0:00 fetchmail --nodetach --daemon 300
> > 4220 pts/1S+ 0:00 grep fetchmail
> > 
> > how can I prevent the fetchmail daemon from running on startup in
> > Bookworm ?
> 
> Perhaps you need to do something like (as root):
> 
> systemctl stop fetchmail.service
> systemctl disable fetchmail.service
> 
> On a whim I checked what systemctl reports on this Bullseye system:
> 
> $ systemctl status fetchmail.service 
> ● fetchmail.service - LSB: init-Script for system wide fetchmail daemon
>  Loaded: loaded (/etc/init.d/fetchmail; generated)
>  Active: active (exited) since Sat 2022-09-10 15:37:33 CDT; 52min ago
>Docs: man:systemd-sysv-generator(8)
> Process: 1790 ExecStart=/etc/init.d/fetchmail start (code=exited, 
> status=0/SUCCESS)
> CPU: 6ms
> 
> Now, I typically do not run fetchmail as a system wide service so I never
> looked at this output but apparently it is harmless as I also see:
> 
> $ ps ax | grep fetchmail
>   10376 ?Ss 0:00 /usr/bin/fetchmail -aKd 60 --sslcertck
>   10818 pts/0S+ 0:00 grep --color=auto fetchmail
> 
> which I had just started a few minutes before reading your mail.  I do
> not find any kind of default configuration under /etc.  Was one added in
> Bookworm?
> 
> - Nate

Thank you for your reply.
The commands 
 systemctl stop fetchmail.service
 systemctl disable fetchmail.service
doesn't work.
I had tried them before sending my message.
I had tried sudo kill -9 ... without success either.
Finally I purged and reinstalled fetchmail and now :
ps ax | grep fetchmail 

3566 pts/0S+ 0:00 grep --color=auto fetchmail

no more daemons in the background and I can load my posts with
fetchmail.
(in Bookworm)
The problem is that I don't know how to fix the problem if it
starts again without purging the package :(

-- 
Gerard


Created with Mutt  2.2.6-1
under Debian Linux BOOKWORM




fetchmail

2022-09-10 Thread Gerard ROBIN
Hello,
in Bullseye (stable) fetchmail works fine, but in Bookworm (testing) I
get:

fetchmail: can't accept options while a background fetchmail is running.
argc = 5, arg list:
arg 1 = "-k"
arg 2 = "--ssl"
arg 3 = "--mda"
arg 4 = "/usr/bin/procmail -d %T"

No mail arrived since 

ps ax | grep fetchmail

1943 ?Ss 0:00 fetchmail --nodetach --daemon 300
4220 pts/1S+ 0:00 grep fetchmail

how can I prevent the fetchmail daemon from running on startup in
Bookworm ?

TIA

-- 
Gerard
_
*
 Created with Mutt  2.0.5 
 under Debian Linux BULLSEYE
*



fetchmail

2022-09-10 Thread Gerard ROBIN
Hello,
in Bullseye (stable) fetchmail works fine, but in Bookworm (testing) I
get:

fetchmail: can't accept options while a background fetchmail is running.
argc = 5, arg list:
arg 1 = "-k"
arg 2 = "--ssl"
arg 3 = "--mda"
arg 4 = "/usr/bin/procmail -d %T"

No mail arrived since 

ps ax | grep fetchmail

1943 ?Ss 0:00 fetchmail --nodetach --daemon 300
4220 pts/1S+ 0:00 grep fetchmail

how can i prevent the fetchmail daemon from running on startup in
Bookworm ?

TIA

-- 
Gerard


Created with Mutt  2.2.6-1
under Debian Linux BOOKWORM




Re: Re: linux-image-5.7.0-1-amd64: Oops on kernel (NULL pointer dereference) after NFS is mounted on client

2020-07-25 Thread Robin Gutöhrlein
Hi,
yes I tried it. I typed the whole "Oops" screen, tried to send it, but
it would not. The report it saved into a file was scrambled...
Best regards



linux-image-5.7.0-1-amd64: Oops on kernel (NULL pointer dereference) after NFS is mounted on client

2020-07-24 Thread Robin Gutöhrlein
Hello,

my server (Debian bullseye) is crashing after i mount a nfs (with
kerberos) share on a client machine (same debian). I have no idea how
to file the bug (and where it belongs). I can't use the reportbug tool
since I do not have a MTA configured.


BUG: kernel NULL pointer dereference, adress: 10
#PF: supervisor read access in kernel mode
#PF: error_code(0x) -not-present page
PGD0 P4D 0
Oops:  [#1] SMP PTI
...
RIP: 0010:__cgroup_bfp_run_filter_skb+0x26b/0x3d0
...
Call Trace:
  ip_finish_output
  ip_output
  ? __ip_finish_output
  __ip_queue_xmit
  ? __switch_to_asm
  ? __switch_to_asm
  ? __switch_to_asm
  __tcp_transmit_skb
  tcp_write_xmit
  __tcp_push_pending_frames
  inet_shutdown
  svc_delete_xprt
  svc_close_net
  svc_shutdown_net
  nfsd_destroy
  nfsd
  kthread
  ? nfsd_destroy
  ?  kthread_park
  ret_from_fork

Sincerly
Robin



Re:[epilogue] cpu frequence

2020-02-03 Thread Gerard ROBIN
On Sat, Feb 01, 2020 at 10:37:55PM +0100, Gerard ROBIN wrote:
> Date: Sat, 1 Feb 2020 22:37:55 +0100
> From: Gerard ROBIN 
> To: debian-user@lists.debian.org
> Subject: Re: cpu frequence
 
> On Sat, Feb 01, 2020 at 08:11:17PM +0100, Jörg-Volker Peetz wrote:
> > Date: Sat, 1 Feb 2020 20:11:17 +0100
> > From: Jörg-Volker Peetz 
> > To: debian-user@lists.debian.org
> > Subject: Re: cpu frequence
> 
> > Then, take a look at the available governors:
> > 
> > $ cat /sys/devices/system/cpu/cpufreq/policy?/scaling_available_governors
> > 
> > or using cpupower, if available. As the name says, "powersave" would be the
> > better choice.
> > Take a look at https://wiki.debian.org/CpuFrequencyScaling as how to change 
> > the
> > cpufreq governor permanently even when rebooting. I suppose, you somehow 
> > changed
> > the default behavior.
> 
> Thanks so much I selected performance powersave (I installed
> linux-cpupower) and now the frequency oscillates between 800 MHZ
> and 2.8 GHz. as with Buster. :)
 
I answered too quickly:
in fact when I restarted my laptop the problem returned.
By reading the link  https://wiki.debian.org/CpuFrequencyScaling more carefully
I understood that the laptop-mode-tools package was concerned and I noticed that
the laptop-mode-tools package is not installed in BUSTER and so I simply
uninstalled it in BULLSEYE and now it's really OK.

-- 
Gerard
___
***
Created with Mutt  1.13.2 
under Debian Linux BULLSEYE
***



Re: cpu frequence

2020-02-01 Thread Gerard ROBIN
On Sat, Feb 01, 2020 at 08:11:17PM +0100, Jörg-Volker Peetz wrote:
> Date: Sat, 1 Feb 2020 20:11:17 +0100
> From: Jörg-Volker Peetz 
> To: debian-user@lists.debian.org
> Subject: Re: cpu frequence

> Then, take a look at the available governors:
> 
> $ cat /sys/devices/system/cpu/cpufreq/policy?/scaling_available_governors
> 
> or using cpupower, if available. As the name says, "powersave" would be the
> better choice.
> Take a look at https://wiki.debian.org/CpuFrequencyScaling as how to change 
> the
> cpufreq governor permanently even when rebooting. I suppose, you somehow 
> changed
> the default behavior.

Thanks so much I selected performance powersave (I installed
linux-cpupower) and now the frequency oscillates between 800 MHZ
and 2.8 GHz. as with Buster. :)

-- 
Gerard
___
***
Created with Mutt  1.13.2 
under Debian Linux BULLSEYE
***



Re: cpu frequence

2020-02-01 Thread Gerard ROBIN
On Sat, Feb 01, 2020 at 04:04:29PM +0100, Jörg-Volker Peetz wrote:
> Date: Sat, 1 Feb 2020 16:04:29 +0100
> From: Jörg-Volker Peetz 
> To: debian-user@lists.debian.org
> Subject: Re: cpu frequence
> X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on bendel.debian.org
> X-Spam-Level: 
> X-Spam-Status: No, score=-10.5 required=4.0
>  tests=FREEMAIL_FORGED_FROMDOMAIN,
>  FREEMAIL_FROM,HEADER_FROM_DIFFERENT_DOMAINS,LDOSUBSCRIBER, LDO_WHITELIST
>  autolearn=unavailable autolearn_force=no version=3.4.2
> 
> what is the outcome of the following command:
> 
> $ cat /sys/devices/system/cpu/cpufreq/policy?/scaling_governor
performance
performance
performance
performance

> Regards,
> Jörg.

-- 
Gerard
_
*
 Created with "mutt 1.13.2-1"
 under Debian Linux BULLSEYE
*



Re: cpu frequence

2020-01-31 Thread Gerard ROBIN
On Fri, Jan 31, 2020 at 12:11:49AM +0100, Linux-Fan wrote:
> Date: Fri, 31 Jan 2020 00:11:49 +0100
> From: Linux-Fan 
> To: debian-user@lists.debian.org
> Subject: Re: cpu frequence
> 
> Gerard ROBIN writes:
> 
> > Hello,
> > the maximum frequency of my cpu is 2.8 GHz and under "bullseye" the 
> > frequency
> > of my cpu is always higher than 2.7 GHz. If this is a bug how can we
> > determine which package is affected ?
> 
> Normally, modern CPUs go to high frequency only if they are "loaded". Thus,
> I'd suggest to check if there is any process obviously taking a lot of CPU
> time. `top` might be enough for a glance, but I normally like `htop` and
> `atop` outputs more (`htop` is more "friendly", but `atop` is more
> informative IMHO).
atop (buster):
PRC |  sys0.31s |  user   0.70s |  #proc205  | #trun  1  |  #tslpi  
 252 |  #tslpu 0 |  #zombie0  | #exit  6  |
CPU |  sys   2% |  user  4% |  irq   0%  | idle393%  |  wait
  0% |  ipc notavail |  curf  872MHz  | curscal  31%  |
cpu |  sys   0% |  user  1% |  irq   0%  | idle 98%  |  cpu001 
w  0% |  ipc notavail |  curf  851MHz  | curscal  30%  |
cpu |  sys   1% |  user  2% |  irq   0%  | idle 98%  |  cpu000 
w  0% |  ipc notavail |  curf  850MHz  | curscal  30%  |
cpu |  sys   1% |  user  1% |  irq   0%  | idle 98%  |  cpu003 
w  0% |  ipc notavail |  curf  881MHz  | curscal  31%  |
cpu |  sys   1% |  user  1% |  irq   0%  | idle 98%  |  cpu002 
w  0% |  ipc notavail |  curf  906MHz  | curscal  32%  |
CPL |  avg10.01 |  avg50.15 |  avg15   0.09  |   |  csw 
9428 |  intr4327 || numcpu 4  |
MEM |  tot 7.7G |  free5.6G |  cache 768.7M  | buff   25.6M  |  slab  
127.6M |  shmem  57.2M |  vmbal   0.0M  | hptot   0.0M  |
SWP |  tot 7.9G |  free7.9G ||   |  
 |   |  vmcom   2.5G  | vmlim  11.8G  |
DSK |   sda |  busy  0% |  read   0  | write 27  |  KiB/w   
   5 |  MBr/s0.0 |  MBw/s0.0  | avio 0.59 ms  |

atop (bullseye):
PRC |  sys0.33s |  user   0.63s |  #proc189 |  #trun  1 |  #tslpi   
260  | #tslpu 1  | #zombie0  | clones 6  | #exit  6  |
CPU |  sys   2% |  user  4% |  irq   0% |  idle393% |  wait 
 0%  | ipc notavail  | cycl unknown  | curf 2.75GHz  | curscal  98%  |
cpu |  sys   1% |  user  2% |  irq   0% |  idle 97% |  cpu000 w 
 0%  | ipc notavail  | cycl unknown  | curf 2.77GHz  | curscal  98%  |
cpu |  sys   0% |  user  1% |  irq   0% |  idle 99% |  cpu001 w 
 0%  | ipc notavail  | cycl unknown  | curf 2.74GHz  | curscal  97%  |
cpu |  sys   0% |  user  1% |  irq   0% |  idle 98% |  cpu003 w 
 0%  | ipc notavail  | cycl unknown  | curf 2.74GHz  | curscal  98%  |
cpu |  sys   1% |  user  1% |  irq   0% |  idle 99% |  cpu002 w 
 0%  | ipc notavail  | cycl unknown  | curf 2.73GHz  | curscal  97%  |
CPL |  avg10.10 |  avg50.11 |  avg15   0.09 |   |  csw
14895  |   | intr6027  |   | numcpu 4  |
MEM |  tot 7.8G |  free5.6G |  cache 730.0M |  buff   51.5M |  slab  
125.2M  | shmem 105.2M  | vmbal   0.0M  | hptot   0.0M  | hpuse   0.0M  |
SWP |  tot 7.9G |  free7.9G |   |   |   
 |   |   | vmcom   2.9G  | vmlim  11.8G  |
PSI |  cs 0/0/0 |  ms 0/0/0 |  mf 0/0/0 |  is 0/0/0 |  if 
0/0/0  |   |   |   |   |
DSK |   sdb |  busy  0% |  read   0 |  write  1 |  KiB/r
  0  | KiB/w 28  | MBr/s0.0  | MBw/s0.0  | avio 4.00 ms  |

PID   SYSCPU USRCPUVGROW RGROWRUID  EUID ST 
  EXC  THRS CPUNR   CPU CMD
1935  0.11s  0.26s -8K  -372K root  root -- 
   -   10 S  3   4%  Xorg
2302  0.06s  0.16s  0K 0K user  user -- 
   -7 S  2   2%  xfwm4
3716  0.01s  0.04s  0K 0K user  user -- 
   -4 S  0   1%  gnome-terminal
3656  0.01s  0.04s  0K 0K user  user -- 
   -4 S  0   1%  panel-17-weath
3594  0.01s  0.02s  0K 0K user  user -- 
   -3 S  0   0%  panel-25-cpugr


> The other thing is: As long as it is always below or equal to 2.8 GHz, it
> need not be wrong. However, most machines with U-processors (especially
> notebooks) have a cooling system which does not permit them to sust

cpu frequence

2020-01-30 Thread Gerard ROBIN
Hello,
the maximum frequency of my cpu is 2.8 GHz and under "bullseye" the frequency
of my cpu is always higher than 2.7 GHz. If this is a bug how can we determine
which package is affected ?
With "buster" on the same machine the problem does not occur. The cpu frequency
is between 900 MHz and 1.8 GHz

cpu: intel i5-6200U 
Base frequency: 2.3 GHz
Max Frequency: 2.8 GHz
 
-- 
Gerard
_
*
*  Created with "mutt 1.10.1-2.1"
*  under Debian Linux BUSTER 10.1
*



Re: kernel unsigned

2019-10-03 Thread Gerard ROBIN
On Thu, Oct 03, 2019 at 02:51:29PM +0200, Sven Joachim wrote:
> Date: Thu, 03 Oct 2019 14:51:29 +0200
> From: Sven Joachim 
> To: Gerard ROBIN , debian-user@lists.debian.org
> Subject: Re: kernel unsigned
> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.0.50 (gnu/linux)
> X-Spam-Flag: NO
> 
> On 2019-10-03 12:05 +0200, Gerard ROBIN wrote:
> 
> > Hello,
> > In my BULLSEYE box, when i make "apt upgrade" if a new kernel is installed
> > it is a signed kernel that is installed, but on my machine it is an unsigned
> > kernel that I chose to install.
> 
> Why did you do that in the first place?
because I bought my machine without OS and there is only linux on my machine.

> > How can you force "apt" to install the unsigned kernel?
> > For example:
> > the kernel linux-image-5.2.0-2-amd64-unsigned is the kernel used.
> > "apt upgrade" installs the kernel linux-image-5.2.0-3-amd64 (signed)
> 
> You could install linux-image-5.2.0-3-amd64-unsigned manually, but then
> you lose the linux-image-amd64 metapackage and will miss automatic
> upgrades to newer kernels which is probably not what you want.
I did not know that.

> What exactly bugs you about the signed kernel?  The kernel is so big
> that the extra signatures hardly make a difference.
I read somewhere that the signed kernel was for the "secure boot" of 
microsoft and I have nothing of microsoft on my machine, so that's why 
I installed the unsigned kernel.

Thank you for your clarification.

-- 
Gerard

**
*  Created with "mutt 1.10.1"
*  under Debian Linux BULLSEYE
**



kernel unsigned

2019-10-03 Thread Gerard ROBIN
Hello,
In my BULLSEYE box, when i make "apt upgrade" if a new kernel is installed
it is a signed kernel that is installed, but on my machine it is an unsigned
kernel that I chose to install. How can you force "apt" to install the
unsigned kernel?
For example:
the kernel linux-image-5.2.0-2-amd64-unsigned is the kernel used.
"apt upgrade" installs the kernel linux-image-5.2.0-3-amd64 (signed)

TIA

PS
sorry but I'm not subscribed to the list for now.

-- 
Gerard

**
*  Created with "mutt 1.10.1"
*  under Debian Linux BULLSEYE
**



Re: buster, ekiga.

2019-07-19 Thread Robin Krahl
On 2019-07-19 09:43:46, pe...@easthope.ca wrote:
> ekiga is absent from buster.  Something involving ssl/tls?

Ekiga has been removed as the last upstream release was in 2013, see:
https://tracker.debian.org/pkg/ekiga
https://tracker.debian.org/news/1004860/removed-401-9-from-unstable/
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=911593
Most likely it won’t come back to Debian.  You might want to have a look
at alternatives, for example empathy.

/Robin


signature.asc
Description: PGP signature


Re: IPv4 v IPv6

2019-06-17 Thread Robin Hammond
The size of such a routing table gives me nightmares ! Thank goodness you
have to advertise networks of a reasonably sized prefix length!

On Mon, 17 Jun 2019 at 16:07, Dan Ritter  wrote:

> John Hasler wrote:
> > Gene Heskett wrote:
> > > But that opens yet another container of worms. If I arbitrarily assign
> > > ipv6 local addresses, and later, ipv6 shows up at my side of the
> router,
> > > what if I have an address clash with someone on a satellite circuit in
> > > Ulan Bator.  How is that resolved, by unroutable address blocks such
> as
> > > 192.168.xx.xx is now?
> >
> > In addition to the points made by others, the IPv6 address space is so
> > large that were you to assign a random IPv6 address to every computer in
> > existence (including all the embedded systems) the probability of a
> > collision would be negligible.
>
> ... but only if you were really being random. Humans are
> terrible at doing that unaided.
>
> -dsr-
>
>


Not sure where to report this issue...

2017-01-31 Thread Robin Cook
I am running debian sid and currently all video players the video freezes when 
I try to play a video.   Also the KDE desktop will freeze until I change to one 
of the virtual terminals with CTRL-ALT-F? and then back to KDE desktop with 
ALT-F7.  It will then work for a bit then freeze again.

mpv - freezes, both audio and video stop.
mplayer - freezes, video stops, audio continues.
xine - freezes, video stops, audio continues.

I have to use the kill command on them to close them.

On mpv if I use -vo= xv or x11 it will work all others (vdpau, opengl, sdl, 
vaapi) freeze except for drm which gets the below error

[vo/drm] VT_GETMODE failed: Inappropriate ioctl for device
[vo/drm] Failed to set up VT switcher. Terminal switching will be unavailable.
[vo/drm] Cannot set CRTC: Permission denied
Error opening/initializing the selected video_out (--vo) device.

---

lspci -nn | grep VGA
08:00.0 VGA compatible controller [0300]: Advanced Micro Devices, Inc. 
[AMD/ATI] RV770 [Radeon HD 4870] [1002:9440]

---

xrandr --listproviders
Providers: number : 1
Provider 0: id: 0x54 cap: 0xf, Source Output, Sink Output, Source Offload, Sink 
Offload crtcs: 2 outputs: 3 associated providers: 0 name:ATI Radeon 4800 Series 
@ pci::08:00.0

---

xrandr --setprovideroffloadsink radeon Intel
Could not find provider with name radeon

---

DRI_PRIME=1 glxinfo | grep "OpenGL renderer"
OpenGL renderer string: Gallium 0.4 on AMD RV770 (DRM 2.48.0 / 4.9.0-1-amd64, 
LLVM 3.9.1)

---

From /var/log/dmesg

[   12.804277] [drm] radeon kernel modesetting enabled.
[   12.859566] [drm] initializing kernel modesetting (RV770 0x1002:0x9440 
0x1043:0x0388).
[   12.859595] [drm] register mmio base: 0xFE9E
[   12.859600] [drm] register mmio size: 65536
[   12.860436] ATOM BIOS: 9440.11.17.0.18.AS01
[   12.860492] radeon :08:00.0: VRAM: 1024M 0x - 
0x3FFF (1024M used)
[   12.860499] radeon :08:00.0: GTT: 1024M 0x4000 - 
0x7FFF
[   12.860503] [drm] Detected VRAM RAM=1024M, BAR=256M
[   12.860507] [drm] RAM width 256bits DDR
[   12.860688] [TTM] Zone  kernel: Available graphics memory: 4097956 kiB
[   12.860692] [TTM] Zone   dma32: Available graphics memory: 2097152 kiB
[   12.860695] [TTM] Initializing pool allocator
[   12.860707] [TTM] Initializing DMA pool allocator
[   12.860748] [drm] radeon: 1024M of VRAM memory ready
[   12.860752] [drm] radeon: 1024M of GTT memory ready.
[   12.860775] [drm] Loading RV770 Microcode
[   12.951699] radeon :08:00.0: firmware: direct-loading firmware 
radeon/RV770_pfp.bin
[   12.986773] radeon :08:00.0: firmware: direct-loading firmware 
radeon/RV770_me.bin
[   13.003314] radeon :08:00.0: firmware: direct-loading firmware 
radeon/R700_rlc.bin
[   13.080896] radeon :08:00.0: firmware: direct-loading firmware 
radeon/RV770_smc.bin
[   13.080912] [drm] Internal thermal controller with fan control
[   13.081034] [drm] radeon: power management initialized
[   13.081047] [drm] GART: num cpu pages 262144, num gpu pages 262144
[   13.084763] [drm] enabling PCIE gen 2 link speeds, disable with 
radeon.pcie_gen2=0
[   13.088409] [drm] PCIE GART of 1024M enabled (table at 0x0004).
[   13.088434] radeon :08:00.0: WB enabled
[   13.088436] radeon :08:00.0: fence driver on ring 0 use gpu addr 
0x4c00 and cpu addr 0x88022bd43c00
[   13.088438] radeon :08:00.0: fence driver on ring 3 use gpu addr 
0x4c0c and cpu addr 0x88022bd43c0c
[   13.088440] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[   13.088440] [drm] Driver supports precise vblank timestamp query.
[   13.088459] radeon :08:00.0: irq 90 for MSI/MSI-X
[   13.088467] radeon :08:00.0: radeon: using MSI.
[   13.088487] [drm] radeon: irq initialized.
[   13.134370] [drm] ring test on 0 succeeded in 1 usecs
[   13.134436] [drm] ring test on 3 succeeded in 1 usecs
[   13.134763] [drm] ib test on ring 0 succeeded in 0 usecs
[   13.134786] [drm] ib test on ring 3 succeeded in 0 usecs
[   13.135401] [drm] Radeon Display Connectors
[   13.135405] [drm] Connector 0:
[   13.135409] [drm]   VGA-1
[   13.135412] [drm]   DDC: no ddc bus - possible BIOS bug - please report to 
xorg-driver-...@lists.x.org
[   13.135414] [drm]   Encoders:
[   13.135417] [drm] CRT2: INTERNAL_KLDSCP_DAC2
[   13.135420] [drm] Connector 1:
[   13.135423] [drm]   HDMI-A-1
[   13.135426] [drm]   HPD1
[   13.135431] [drm]   DDC: 0x7e60 0x7e60 0x7e64 0x7e64 0x7e68 0x7e68 0x7e6c 
0x7e6c
[   13.135433] [drm]   Encoders:
[   13.135436] [drm] DFP1: INTERNAL_UNIPHY
[   13.135439] [drm] Connector 2:
[   13.135441] [drm]   DVI-I-1
[   13.135444] [drm]   HPD2
[   13.135449] [drm]   DDC: 0x7e20 0x7e20 0x7e24 0x7e24 0x7e28 0x7e28 0x7e2c 
0x7e2c
[   13.135451] [drm]   Encoders:
[   13.135454] [drm] CRT1: INTERNAL_KLDSCP_DAC1
[   13.135457] [drm] DFP2: INTERNAL_KLDSCP_LVTMA
[   13.182521] [drm] fb mappable at 0xD0241000
[   13.182529] [drm] vra

Not sure where to report this issue...

2017-01-30 Thread Robin Cook
I am running debian sid and currently all video players the video freezes when 
I try to play a video.   Also the KDE desktop will freeze until I change to one 
of the virtual terminals with CTRL-ALT-F? and then back to KDE desktop with 
ALT-F7.  It will then work for a bit then freeze again.

mpv - freezes, both audio and video stop.
mplayer - freezes, video stops, audio continues.
xine - freezes, video stops, audio continues.

I have to use the kill command on them to close them.

On mpv if I use -vo= xv or x11 it will work all others (vdpau, opengl, sdl, 
vaapi) freeze except for drm which gets the below error

[vo/drm] VT_GETMODE failed: Inappropriate ioctl for device
[vo/drm] Failed to set up VT switcher. Terminal switching will be unavailable.
[vo/drm] Cannot set CRTC: Permission denied
Error opening/initializing the selected video_out (--vo) device.

---

lspci -nn | grep VGA
08:00.0 VGA compatible controller [0300]: Advanced Micro Devices, Inc. 
[AMD/ATI] RV770 [Radeon HD 4870] [1002:9440]

---

xrandr --listproviders
Providers: number : 1
Provider 0: id: 0x54 cap: 0xf, Source Output, Sink Output, Source Offload, Sink 
Offload crtcs: 2 outputs: 3 associated providers: 0 name:ATI Radeon 4800 Series 
@ pci::08:00.0

---

xrandr --setprovideroffloadsink radeon Intel
Could not find provider with name radeon

---

DRI_PRIME=1 glxinfo | grep "OpenGL renderer"
OpenGL renderer string: Gallium 0.4 on AMD RV770 (DRM 2.48.0 / 4.9.0-1-amd64, 
LLVM 3.9.1)

---

From /var/log/dmesg

[   12.804277] [drm] radeon kernel modesetting enabled.
[   12.859566] [drm] initializing kernel modesetting (RV770 0x1002:0x9440 
0x1043:0x0388).
[   12.859595] [drm] register mmio base: 0xFE9E
[   12.859600] [drm] register mmio size: 65536
[   12.860436] ATOM BIOS: 9440.11.17.0.18.AS01
[   12.860492] radeon :08:00.0: VRAM: 1024M 0x - 
0x3FFF (1024M used)
[   12.860499] radeon :08:00.0: GTT: 1024M 0x4000 - 
0x7FFF
[   12.860503] [drm] Detected VRAM RAM=1024M, BAR=256M
[   12.860507] [drm] RAM width 256bits DDR
[   12.860688] [TTM] Zone  kernel: Available graphics memory: 4097956 kiB
[   12.860692] [TTM] Zone   dma32: Available graphics memory: 2097152 kiB
[   12.860695] [TTM] Initializing pool allocator
[   12.860707] [TTM] Initializing DMA pool allocator
[   12.860748] [drm] radeon: 1024M of VRAM memory ready
[   12.860752] [drm] radeon: 1024M of GTT memory ready.
[   12.860775] [drm] Loading RV770 Microcode
[   12.951699] radeon :08:00.0: firmware: direct-loading firmware 
radeon/RV770_pfp.bin
[   12.986773] radeon :08:00.0: firmware: direct-loading firmware 
radeon/RV770_me.bin
[   13.003314] radeon :08:00.0: firmware: direct-loading firmware 
radeon/R700_rlc.bin
[   13.080896] radeon :08:00.0: firmware: direct-loading firmware 
radeon/RV770_smc.bin
[   13.080912] [drm] Internal thermal controller with fan control
[   13.081034] [drm] radeon: power management initialized
[   13.081047] [drm] GART: num cpu pages 262144, num gpu pages 262144
[   13.084763] [drm] enabling PCIE gen 2 link speeds, disable with 
radeon.pcie_gen2=0
[   13.088409] [drm] PCIE GART of 1024M enabled (table at 0x0004).
[   13.088434] radeon :08:00.0: WB enabled
[   13.088436] radeon :08:00.0: fence driver on ring 0 use gpu addr 
0x4c00 and cpu addr 0x88022bd43c00
[   13.088438] radeon :08:00.0: fence driver on ring 3 use gpu addr 
0x4c0c and cpu addr 0x88022bd43c0c
[   13.088440] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[   13.088440] [drm] Driver supports precise vblank timestamp query.
[   13.088459] radeon :08:00.0: irq 90 for MSI/MSI-X
[   13.088467] radeon :08:00.0: radeon: using MSI.
[   13.088487] [drm] radeon: irq initialized.
[   13.134370] [drm] ring test on 0 succeeded in 1 usecs
[   13.134436] [drm] ring test on 3 succeeded in 1 usecs
[   13.134763] [drm] ib test on ring 0 succeeded in 0 usecs
[   13.134786] [drm] ib test on ring 3 succeeded in 0 usecs
[   13.135401] [drm] Radeon Display Connectors
[   13.135405] [drm] Connector 0:
[   13.135409] [drm]   VGA-1
[   13.135412] [drm]   DDC: no ddc bus - possible BIOS bug - please report to 
xorg-driver-...@lists.x.org
[   13.135414] [drm]   Encoders:
[   13.135417] [drm] CRT2: INTERNAL_KLDSCP_DAC2
[   13.135420] [drm] Connector 1:
[   13.135423] [drm]   HDMI-A-1
[   13.135426] [drm]   HPD1
[   13.135431] [drm]   DDC: 0x7e60 0x7e60 0x7e64 0x7e64 0x7e68 0x7e68 0x7e6c 
0x7e6c
[   13.135433] [drm]   Encoders:
[   13.135436] [drm] DFP1: INTERNAL_UNIPHY
[   13.135439] [drm] Connector 2:
[   13.135441] [drm]   DVI-I-1
[   13.135444] [drm]   HPD2
[   13.135449] [drm]   DDC: 0x7e20 0x7e20 0x7e24 0x7e24 0x7e28 0x7e28 0x7e2c 
0x7e2c
[   13.135451] [drm]   Encoders:
[   13.135454] [drm] CRT1: INTERNAL_KLDSCP_DAC1
[   13.135457] [drm] DFP2: INTERNAL_KLDSCP_LVTMA
[   13.182521] [drm] fb mappable at 0xD0241000
[   13.182529] [drm] vra

Re: Is the "fjes" Kernel Module loaded on every system?

2017-01-24 Thread gerard ROBIN
On Tue, Jan 24, 2017 at 05:17:45PM +0100, Jens Sauer wrote:
> Date: Tue, 24 Jan 2017 17:17:45 +0100
> From: Jens Sauer 
> To: debian-user@lists.debian.org
> Subject: Is the "fjes" Kernel Module loaded on every system?

> Can someone confirm if this module is loaded on their hardware, even if you
> don't have a Fujitsu Primequest 2000 series server?

On a clevo Clevo W950JU 15.6":

lsmod | grep fjes
fjes   28672  0

-- 
Gerard
_
*
*  Created with "mutt 1.7.1-2"  *
*  under Debian Linux STRETCH (testing) *
*  Registered Linux User #388243*
*  https://Linuxcounter.net *
*



[solved] Re: Stretch changes the time of my laptop

2017-01-18 Thread Gerard ROBIN
On Wed, Jan 18, 2017 at 11:06:06AM -0500, Felix Miata wrote:
> Date: Wed, 18 Jan 2017 11:06:06 -0500
> From: Felix Miata 
> To: debian-user@lists.debian.org
> Subject: Re: Stretch changes the time of my laptop
 
> Gerard ROBIN composed on 2017-01-18 14:33 (UTC+0100):
> 
> >I installed stretch on a external usb hard drive and when I boot on the
> >had drive and I shut down, then I boot again, but on the internal hard
> >drive, with jessie, the time is delayed by one hour.
> 
> >I would like to know if this is normal, and if not what can I do to fix
> >the problem ? (Without going into the bios or using date ...)
> 
> >It's a old laptop acer aspire 5102 wlmi
> 
> Check to see if /etc/adjtime in both installations is different. One is
> probably UTC and the other LOCAL. If one hard drive contains Windows and the
> other does not, more than likely the one with Windows says LOCAL and the
> other says UTC. Synchronizing both should eliminate the clock changing.

Good diagnosis the problem is solved.
In stretch it was UTC and in jessie LOCAL

Thank you to all those who helped me.

-- 
Gerard
___
***
*  Created with "mutt 1.5.23" *
*  under Debian Linux JESSIE version 8.7  *
*  Registered Linux User #388243  *
*  https://Linuxcounter.net   *
***



Stretch changes the time of my laptop

2017-01-18 Thread Gerard ROBIN
Hello,
I installed stretch on a external usb hard drive and when I boot on the
had drive and I shut down, then I boot again, but on the internal hard 
drive, with jessie, the time is delayed by one hour.

I would like to know if this is normal, and if not what can I do to fix
the problem ? (Without going into the bios or using date ...)

It's a old laptop acer aspire 5102 wlmi

tia

-- 
Gerard
___
***
*  Created with "mutt 1.5.23" *
*  under Debian Linux JESSIE version 8.6  *
*  Registered Linux User #388243  *
*  https://Linuxcounter.net   *
***



DESKTOP_SESSION possibly not set correctly when using Cinnamon

2016-12-21 Thread Robin Grindrod
Hi,
While trying to install a script that detects which DE is being used by
reading the DESKTOP_SESSION environment variable on a system running
Cinnamon, I noticed it is set to "lightdm-xsession". This is causing the
script to fail as it expects the value to be "cinnamon". There has been
a similar bug raised for MATE here:
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=775905
Is this also a bug in Cinnamon? Should I raise a bug report for it and
if so what package should the bug be on?
Thanks,
Robin



Re: roxterm

2016-06-23 Thread gerard ROBIN
On Wed, Jun 22, 2016 at 05:10:32PM +0200, Sven Arvidsson wrote:
> Date: Wed, 22 Jun 2016 17:10:32 +0200
> From: Sven Arvidsson 
> To: debian-user@lists.debian.org
> Subject: Re: roxterm
 
> On Wed, 2016-06-22 at 16:34 +0200, gerard ROBIN wrote:
> > Hello,
> > xterm disappeared of "stretch". Is this final?
> 
> roxterm has been removed, see 
> https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=827768
> 
> xterm is still available.
> 
> -- 
> Cheers,
> Sven Arvidsson
> http://www.whiz.se

Thanks fort the link. 
I made a mistake , I meant roxterm not xterm, xterm works perfectly
under stretch.

-- 
Gerard
_
*
*  Created with "mutt 1.6.0-1"  *
*  under Debian Linux STRETCH (testing) *
*  Registered Linux User #388243*
*  https://Linuxcounter.net *
*



roxterm

2016-06-22 Thread gerard ROBIN
Hello,
xterm disappeared of "stretch". Is this final?

Thanks.
-- 
Gerard
_
*
*  Created with "mutt 1.6.0-1"  *
*  under Debian Linux STRETCH (testing) *
*  Registered Linux User #388243*
*  https://Linuxcounter.net *
*



Re: Do not know which package bug is in

2016-04-01 Thread Robin Oberg
On Fri, 2016-04-01 at 12:00 +0100, Oliver Elphick wrote:
> On Fri, 2016-04-01 at 11:34 +0100, Robin Oberg wrote:
> > On Fri, 2016-04-01 at 11:21 +0100, Oliver Elphick wrote:
> > > Intermittent failures like that sound more like hardware problems.
> > > I
> > > seem to recall reading that charging devices like that demands more
> > > power than the computer can supply.
> > > 
> > > Oliver Elphick
> 
> > Would that not mean that the same problem exists in other operating
> > systems as well? But seeing as it works fine to charge this old
> > iPhone 4
> > in Windows, so it does not seem like a hardware malfunction in this
> > particular case.
> 
> Not necessarily. It might be that Windows doesn't use a particular area
> of memory that Linux does.
> 
> I should go for the other poster's suggestion, of using a powered USB
> hub. If the failures cease, it was a hardware problem.
> 
> 

Of course, unplugging the device from the USB port stops the crashing,
because the crashing starts when the device is plugged in to begin
with...

If "Linux" is programmed to use a particular area of memory that makes
it crash, then this is a software related issue, isn't it?

Isn't there a log file somewhere that can confirm what the problem is,
whether or not it is hardware related, or at least which package the
crash is related to?

//Robin Oberg



Re: Do not know which package bug is in

2016-04-01 Thread Robin Oberg
On Fri, 2016-04-01 at 11:21 +0100, Oliver Elphick wrote:
> On Fri, 2016-04-01 at 10:25 +0100, Robin Oberg wrote:
> > Hi!
> > 
> > I'm new to Linux and Debian 8.3, but thought I'd help out by sharing
> > this bug that I've found. My system crashes randomly when my iPhone
> > is
> > charging via USB, and every time that it happens I am forced to
> > hard-reboot the laptop by holding down the power button. I don't know
> > where in the system this bug could be located, what package it might
> > be.
> ...
> > 
> > Any help would be appreciated.
> 
> Intermittent failures like that sound more like hardware problems. I
> seem to recall reading that charging devices like that demands more
> power than the computer can supply.
> 
> Oliver Elphick

Would that not mean that the same problem exists in other operating
systems as well? But seeing as it works fine to charge this old iPhone 4
in Windows, so it does not seem like a hardware malfunction in this
particular case.

Everything except the mouse just freezes, and no keyboard combination I
can think of helps. Ctrl+C, Ctrl+X, Ctrl+Q, Ctrl+Esc, Super+Esc, Ctrl
+Alt+Del... There is only one way out, and that's to hard-reboot
everything (which my harddrive doesn't seem to enjoy).

//Robin Oberg



Do not know which package bug is in

2016-04-01 Thread Robin Oberg
Hi!

I'm new to Linux and Debian 8.3, but thought I'd help out by sharing
this bug that I've found. My system crashes randomly when my iPhone is
charging via USB, and every time that it happens I am forced to
hard-reboot the laptop by holding down the power button. I don't know
where in the system this bug could be located, what package it might be.
And that's apparently a required thing to do know when one is reporting
a bug.

Any help would be appreciated.

//Robin Oberg



Re: Server terminated with error (1)

2016-02-18 Thread Gerard ROBIN
On Thu, Feb 18, 2016 at 09:38:02AM +, Darac Marjal wrote:
> Date: Thu, 18 Feb 2016 09:38:02 +
> From: Darac Marjal 
> To: debian-user@lists.debian.org
> Subject: Re: Server terminated with error (1)
> User-Agent: Mutt/1.5.24 (2015-08-30)
> 
> On Wed, Feb 17, 2016 at 08:41:29PM +0100, gerard ROBIN wrote:
> >Hello,
> >I am using a laptop clevo W950JU with intel i5-6200U processor.
> >
> >If I run jessie with the kernel 4.2.0-0.bpo.1-amd64  it works fine,
> >but when I use the kernel 4.3.0-0.bpo.1-amd64  X11 fails :
 
> This would appear to be the issue. The intel driver doesn't recognise your
> chipset, so refuses to load. As you have no other suitable drivers, the
> server fails to start.
> 
> So, my guess would be that your chipset is either too new, or too old.  The
> output of lspci ("Intel Corporation Device 1916") suggests to me that it's
> too new (that looks like a placeholder name rather than a real name). So, in
> that case, try fetching the latest xserver-xorg-video-intel from unstable
> and see if that helps.

I installed the xserver-xorg-video-intel of the jessie-backports and
this did the trick :-)

Thank you very much.

-- 
Gerard
___
***
*  Created with "mutt 1.5.23" *
*  under Debian Linux JESSIE version 8.3  *
*  Registered Linux User #388243  *
*  https://Linuxcounter.net   *
***



Server terminated with error (1)

2016-02-17 Thread gerard ROBIN
Hello,
I am using a laptop clevo W950JU with intel i5-6200U processor.

If I run jessie with the kernel 4.2.0-0.bpo.1-amd64  it works fine, 
but when I use the kernel 4.3.0-0.bpo.1-amd64  X11 fails :

---8<---
[   209.705] (--) controlling tty is VT number 2, auto-enabling KeepTty
[   209.706] (WW) Falling back to old probe method for modesetting
[   209.706] (WW) Falling back to old probe method for fbdev
[   209.706] (II) Loading sub module "fbdevhw"
[   209.706] (II) LoadModule: "fbdevhw"
[   209.706] (II) Loading /usr/lib/xorg/modules/libfbdevhw.so
[   209.706] (II) Module fbdevhw: vendor="X.Org Foundation"
[   209.706]compiled for 1.16.4, module version = 0.0.2
[   209.706]ABI class: X.Org Video Driver, version 18.0
[   209.706] (WW) Falling back to old probe method for vesa
[   209.707] (II) intel(0): Creating default Display subsection in Screen 
section
"Default Screen Section" for depth/fbbpp 24/32
[   209.707] (==) intel(0): Depth 24, (--) framebuffer bpp 32
[   209.707] (==) intel(0): RGB weight 888
[   209.707] (==) intel(0): Default visual is TrueColor
[   209.707] (WW) intel(0): Unknown chipset
[   209.707] (II) UnloadModule: "intel"
[   209.707] (EE) Screen(s) found, but none have a usable configuration.
[   209.707] (EE) 
Fatal server error:
[   209.707] (EE) no screens found(EE) 
[   209.707] (EE) 
Please consult the The X.Org Foundation support 
 at http://wiki.x.org
 for help. 
[   209.707] (EE) Please also check the log file at "/var/log/Xorg.0.log" for 
additional information.
[   209.707] (EE) 
[   209.710] (EE) Server terminated with error (1). Closing log file.


lspci -v | grep VGA
 VGA compatible controller: Intel Corporation Device 1916 (rev 07) (prog-if 00 
[VGA controller])

I have not found anything on google that has to do with this problem.
anyone know how to solve the problem ?

TIA
-- 
Gerard
___
***
*  Created with "mutt 1.5.23" *
*  under Debian Linux JESSIE version 8.3  *
*  Registered Linux User #388243  *
*  https://Linuxcounter.net   *
***



Re: Persistence

2015-11-11 Thread Gerard ROBIN
Yes, install the package live-build and read the documentation. The
mailing-list debian-live can help you.

-- 
Gerard
___
***
*  Created with "mutt 1.5.23" *
*  under Debian Linux JESSIE version 8.1  *
*  Registered Linux User #388243  *
*  https://Linuxcounter.net   *
***



Re: Re: Re: live build

2015-08-31 Thread Gerard ROBIN
I got help from the debian-live list (chals)
the file auto/config must be :

#!/bin/sh

set -e

lb config noauto \
--architecture amd64 \
--bootappend-live "boot=live ip=frommedia persistence 
locales=fr_FR.UTF-8 keyboard-layouts=fr" \
--archive-areas "main contrib non-free" \
--debug \

"${@}"

and in the file persistence.conf "/ union" gives global persistence.

ip=frommedia provides the persistence of /etc/network/interfaces

man live-boot for an explanation (thanks chals)

The problem with non-free miraculously disappeared ... ?

-- 
Gerard
___
***
*  Created with "mutt 1.5.23" *
*  under Debian Linux JESSIE version 8.1  *
*  Registered Linux User #388243  *
*  https://Linuxcounter.net   *
***



Re: Re: live build

2015-08-25 Thread Gerard ROBIN
thanks for your reply.
I read the documentation before posting, but this documentation
is outdated. after much testing I managed to get just about what I wanted.

if it can help those who want to try "live build" I put some guidelines
that work for me:

auto/config:

#!/bin/sh

set -e

lb config noauto \
--architecture amd64 \
--bootappend-live "boot=live config persistence locales=fr_FR.UTF-8 
keyboard-layouts=fr" \
--archive-areas "main contrib" \
--debug \

"${@}"

config/archives/perso-repoitory.list.chroot :

deb http://ftp.fr.debian.org/debian/ jessie main contrib
deb-src http://ftp.fr.debian.org/debian/ jessie main contrib 

deb http://ftp.fr.debian.org/debian/ jessie-backports main contrib
deb-src http://ftp.fr.debian.org/debian/ jessie-backports main contrib

config/papckage-lists/ :
config/papckage-lists/desktop.list.chroot
config/papckage-lists/firmware.list.chroot
.8<
config/papckage-lists/x11.list.chroot

in the files of the directory config/papckage-lists/  everyone puts what he 
wants.

for my part in the file desktop.list.chroot I put the packages for xfce4 and it 
works very well

for the persistence, the explanations are very vagueness :(

this file persistence.conf woks for me:

cat persistence.conf

/home
/usr union
/etc union

remaining problems:
I don't know how to make the directory network persistent ?
non-free in --archives-areas and prism2-usb-firmware-installer

regards
-- 
Gerard
___
***
*  Created with "mutt 1.5.23" *
*  under Debian Linux JESSIE version 8.1  *
*  Registered Linux User #388243  *
*  https://Linuxcounter.net   *
***



Re: help trouble shooting

2015-08-13 Thread Gerard ROBIN
On Thu, Aug 13, 2015 at 12:17:43PM -0500, John Olson wrote:
> Date: Thu, 13 Aug 2015 12:17:43 -0500
> From: John Olson 
> To: debian-user@lists.debian.org
> Subject: help trouble shooting

> says I need to install firmware for: *rtlwifi/rtl8192cfw.bin* and also
> *rtl_nic/rtl8105e-1.fw*
you installed firmware-realtek ?

> When I do install these pkgs via (synaptic manager) they install fine but
> do not show any available wireless.. only allows Ethernet connection.  I

you need to edit the file /etc/network/inerfaces 
for exemple like this:

auto eth0
allow-hotplug eth0
iface eth0 inet dhcp

auto wlan0
iface wlan0 inet dhcp
wpa-conf managed
wpa-ap-scan 1
wpa-sccan-ssid 1
wpa-ssid FOO
wpa-key-mgmt WPA-PSK
wpa-psk keyofFOO

and once this is done as root :

ifdown wlan0
ifup wlan0
or 
systemctl restart networking

hth.
-- 
Gerard
___
***
*  Created with "mutt 1.5.23" *
*  under Debian Linux JESSIE version 8.1  *
*  Registered Linux User #388243  *
*  https://Linuxcounter.net   *
***



live build

2015-08-12 Thread Gerard ROBIN
Hello,
I am using "live build" and I don't need the package 
prism2-usb-firmware-installer and I would like to know how prevent this 
package to be installed. 
On the other hand this package requests a connection unresponsive, and 
"lb buid" can't to be completed.

tia.

-- 
Gerard
___
***
*  Created with "mutt 1.5.23" *
*  under Debian Linux JESSIE version 8.1  *
*  Registered Linux User #388243  *
*  https://Linuxcounter.net   *
***


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/20150812113129.GA4748@mauritiusGA



hplip-gui failed to connect my wireless printer HP

2015-02-25 Thread Gerard ROBIN
Hello,
I installed jessie on a USB-drive and when I try to connect my printer 
using wifi with hplip-gui it works fine until the fourth stage but the 
fifth step fails. However on the same machine on the internal drive is 
installed wheezy and I configure the wireless connection (on the same 
printer) successfully.
I enclose a screenshot of the fifth stage. 

Is it a bug or a simple solution exist?

tia

-- 
Gerard
___
***
*  Created with "mutt 1.5.21-6.2+deb7u3"  *
*  under Debian Linux WHEEZY version 7.8  *
*  Registered Linux User #388243  *
*  https://Linuxcounter.net   *
***



Re: upgrade from wheezy to jessie

2015-01-06 Thread Gerard ROBIN
On Tue, Jan 06, 2015 at 01:35:48PM +, Joe wrote:
> Date: Tue, 6 Jan 2015 13:35:48 +
> From: Joe 
> To: debian-user@lists.debian.org
> Subject: Re: upgrade from wheezy to jessie
> X-Mailer: Claws Mail 3.11.1 (GTK+ 2.24.25; x86_64-pc-linux-gnu)
> 
> On Tue, 6 Jan 2015 13:48:10 +0100
> Gerard ROBIN  wrote:
> 
> 
> > 
> > I agree with you regarding jessie, I installed it on a USB drive and 
> > it works fine with systend, but but what concerns me is the
> > transition from sysvinit to systemd on wheezy. If I understand what I
> > read on the web (in English ...) it may be that my machine will not
> > boot if I do not do the job well.
> > 
> The main issue is that anything local mounted in /etc/fstab (even
> removable drives) will be treated as essential, and if they are not
> there, boot will fail. The answer is either to remove any such drives
> from fstab, as the kernel automounting should be good enough now to do
> the job consistently, or to mark them as not being required for boot.
> The fstab syntax for systemd has been extended quite a bit.
> 
> But yes, I moved three sid systems from sysvinit to systemd, the two
> simpler systems were fine, the much larger main workstation
> installation had sufficient minor problems that I felt it better to
> reinstall. Not something you want to do with a server.

Ok, I got my feet wet : 

~# apt-get install  systemd-sysv

--8<--

You are about to do something potentially harmful.
To continue type in the phrase 'Yes, do as I say!'

~# Yes, do as I say!

~# apt-get install sysv-rc-conf

and after that wheezy has booted like a charm. Luke


Thanks to everyone who replied.

-- 
Gerard
___
***
*  Created with "mutt 1.5.21-6.2+deb7u2"  *
*  under Debian Linux WHEEZY version 7.7  *
*  Registered Linux User #388243  *
*  https://Linuxcounter.net   *
***


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/20150106164144.GA5237@mauritiusGA



Re: upgrade from wheezy to jessie

2015-01-06 Thread Gerard ROBIN
On Tue, Jan 06, 2015 at 01:27:35PM +0100, Tony van der Hoff wrote:
> Date: Tue, 06 Jan 2015 13:27:35 +0100
> From: Tony van der Hoff 
> To: debian-user@lists.debian.org
> Subject: Re: upgrade from wheezy to jessie
> User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:24.0) Gecko/20100101
>  Thunderbird/24.2.0
> 
> On 06/01/15 13:12, Brian wrote:
> > On Tue 06 Jan 2015 at 12:11:48 +0100, Gerard ROBIN wrote:
> > 
> >> usually when the distribution changes, I update my system rather than 
> >> reinstall everything. But for the transition from wheezy to jessie, 
> >> I would like to know:
> >>
> >> -1- Is it possible to go from wheezy to jessie, keeping sysvinit.
> > 
> > https://www.debian.org/releases/testing/i386/release-notes/ch-information.en.html#systemd-upgrade-default-init-system
> > 
> > An alternative for you is to install sysvinit-core after updating but
> > before upgrading.
> > 
> >
> 
> There's an awful lot of FUD spread on the internet (and, sadly, even on
> this list), mostly engendered by bigotry against the systemd author(s).
> 
> My advice would be to go with the minimum effort upgrade, as you would
> have done in the past. I've been running Jessie in a KVM client for
> several months now, with zero problems.

I agree with you regarding jessie, I installed it on a USB drive and 
it works fine with systend, but but what concerns me is the transition 
from sysvinit to systemd on wheezy. If I understand what I read on the
web (in English ...) it may be that my machine will not boot if I do 
not do the job well.

-- 
Gerard
___
***
*  Created with "mutt 1.5.21-6.2+deb7u2"  *
*  under Debian Linux WHEEZY version 7.7  *
*  Registered Linux User #388243  *
*  https://Linuxcounter.net   *
***


--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/20150106124810.GA9947@mauritiusGA



upgrade from wheezy to jessie

2015-01-06 Thread Gerard ROBIN
Hello,
usually when the distribution changes, I update my system rather than 
reinstall everything. But for the transition from wheezy to jessie, 
I would like to know:

-1- Is it possible to go from wheezy to jessie, keeping sysvinit.

-2- if not, from what I read on the internet, go from sysvinit to
systemd is not without risk. What about it exactly?

(I would say that I am not concerned whether sytemd is better or 
worse than sysvinit. I'm not proficient enough ...)

tia.

-- 
Gerard
___
***
*  Created with "mutt 1.5.21-6.2+deb7u2"  *
*  under Debian Linux WHEEZY version 7.7  *
*  Registered Linux User #388243  *
*  https://Linuxcounter.net   *
***


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/2015010648.GA5213@mauritiusGA



Re: Best tools for hard drive recovery

2015-01-03 Thread Gerard ROBIN
On Fri, Jan 02, 2015 at 04:24:56PM -0800, Kevin O'Gorman wrote:
> Date: Fri, 2 Jan 2015 16:24:56 -0800
> From: Kevin O'Gorman 
> To: Debian Users 
> Subject: Best tools for hard drive recovery

> of the same size that's empty, and I could just copy the whole drive to it,
> but I need a tool that's robust in the presence of errors.

Perhaps testdisk package

hth.
-- 
Gerard
___
***
*  Created with "mutt 1.5.21-6.2+deb7u2"  *
*  under Debian Linux WHEEZY version 7.7  *
*  Registered Linux User #388243  *
*  https://Linuxcounter.net   *
***


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/20150103114427.GA8841@mauritiusGA



Re: rezound, twinkle in jessie ?

2014-12-24 Thread Gerard ROBIN
On Mon, Dec 22, 2014 at 03:27:22PM +, Martin Read wrote:
> Date: Mon, 22 Dec 2014 15:27:22 +
> From: Martin Read 
> To: debian-user@lists.debian.org
> Subject: Re: rezound, twinkle in jessie ?
> X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on bendel.debian.org
> X-Spam-Level: 
> X-Spam-Status: No, score=-11.7 required=4.0
>  tests=LDOSUBSCRIBER,LDO_WHITELIST, RCVD_IN_DNSWL_LOW autolearn=unavailable
>  version=3.3.2
> User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101
>  Icedove/31.2.0
 
> So yes, unless someone does the necessary work, it seems that these packages
> are indeed doomed to disappear from debian.

Thanks for your reply.
I downloaded the tarballs corresponding to rezound and I installed all the 
libraries so that "configure" succeed, but in the end,  I needed to  install 
libjpeg62-turbo, and libjpeg62-turbo  wants to remove rezound.
No luck.
(I tried "audacity" but the recording quality is much better with rezound)

Regarding "twinkle", "linphone" can do the job but for my use I prefer 
"twinkle".
(but all things must end ...)

-- 
Gerard


*  Created with  "mutt 1.5.23" *
*  under Debian Linux JESSIE   *
*  Registered Linux User #388243   *
*  https://Linuxcounter.net*



-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/20141225002221.GA23939@(none)



rezound, twinkle in jessie ?

2014-12-22 Thread Gerard ROBIN
Hello,
I installed jessie on a external hard drives, (usb) I use rezound and
twinkle which are in squeeze only. They work fine in jessie but the
command "apt-get dist-upgade" propose to me to remove five packages and
among them rezound and twinkle.
My question: rezound and twinkle are they doomed to disappear from debian ?

tia.

-- 
Gerard
___
***
*  Created with "mutt 1.5.21-6.2+deb7u2"  *
*  under Debian Linux WHEEZY version 7.7  *
*  Registered Linux User #388243  *
*  https://Linuxcounter.net   *
***


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/20141222123116.GA7254@mauritiusGA



Re: no longer sound on amd64 sid systems

2014-05-13 Thread Robin
On 13 May 2014 20:05, sp113438  wrote:
> On Tue, 13 May 2014 19:38:10 +0100
> Robin  wrote:
>
>
>>
>>
>> If you run alsamixer does it show the right audio interface?
>
> # alsamixer
> cannot open mixer: No such file or directory
>
> Thanks,
> Arne
>
>
> --
> To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org
> with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
> Archive: https://lists.debian.org/20140513210500.48479b8f@fx4100
>

reload modules?

-- 
rob


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



Re: no longer sound on amd64 sid systems

2014-05-13 Thread Robin
On 13 May 2014 15:27, sp113438  wrote:
> On Tue, 13 May 2014 11:27:50 +0200
> Elimar Riesebieter  wrote:
>
> Hello,
>> > hello,
>> >
>> > I did the latest update on 2 systems amd64 Sid, and now sound does
>> > not work any longer on both systems.
>> > The program /usr/sbin/alsa dissapeared after installing the latest
>> > alsa-base.
>>
>> /usr/sbin/alsa was a relict from the obsolete alsa-driver package and
>> is almost not usefull as the sound modules now handled by kmod.
>>
>> > No mixers are found. Failed to open audio output
>> > Yesterday sound did work on both systems.
>>
>> Please post the output of:
>>
>> $ lsmod | grep snd
>> $ aplay -l
>> $ aplay -L
>> $ dpkg -l | egrep (alsa|asound)
>> $ cat /proc/version
>>
>> Elimar
>
> Hope this helps:
>
>>
> # lsmod | grep snd
> snd_hda_codec_hdmi 40908  0
> snd_virtuoso   34854  0
> snd_oxygen_lib 36709  1 snd_virtuoso
> snd_mpu401_uart13507  1 snd_oxygen_lib
> snd_rawmidi26805  1 snd_mpu401_uart
> snd_hda_codec 100159  1 snd_hda_codec_hdmi
> snd_seq_device 13132  1 snd_rawmidi
> snd_hwdep  13148  1 snd_hda_codec
> snd_pcm_oss44847  0
> snd_mixer_oss  22042  1 snd_pcm_oss
> snd_pcm84566  4
> snd_pcm_oss,snd_hda_codec_hdmi,snd_oxygen_lib,snd_hda_codec
> snd_timer  26614  1 snd_pcm snd61046
> 12
> snd_pcm_oss,snd_hwdep,snd_timer,snd_hda_codec_hdmi,snd_pcm,snd_rawmidi,snd_virtuoso,snd_oxygen_lib,snd_hda_codec,snd_mpu401_uart,snd_seq_device,snd_mixer_oss
> soundcore  13026  1 snd
>
> # aplay -l
>  List of PLAYBACK Hardware Devices 
> card 1: STX [Xonar STX], device 0: Multichannel [Multichannel]
>   Subdevices: 1/1
>   Subdevice #0: subdevice #0
> card 1: STX [Xonar STX], device 1: Digital [Digital]
>   Subdevices: 1/1
>   Subdevice #0: subdevice #0
>
> # aplay -l
>  List of PLAYBACK Hardware Devices 
> card 1: STX [Xonar STX], device 0: Multichannel [Multichannel]
>   Subdevices: 1/1
>   Subdevice #0: subdevice #0
> card 1: STX [Xonar STX], device 1: Digital [Digital]
>   Subdevices: 1/1
>   Subdevice #0: subdevice #0
> root@fx4100:/home/arne# aplay -L
> null
> Discard all samples (playback) or generate zero samples (capture)
> pulse
> PulseAudio Sound Server
> default:CARD=STX
> Xonar STX, Multichannel
> Default Audio Device
> sysdefault:CARD=STX
> Xonar STX, Multichannel
> Default Audio Device
> front:CARD=STX,DEV=0
> Xonar STX, Multichannel
> Front speakers
> surround40:CARD=STX,DEV=0
> Xonar STX, Multichannel
> 4.0 Surround output to Front and Rear speakers
> surround41:CARD=STX,DEV=0
> Xonar STX, Multichannel
> 4.1 Surround output to Front, Rear and Subwoofer speakers
> surround50:CARD=STX,DEV=0
> Xonar STX, Multichannel
> 5.0 Surround output to Front, Center and Rear speakers
> surround51:CARD=STX,DEV=0
> Xonar STX, Multichannel
> 5.1 Surround output to Front, Center, Rear and Subwoofer speakers
> surround71:CARD=STX,DEV=0
> Xonar STX, Multichannel
> 7.1 Surround output to Front, Center, Side, Rear and Woofer speakers
> iec958:CARD=STX,DEV=0
> Xonar STX, Multichannel
> IEC958 (S/PDIF) Digital Audio Output
>
> dpkg -l | grep alsa
> ii  alsa-base
> 1.0.27+1   all  dummy package to ease
> purging of obsolete conffiles ii  alsa-oss
> 1.0.25-1   amd64ALSA wrapper for OSS
> applications ii  alsa-utils
> 1.0.27.2-1 amd64Utilities for
> configuring and using ALSA ii  alsamixergui
> 0.9.0rc2-1-9.1 amd64graphical soundcard
> mixer for ALSA soundcard driver ii
> liballegro4.4-plugin-alsa:amd64
> 2:4.4.2-4  amd64ALSA audio plugin for
> the Allegro library ii  libclalsadrv2
> 2.0.0-3amd64ALSA driver C++ access
> library ii  libsox-fmt-alsa:amd64
> 14.4.1-3   amd64SoX alsa format I/O
> library ii  libzita-alsa-pcmi0:amd64 0.2.0-2
> amd64C++ wrapper around the ALSA API
>
> # dpkg -l | grep asound
> ii  libasound2:amd64
> 1.0.27.2-3 amd64shared library for ALSA
> applications rc  libasound2:i386
> 1.0.27.2-3 i386 shared library for ALSA
> applications ii  libasound2-data
> 1.0.27.2-3 all  Configuration files and
> profiles for ALSA drivers ii  libasound2-plugins:amd64
> 1.0.27-2+b1amd64ALSA library additional
> plugins
>
>
> My soundcard is the Asus Xonar STX
>
> Thanks!
>
>
>
>
> --


If you run alsamixer does it show the right audio interface?
-- 
rob


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

Debian system as an internet security gateway

2014-04-21 Thread Robin Kipp
Hi list,
I’ve got an embedded computer (Soekris Net6501) that I’d like to setup as a 
router / firewall system and small application server running Debian 7.
As for the router part, I’m already familiar with most services I’ll need (DHCP 
+ DNS server and iptables routing). This should provide me with a working 
internet gateway capable of doing NAT and port forwarding.
The box has 4 ethernet ports. 3 of those will be used as LAN connections, and 
the 4th will be the WAN connection straight to the cable modem.
However, I also intend to use this as a hardware firewall. So, it should be 
possible to somehow analyse web traffic such as HTTP for malicious code, such 
as viruses being downloaded to connected Windows machines. I know this can be 
done on individual files / folders using ClamAV, or even for things like mail 
using appropriate plugins. But is it also possible to scan web traffic in this 
manner? If so, what packages do I require?
Also, it would be nice to have some kind of intrusion detection in place so 
that I know what is going on. I’ve heard of Snort before, however I have never 
used it… Is this a good tool to work with or are there other (better) methods 
out there?
That’s it for now, I guess implementing those things for starters should 
provide a good basic security level for a home network! :-)
Thanks for any replies / help.
All the best,
Robin

--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
https://lists.debian.org/6901d086-05c9-4d51-aa8c-94491e984...@robin-kipp.net



Re: unsuscribe

2014-04-13 Thread Robin
On 13 April 2014 15:44, Julio González  wrote:
> El 25/01/14 14:41, debian-user-digest-requ...@lists.debian.org escribió:
>
>
> --
> To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject
> of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
> Archive: https://lists.debian.org/534aa2e6.2050...@gmail.com
>

mail needs to go to debian-user-requ...@lists.debian.org with subject
unsubscribe
^
 --
rob


--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
https://lists.debian.org/CAOZWb-pw5wm1Y=5twyuwrr66aRRF7hDeUdvhw=xwkik-tcs...@mail.gmail.com



Re: apt-get doesn't upgrade, but synaptic does

2014-04-10 Thread Robin
On 10 April 2014 16:07, Frank McCormick  wrote:
> Had a strange problem this morning for the second time recently:
>
>
> root@frank-debian:/home/frank# apt-get upgrade
> Reading package lists... Done
> Building dependency tree
> Reading state information... Done
> Calculating upgrade... Done
> The following package was automatically installed and is no longer required:
>   python-gtksourceview2
> Use 'apt-get autoremove' to remove it.
> The following packages have been kept back:
>   eom-common mate-panel mate-panel-common
> The following packages will be upgraded:
>   base-passwd cups cups-bsd cups-client cups-common cups-core-drivers
> cups-daemon
>   cups-ppdc cups-server-common dnsmasq-base geoip-database libcups2
> libcupscgi1
>   libcupsimage2 libcupsmime1 libcupsppdc1 man-db pluma pluma-common ruby
> 20 upgraded, 0 newly installed, 0 to remove and 3 not upgraded.
> Need to get 7,645 kB of archives.
> After this operation, 4,731 kB disk space will be freed.
> Do you want to continue? [Y/n]
>
> Apt-get then did what it said it would upgrading everything except
> mate-panel, mate-panel-commong and eom
>
> Then I ran synaptic...and it removed an old version of mate-panel-applets
> and replaced it with the newer version. It then upgraded
> mate-panel and mate-panel-common.
>
> Why was synaptic able to figure out what was needed (the newer version of
> mate-panel-applets) and neither apt-get nor aptitude could figure it
> out ?
>
> This is the second time recently that synaptic was able to accomplish what
> apt-get and aptitude couldn't.
>
>
>
> --
> When the rich get richer they get more powerful
> and that puts them in the position to lobby for policies
> to make them even richer.
> - former Clinton advisor Larry Summers
>
>


Synaptic, I think, defaults to Smart Upgrade, the equivalent is
apt-get  dist-upgrade.
Man apt-get for the full details
-- 
rob


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
https://lists.debian.org/caozwb-rvtu-okkysnrwniaxst5y+7fh+cq8onjy3jptgz+s...@mail.gmail.com



Re: aptitude update of network-manager fails

2014-03-28 Thread Robin
On 29 March 2014 01:10, Frank McCormick  wrote:
>
> Updated my Sid system tonight and got a failure on network manager.
>
> I tried to reinstall using dpkg but no go.
>
>
> root@frank-debian:/var/cache/apt/archives# dpkg -i
> network-manager_0.9.8.8-4_i386.deb
> (Reading database ... 178591 files and directories currently installed.)
> Preparing to unpack network-manager_0.9.8.8-4_i386.deb ...
> Unpacking network-manager (0.9.8.8-4) over (0.9.8.8-4) ...
> Setting up network-manager (0.9.8.8-4) ...
> Job for NetworkManager.service failed. See 'systemctl status
> NetworkManager.service' and 'journalctl -xn' for details.
> invoke-rc.d: initscript network-manager, action "restart" failed.
> dpkg: error processing package network-manager (--install):
>  subprocess installed post-installation script returned error exit status 1
> Processing triggers for dbus (1.8.0-3) ...
> Processing triggers for man-db (2.6.6-1) ...
> Errors were encountered while processing:
>  network-manager
> root@frank-debian:/var/cache/apt/archives#
>
> It's unpacking over itself because it was already installed but not
> configured by aptitude.
>
> Anybody else with the problem ?
>
>
>
>

"Job for NetworkManager.service failed. See 'systemctl status
NetworkManager.service' and 'journalctl -xn' for details"

Did the above commands shed any light?


-- 
rob


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



Re: Jessie Post-Install

2014-03-28 Thread Robin
On 28 March 2014 23:33, Stephen Allen  wrote:
> After the installation, my wifi wasn't configured (despite it being 
> configured during the net-install) and was very surprised to have XFce as
> +my default desktop environment. I had been expecting and wanting Gnome-Shell.
>
> Shouldn't the wifi have been configured? How in the hell would have a newbie 
> been expected to configure it manually? Should a bug be filed for
> +that?
>
> Regard,
> Steve
>
>
> --
> To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org
> with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
> Archive: https://lists.debian.org/20140328233344.GA6382@Jessie
>

xfce:  http://www.phoronix.com/scan.php?page=news_item&px=MTUwNDE amongst others


-- 
rob


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



Re: Security Implications of running startx from command line - was Re: Startx: was Great Debian experience

2014-03-21 Thread Robin
On 21 March 2014 11:18, Darac Marjal  wrote:
> On Fri, Mar 21, 2014 at 11:06:03AM +0000, Robin wrote:
>> I may have missed something. If someone has physical access to your
>> machine can't they just power off and go into single user mode and
>> change the root password?
>
> Maybe, maybe not. Console access doesn't have to mean complete access.
> The scenario I always have in my head for these sorts of things is a
> Computer Lab at a university/college. You can allow anyone to come up
> and use the machine via the keyboard/mouse/VDU attached to it, but to
> counter the attack vector you mention, you simply lock the computer
> itself away in a secure cage under the desk. That also stops the
> "security vector" of someone simply picking up the machine and walking
> off with it ;)
>

Sorry my mail was a bit terse. I was referring to whether a DM is more
secure than startx when there is physical access to a machine.

-- 
rob


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
https://lists.debian.org/caozwb-pam8gh4dtbf-pgvfu+sueuqjfaxwp_tjyasnvzlkj...@mail.gmail.com



Re: Security Implications of running startx from command line - was Re: Startx: was Great Debian experience

2014-03-21 Thread Robin
I may have missed something. If someone has physical access to your
machine can't they just power off and go into single user mode and
change the root password?

-- 
rob


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



Re: Read-only rootfs on systemd

2014-03-06 Thread Robin
On 6 March 2014 01:21, Amit  wrote:
> Amit  gmail.com> writes:
>
> [snip]
>
>>
>> However, setting up a fresh install of systemd, the readonly does not
>> have any effect. The rootfs is still mounted as rw. All I did was
>> changed /etc/fstab. Based on the systemd man pages, this should be
>> enough.
>>
>> How do I go about debugging/fixing this issue?
>>
>
> The problem is cupsd. Doing an 'lsof +L1':
>
> COMMAND PID USER   FD   TYPE DEVICE SIZE/OFF NLINK   NODE NAME
>
> cupsd   825 root8r   REG8,1 1392 0 132009 /etc/passwd 
> (deleted)
>
> Stopping cups service and re-mounting as 'ro' now works.
>
> I need cups, so is there a way around this?
>
> Thanks,
> Amit
>
>

Just a suggestion have you tried a re-install of cups since fresh
install of systemd

-- 
rob


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
https://lists.debian.org/CAOZWb-qJMcCFK5VF9S-m4UQ7T_Domh=psv2rttsxw29vnpp...@mail.gmail.com



Re: Mysterius Download

2014-02-28 Thread Robin
On 28 February 2014 13:06, Markos  wrote:
> Hi Everybody,
>
> The browser takes a long time to open the pages but the applet "properties
> of network connection" shows a high download rate.
>
> But I'm not downloading anything!
>
> How to find out which program is doing this mysterious "download" and block
> this download?
>
> I'm using Debian Squeeze.
>
> Thank you,
> Markos
>
>
> --

netstat -p


-- 
rob


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



Re: [WARNING] libc6 upgrade from 2.17.97 to 2.18.1 (unstable) fails -now segfaults on apt-get etc.

2014-02-24 Thread Robin
On 22 February 2014 01:52, Robin  wrote:
> **This of course may apply only to my PC but just in case it is not**:
>
> Just done dist-upgrade 01:30 22/02/2014 and upgrade fails whilst
> updating libc6. Applications that were open are still functioning but
> everything else segfaults.
> Looks like a reinstall
>
> --
> rob

Fix information:

Aurelien Jarno wrote:


For already broken systems like yours, here is a procedure to fix it. On
a rescue system, change to the root directory of the system to be fixed.
- make sure ldconfig won't be run anymore:
ln -sf /bin/true lib/ldconfig
- point the symlink to the correct libc version:
ln -sf /lib/x86_64-linux-gnu/libdl-2.18.so lib64/ld-linux-x86-64.so.2
  note that the version 2.18 might have to be adjusted depending on the
  libc currently installed on your system

Then reboot on the system and run the following commands:
- remove libc6-amd64:
apt-get remove libc6-amd64
- reinstall and/or upgrade at least libc6 and libc-bin:
apt-get --reinstall libc6 libc-bin

Bug#739734


-- 
rob


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



Re: [WARNING] libc6 upgrade from 2.17.97 to 2.18.1 (unstable) fails -now segfaults on apt-get etc.

2014-02-22 Thread Robin
On 22 February 2014 07:59, Andrei POPESCU  wrote:
> On Sb, 22 feb 14, 01:52:27, Robin wrote:
>> **This of course may apply only to my PC but just in case it is not**:
>>
>> Just done dist-upgrade 01:30 22/02/2014 and upgrade fails whilst
>> updating libc6. Applications that were open are still functioning but
>> everything else segfaults.
>> Looks like a reinstall
>
> Just did the very same upgrade without any issues. I even did a full
> restart (my laptop hasn't seen a reboot for about 20 days which is not
> very safe on sid, unless you take care to restart your apps as needed).
>
> Kind regards,
> Andrei
> --

In which case I apologize for the noise.


-- 
rob


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



[WARNING] libc6 upgrade from 2.17.97 to 2.18.1 (unstable) fails -now segfaults on apt-get etc.

2014-02-21 Thread Robin
**This of course may apply only to my PC but just in case it is not**:

Just done dist-upgrade 01:30 22/02/2014 and upgrade fails whilst
updating libc6. Applications that were open are still functioning but
everything else segfaults.
Looks like a reinstall

-- 
rob


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



Re: Valgrind not finding installed libc6-dbg (x86_64 or i386)

2014-02-20 Thread Robin
On 20 February 2014 12:02, Robin  wrote:
> Valgrind was working here up to late last year but now valgrind has
> stopped working with the error message:
>
> A must-be-redirected function
> whose name matches the pattern:  strlen
> in an object with soname matching:   ld-linux-x86-64.so.2
> /snip
> The package you need to install is called On Debian, Ubuntu:
>   libc6-dbg
>
> I have installed various versions of valgrind from snapshot.debian
> going back to early 2013,  plus built valgrind from source, all of
> which have the same error.
>
> This would suggest something has changed with libc6-dbg?
>
> Any one know  where to go from here?
>
> Thanks
> --
> rob

Forget to mention running Debian Sid

-- 
rob


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



Valgrind not finding installed libc6-dbg (x86_64 or i386)

2014-02-20 Thread Robin
Valgrind was working here up to late last year but now valgrind has
stopped working with the error message:

A must-be-redirected function
whose name matches the pattern:  strlen
in an object with soname matching:   ld-linux-x86-64.so.2
/snip
The package you need to install is called On Debian, Ubuntu:
  libc6-dbg

I have installed various versions of valgrind from snapshot.debian
going back to early 2013,  plus built valgrind from source, all of
which have the same error.

This would suggest something has changed with libc6-dbg?

Any one know  where to go from here?

Thanks
-- 
rob


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



Re: Problem with Sound Volume

2014-02-19 Thread Robin
On 19 February 2014 13:14, Stephen P. Molnar  wrote:
> I have just upgraded my Debian Jessie computer to a
>
> AMD FX 8320, 8-core 3.5 GHz, 16.0MB Cache CPU/ASUS M5 A97 R2.0 Motherboard/8
> MB RAM. I find that the sound is very faint, even with the volume set at
> maximum. I am using the on-board sound:
>
> computation@AbNormal:~$ aplay -l
>  List of PLAYBACK Hardware Devices 
> card 0: SB [HDA ATI SB], device 0: ALC887-VD Analog [ALC887-VD Analog]
>   Subdevices: 1/1
>   Subdevice #0: subdevice #0
> card 0: SB [HDA ATI SB], device 1: ALC887-VD Digital [ALC887-VD Digital]
>   Subdevices: 1/1
>   Subdevice #0: subdevice #0
>
> I have always struggled with sound and have no idea as to the solution to
> this,to me,new problem.
>
> Any pointers in the right direction will be much appreciated.
>
> Thanks in advance.
>
> --
> Stephen P. Molnar, Ph.D. Life is a fuzzy set
> Foundation for Chemistry Stochastic and Multivariate
> www.FoundationForChemistry.com
> (614)312-7528(c)
> Skype:  smolnar1

Have you tried alsamixer, from a terminal, to adjust volume?

-- 
rob


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



Re: Package Install Problem

2014-02-15 Thread Robin
On 15 February 2014 13:41, Mike  wrote:
> I am trying to install a .deb package from the local hard drive using dpkg
> -i .deb.
>
> It appears to read the package and then gives me a list of dependencies that
> are missing and that the package cannot be installed.
>
> The problem is that I am trying to move over to Debian from Fedora so am a
> NEWBIE in Debian.
>
> Is there a command in either dpkg or apt-get that will load a .deb from the
> local hard drive and resolve the dependencies?  I cannot find it in any man
> package or document, possibly due to being new to this structure.
>
> Thanks
>
> Mike Dwiggins
>
>
> --
> 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/52ff6e99.30...@olddog.name
>

After running dpkg -i do:
apt-get -f install
which should help resolve straightforward issues.

from man apt-get:
-f, --fix-broken
   Fix; attempt to correct a system with broken dependencies
in place. This option, when used with install/remove, can omit any
   packages to permit APT to deduce a likely solution. If
packages are specified, these have to completely correct the problem.
The
   option is sometimes necessary when running APT for the
first time; APT itself does not allow broken package dependencies to
exist
   on a system. It is possible that a system's dependency
structure can be so corrupt as to require manual intervention (which
   usually means using dselect(1) or dpkg --remove to
eliminate some of the offending packages). Use of this option together
with -m
   may produce an error in some situations. Configuration
Item: APT::Get::Fix-Broken.

-- 
rob


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



Re: Wheezy NVidia driver for card GT 750M

2014-02-13 Thread Robin
On 13 February 2014 12:38, Markos  wrote:
> Dear,
>
> I just installed Wheezy 7.4 on a notebook with Nvidia video card "GeForce GT
> 750M".
>
> I searched the site:
>
> https://wiki.debian.org/NvidiaGraphicsDrivers
>
> And from what I've seen, the list of devices supported by the version
> 304.88:
>
> http://us.download.nvidia.com/XFree86/Linux-x86/304.88/README/supportedchips.html
>
> does not include the GT 750M model
>
> Another option is to use the Nvidia proprietary installer available at:
>
> http://www.nvidia.com/download/driverResults.aspx/72249/en-us
>
> Version: 331.38
> Release Date: 01/13/2014
> Operating System: Linux 32-bit
>
> Is there a newer Debian package that includes the GT 750M card?
>
> How to find?
>
> Thanks for any tip.
>
> Markos
>
>
> --

Take a look at http://backports.debian.org/. This includes 319.82.

-- 
rob


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



Re: Problem during installation

2014-02-10 Thread Robin
On 10 February 2014 11:10, Mahesh Rajpurohit
wrote:

> Sir/Madam,
> I download Debian amd64 of 4.4G twice from two DVD images.
> But it shows me BOOTMGR is missing when I make my pendrive bootable.
> So please send me a link so that I can download directly from that link.
>  Send me the link which having network packages, so that I
> need not download the package and easily connect through Internet using LAN
> or wi-fi
>
>
> I download from
> http://cdimage.debian.org/debian-cd/7.4.0/amd64/iso-dvd/
> here it having 4.4G download
>
> [image: [   ]] debian-7.4.0-amd64-DVD-2.iso 
> 
> 2014-02-08 15:26  4.4G  [image: [   ]] debian-7.4.0-amd64-DVD-3.iso 
> 
> 2014-02-08 15:26  4.4G
>
>
> they both are showing bootmgr is missing during bootable using pendrive
>
>
Isn't BOOTMGR a Vista/win7 program?

-- 

*rob*


Re: installing debian

2014-02-09 Thread Robin
On 9 February 2014 08:52, Allan H  wrote:
> I was referred to you..
> Is it possible to totally replace the android system on my 7" asus memo with
> debian?
> Thank you
> Allan
>

Haven't tried it but check out
https://play.google.com/store/apps/details?id=com.zpwebsites.linuxonandroid


-- 
rob


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



Re: what are the names in Debian

2014-02-08 Thread Robin
On 8 February 2014 16:32, Roelof Wobben  wrote:
> Hello,
>
> I liket the elegance-colors theme for gnome and as far as I know it it's not
> avaible for debian,
>
> So i try to compile it myself.
>
> But it has three dependencies which I cannot find the appropiate name in
> Debian.
>
> gtk3-devel
> vala
> glib2-devel
>
> Can anyone tell me what the names in Debian are so I can try that theme ?
>
> Roelof
>
libgtk-3-dev
libglib2.0-dev
libvala-$VERSION-dev

-- 
rob


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/CAOZWb-puhbUsEtr01g-GK=dxw2-lewt9-9lceyzur7cfkak...@mail.gmail.com



Re: How to block kernel updates

2014-02-07 Thread Robin
On 7 February 2014 21:19, Roelof Wobben  wrote:
> Hello,
>
> I want to block the kernel updates because they cannot be installed ny lack 
> of space.
>
> How can I block them ?
>
> Roelof
>
> --
> 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/dub121-w24cd4590c0bc6eeb1c3d4cae...@phx.gbl
>

You can pin or hold them depending on your package manager. I would
update your current kernel when updates are available to get security
fixes

-- 
rob


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



Re: need to reverse an apt-get upgrade

2014-02-07 Thread Robin
On 7 February 2014 20:42, Frank McCormick  wrote:
>
>
> A moments inattention today and I lost my xorg in Debian Sid.
> The apt-get dist-upgrade resulted in this:
>
>
> Start-Date: 2014-02-07 14:31:32
> Commandline: apt-get dist-upgrade
> Install: libgcrypt20:i386 (1.6.1-1, automatic), libxcb-image0:i386 (0.3.9-1,
> automatic), libxcb-icccm4:i386 (0.3.9-2, automatic), libxshmfence1:i386
> (1.1-2, automatic), libxcb-xf86dri0:i386 (1.10-2, automatic)
> Upgrade: xserver-xorg-core:i386 (1.14.5-1, 1.15.0-2), xserver-common:i386
> (1.14.5-1, 1.15.0-2), xserver-xephyr:i386 (1.14.5-1, 1.15.0-2),
> libio-socket-ssl-perl:i386 (1.966-1, 1.967-1)
> Remove: xserver-xorg-input-synaptics:i386 (1.7.3-1),
> xserver-xorg-video-tdfx:i386 (1.4.5-1), xserver-xorg-video-vmware:i386
> (13.0.1-3), task-desktop:i386 (3.20), xorg:i386 (7.7+5),
> xserver-xorg-video-sisusb:i386 (0.9.6-2), xserver-xorg-video-savage:i386
> (2.3.7-2), xserver-xorg-video-mga:i386 (1.6.3-1),
> xserver-xorg-video-r128:i386 (6.9.2-1), xserver-xorg-video-geode:i386
> (2.11.15-1), xserver-xorg-video-neomagic:i386 (1.2.8-1),
> xserver-xorg-video-modesetting:i386 (0.8.1-1),
> xserver-xorg-video-siliconmotion:i386 (1.7.7-2),
> xserver-xorg-video-cirrus:i386 (1.5.2-1+b1), xserver-xorg-video-nouveau:i386
> (1.0.10-1), xserver-xorg-video-openchrome:i386 (0.3.3-1),
> xserver-xorg-video-intel:i386 (2.21.15-2), xserver-xorg-video-mach64:i386
> (6.9.4-1+b1), xserver-xorg-input-all:i386 (7.7+5),
> xserver-xorg-input-wacom:i386 (0.23.0+20131011-1),
> xserver-xorg-video-fbdev:i386 (0.4.4-1), xserver-xorg-video-all:i386
> (7.7+5), xserver-xorg-video-radeon:i386 (7.3.0-1),
> xserver-xorg-video-qxl:i386 (0.1.0-2.1), xserver-xorg-input-evdev:i386
> (2.8.2-1), xserver-xorg-video-vesa:i386 (2.3.3-1+b1),
> xserver-xorg-video-trident:i386 (1.3.6-2), xserver-xorg:i386 (7.7+5),
> xserver-xorg-input-mouse:i386 (1.9.0-1+b1), xserver-xorg-video-ati:i386
> (7.3.0-1), xserver-xorg-input-vmmouse:i386 (13.0.0-1+b1)
> End-Date: 2014-02-07 14:32:13
>
>
> As you can see it upgraded xorg...but pulled out all the video drivers!
>
> I've tried to reinstall the various tasks but there is always something
> blocking it. I've also thought of just waiting days...weeks to see if the
> video drivers show up in Sid. If they do will they be reinstalled ?
>
> Any way to reverse this ? Anything I've tried has been a waste of time.
>
>
> Thanks for any suggestions.
>
>

Been there. What I normally do is

cd /var/cache/apt/archives

then run

dpkg -i

to install previous version of all the xorg packages upgraded. Don't
forget the xorg libs, e.g. libxcb-image0:i386.

Then re-install the video drivers.

-- 
rob


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



Re: I can not install Debian because UEFI 32-bit

2014-02-07 Thread Robin
On 7 February 2014 02:23, Renaud15000 .  wrote:
> Hello, I am contacting you because I am confronted with the impossibility to
> install Linux on my computer because it has a 32-bit UEFI (without Legacy
> BIOS mode, although the processor is an x64) and all distributions Linux
> compatible EFI is 64-bit. My computer is a netbook Packard Bell easynote
> ME69BMP. I saw on the internet that other computers now are emerging (such
> as the HP Envy X2) with the same problem.
>
> That is why I ask you, as a user of Linux, develop a version of Debian
> UEFI-compatible 32-bit. In the hope of one day being able to install Linux
> on my netbook.
>
> Thank you.


It seems that, correct me if I'm wrong, that Intel are not providing
linux support on certain cpus. Maybe check Intel website or email them
to confirm one way or the other.

-- 
rob


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



Re:

2014-02-06 Thread Robin
On 6 February 2014 15:58, John W. Foster  wrote:
> On Thu, 2014-02-06 at 14:50 +0200, andrey.ry...@bilkent.edu.tr wrote:
>> hi community.
>> i installed new hardware to my my computer. Namely ide cd-dvd rw. The
>> device is presenting in /dev directory but i can not see it in file
>> manager. i can not use it. What is correct way to install new hardware to
>> debian machine? I have newest debian on my computer.
>> Thanks in advance,
>> Andrey.
>>
> first a bit of advice; please put a subject in your posts that
> identifies your issue;
>
> Is the drive mounted??
> if not it will not show in any file manager.
> Welcome to linux
> frosty
>
>

In a terminal type

mount

and post the results.
-- 
rob


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



Re: FW: upgrade problem

2014-02-06 Thread Robin
On 6 February 2014 08:31, Roelof Wobben  wrote:
>> 
>>> Date: Wed, 5 Feb 2014 16:35:47 -0500
>>> From: deb...@paulscrap.com
>>> To: debian-user@lists.debian.org
>>> Subject: Re: upgrade problem
>>>
>>>
>>>
>>> On 02/05/2014 04:16 PM, Roelof Wobben wrote:
 When I did today apt-get dist-upgrade it fails with this message :

 Preconfiguring packages ...
 (Reading database ... 146026 files and directories currently installed.)
 Preparing to unpack .../linux-image-3.12-1-amd64_3.12.9-1_amd64.deb ...
 Unpacking linux-image-3.12-1-amd64 (3.12.9-1) over (3.12.6-2) ...
 dpkg: error processing archive 
 /var/cache/apt/archives/linux-image-3.12-1-amd64_3.12.9-1_amd64.deb 
 (--unpack):
 cannot copy extracted data for 
 './lib/modules/3.12-1-amd64/kernel/net/l2tp/l2tp_ip6.ko' to 
 '/lib/modules/3.12-1-amd64/kernel/net/l2tp/l2tp_ip6.ko.dpkg-new': failed 
 to write (No space left on device)
 dpkg-deb: error: subprocess paste was killed by signal (Broken pipe)
 Errors were encountered while processing:
 /var/cache/apt/archives/linux-image-3.12-1-amd64_3.12.9-1_amd64.deb
 E: Sub-process /usr/bin/dpkg returned an error code (1)


 but df -i schows there is enough room :

 Bestandssysteem I-nodes IGebr IVrij IGeb% Aangekoppeld op
 /dev/sda1 85344 7496 77848 9% /
 udev 505442 497 504945 1% /dev
 tmpfs 507394 562 506832 1% /run
 tmpfs 507394 1 507393 1% /run/lock
 tmpfs 507394 9 507385 1% /run/shm
 /dev/sda9 3727360 13188 3714172 1% /home
 /dev/sda8 97536 23 97513 1% /tmp
 /dev/sda5 549440 143994 405446 27% /usr
 /dev/sda6 183264 9332 173932 6% /var
 none 507394 2 507392 1% /sys/fs/cgroup


 Roelof

>>>
>>> What about df -h (or just plain df if you prefer)? It's entirely
>>> possible to fill up a drive an still have inodes left.
>>>
>>> - PaulNM
>
>
> df -h gives this :
>
> /dev/sda1  315M 210M   85M  72% /
> udev10M0   10M   0% /dev
> tmpfs  397M 784K  396M   1% /run
> tmpfs  5,0M0  5,0M   0% /run/lock
> tmpfs  2,4G  88K  2,4G   1% /run/shm
> /dev/sda9   56G 460M   53G   1% /home
> /dev/sda8  360M 2,1M  335M   1% /tmp
> /dev/sda5  8,2G 3,4G  4,3G  45% /usr
> /dev/sda6  2,7G 633M  2,0G  25% /var
> none   4,0K0  4,0K   0% /sys/fs/cgroup
>
> df gives this :
>
> /dev/sda1  322023   214592   86286  72% /
> udev102400   10240   0% /dev
> tmpfs  405916  784  405132   1% /run
> tmpfs512005120   0% /run/lock
> tmpfs 2488920   92 2488828   1% /run/shm
> /dev/sda958512580   46776855049460   1% /home
> /dev/sda8  368615 2070  342993   1% /tmp
> /dev/sda5 8518920  3558876 4504264  45% /usr
> /dev/sda6 2817056   647952 2006288  25% /var
> none40   4   0% /sys/fs/cgroup
>
> Roelof
>
> --
> 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/dub121-w10d41b9a6a3abfd5fef060ae...@phx.gbl
>


I don't know the inner workings of dpkg. But during the extraction
process does dpkg use the /tmp  partition?
The /tmp partition is 360MB. Maybe increasing  /tmp size or setting up
/tmp on home may help

-- 
rob


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



Re: http.debian.net hash sum mismatch

2014-02-03 Thread Robin
> I too have had this issue for a couple of days now.
>
> Mark
>
>

I've emailed Raphael

-- 
rob


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/CAOZWb-p-MFahSMxY5dSQJM6QWer_bq+=kwaNym=xfwjfrqu...@mail.gmail.com



http.debian.net hash sum mismatch

2014-02-02 Thread Robin
Has anybody else experienced problems over the last couple of days?
Or is there a local fix I can apply?

For ref:

About http.debian.net

Brought to you by Raphael Geissert, it aims to solve the problem of
choosing a Debian mirror, among other issues. The redirector uses the
geo and network location of the user and the mirrors, the architecture
of the requested files, IP address family, the availability and
freshness of the mirrors, and a few other things. It is constantly
improved.
The result: it selects the best mirror that can serve the file. Give
the demonstration a try!
If you are familiar with cdn.debian.net you should think of
http.debian.net as a superior replacement.


Thanks
-- 
rob


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/CAOZWb-pT+pNXN=8ss8_obf3m7yuya_fq81fcyfahc+6g9gy...@mail.gmail.com



Valgrind -strlen error

2014-02-01 Thread Robin
Error:
use kill -SIGUSR2 pid to dump traces of active allocations
==1721== Memcheck, a memory error detector
==1721== Copyright (C) 2002-2013, and GNU GPL'd, by Julian Seward et al.
==1721== Using Valgrind-3.9.0 and LibVEX; rerun with -h for copyright info
==1721== Command: /usr/lib/libreoffice/program/oosplash --valgrind
==1721==

valgrind:  Fatal error at startup: a function redirection
valgrind:  which is mandatory for this platform-tool combination
valgrind:  cannot be set up.  Details of the redirection are:
valgrind:
valgrind:  A must-be-redirected function
valgrind:  whose name matches the pattern:  strlen
valgrind:  in an object with soname matching:   ld-linux-x86-64.so.2
valgrind:  was not found whilst processing
valgrind:  symbols from the object with soname: ld-linux-x86-64.so.2
valgrind:
valgrind:  Possible fixes: (1, short term): install glibc's debuginfo
valgrind:  package on this machine.  (2, longer term): ask the packagers
valgrind:  for your Linux distribution to please in future ship a non-
valgrind:  stripped ld.so (or whatever the dynamic linker .so is called)
valgrind:  that exports the above-named function using the standard
valgrind:  calling conventions for this platform.  The package you need
valgrind:  to install for fix (1) is called
valgrind:
valgrind:On Debian, Ubuntu: libc6-dbg
valgrind:On SuSE, openSuSE, Fedora, RHEL:   glibc-debuginfo
valgrind:
valgrind:  Cannot continue -- exiting now.  Sorry.


But:
dpkg  -l libc6*

||/ Name   Version  Architecture
+++-==---
ii  libc6:amd642.17-97  amd64
ii  libc6:i386 2.17-97  i386
ii  libc6-amd642.17-97  i386
ii  libc6-dbg:amd642.17-97  amd64
ii  libc6-dbg:i386 2.17-97  i386
ii  libc6-dev:amd64 2.17-97  amd64
ii  libc6-dev:i386  2.17-97  i386
in  libc6-dev-amd64  i386
ii  libc6-dev-i386  2.17-97  amd64
ii  libc6-dev-x322.17-97  amd64
ii  libc6-i386  2.17-97  amd64
ii  libc6-i686:i386 2.17-97  i386
ii  libc6-x322.17-97  amd64
un  libc6.1
un  libc6.1-dev

Found a bug in bugs.debian but that was resolved by installing
libc6-dbg:i386 which I have already installed.

Thanks

-- 
rob


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



Re: notify if a process take more than X time

2014-01-27 Thread Robin
On 27 January 2014 17:43, Pol Hallen  wrote:
> Hi all,
>
> I need add to my script a notify if a process take more than X time, so
> using ps I can see what time take a process:
>
> ps -ao cmd,etime|grep backup
> /bin/sh ./backup03:44:55
>
> what's the easy way to do a notify by email?
>
> redirect output of ps to file and use sed for analize the past time, next
> verify with if/then or there's a better way?
>
> any idea?
>
> thanks for help!
>
> Pol



Might be overkill but take a look at ps-watcher package if it is
available in your Debian version.
-- 
rob


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/CAOZWb-r+dTVUmfCvLsgX4-duSA7P=dk+-zqwh9+unk9z6ag...@mail.gmail.com



Re: Connecting Debian to Android phone

2014-01-25 Thread Robin
On 25 January 2014 21:35, Csanyi Pal  wrote:
> Hi,
>
> I want to connect my Samsung Galaxy S4 mini mobile phone with my Debian
> SID desktop system through an USB cable to transfer files from phone to
> Debian system. How can I do that?
>
> I have installed on the phone the KDE Connect application, and on the
> Debian Dekstop the kdeconnect debian package, but don't know how to use
> them?
>
> --
> Regards from Pal
>
>


Do you have kio-mtp installed?
Summary:
This package includes the MTP KIO plugin. It allows applications using
the KDE Platform to access files stored on devices that provide access to
them via the MTP protocol.


This includes newer newer android devices.

-- 
rob


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/CAOZWb-qb2HTLzqucS=sDoOa8Gv7kwPyvMCT0yqGS=v+8gnk...@mail.gmail.com



Re: Confused about dist-upgrade

2014-01-23 Thread Robin
On 23 January 2014 20:51, Bob Bernstein  wrote:
>
> A thread about dist-upgrade has me confused. In my experience I have only
> ever run 'apt-get dist-upgrade' when I wanted to move from one release to
> the next, say, from squeeze to wheezy.
>
> Similarly, if I wanted to insure I had the latest versions of packages
> already installed (and any/all security fixes) I have run 'apt-get update'
> followed immediately by 'apt-get upgrade.'
>
> But the thread currently underway about dist-upgrade suggests that users are
> running it rather routinely, and not at all necessarily to move from one
> release to the next.
>
> Can someone please point out what I am missing?
>
> Thanks,
>

Were those users using Debian stable? I use Sid so I usually
dist-upgrade as long it isn't going obviously affect my system, i.e
removing applications I want to keep.


-- 
rob


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



Re: webcam /dev/video missing / ERROR opening V4L interface

2014-01-23 Thread Robin
On 22 January 2014 17:29, Robin  wrote:
> Was working a couple of months ago, now it's not.
>
> Sid: 3.12-1-amd64 #1 SMP Debian 3.12.8-1 (2014-01-19) x86_64 GNU/Linux
> and 3.11-2 debian kernels
>
> ls /dev/video
> ls: cannot access /dev/video: No such file or directory
>
> webcam logitech c920
>
> lsusb
> Bus 009 Device 009: ID 046d:082d Logitech, Inc. HD Pro Webcam C920
>
> lsmod | grep v4
> v4l2_common12995  0
> videodev  113380  3 uvcvideo,v4l2_common,videobuf2_core
> i2c_core   24092  4 i2c_piix4,nvidia,v4l2_common,videodev
>
> lsmod | grep uvc
> uvcvideo   78960  0
> videobuf2_vmalloc  12816  1 uvcvideo
> videobuf2_core 35155  1 uvcvideo
> videodev  113380  3 uvcvideo,v4l2_common,videobuf2_core
> media  18303  2 uvcvideo,videodev
> usbcore   154167  9
> usblp,uvcvideo,usb_storage,ohci_hcd,ohci_pci,ehci_hcd,ehci_pci,usbhid,xhci_hcd
>
> luvcview
> luvcview 0.2.6
>
> SDL information:
>   Video driver: x11
>   A window manager is available
> Device information:
>   Device path:  /dev/video0
> ERROR opening V4L interface: No such file or directory
>
>
> Grepping /lib/udev for '/dev/video' returned no hits.
>
>
>
>
> Thanks
>
> --
> rob

Answer:
Device detection timeout when connected to external usb hub, moved to
motherboard usb port which turned out to be faulty. Moved to another
m'board usb port  and now works as expected.

-- 
rob


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



webcam /dev/video missing / ERROR opening V4L interface

2014-01-22 Thread Robin
Was working a couple of months ago, now it's not.

Sid: 3.12-1-amd64 #1 SMP Debian 3.12.8-1 (2014-01-19) x86_64 GNU/Linux
and 3.11-2 debian kernels

ls /dev/video
ls: cannot access /dev/video: No such file or directory

webcam logitech c920

lsusb
Bus 009 Device 009: ID 046d:082d Logitech, Inc. HD Pro Webcam C920

lsmod | grep v4
v4l2_common12995  0
videodev  113380  3 uvcvideo,v4l2_common,videobuf2_core
i2c_core   24092  4 i2c_piix4,nvidia,v4l2_common,videodev

lsmod | grep uvc
uvcvideo   78960  0
videobuf2_vmalloc  12816  1 uvcvideo
videobuf2_core 35155  1 uvcvideo
videodev  113380  3 uvcvideo,v4l2_common,videobuf2_core
media  18303  2 uvcvideo,videodev
usbcore   154167  9
usblp,uvcvideo,usb_storage,ohci_hcd,ohci_pci,ehci_hcd,ehci_pci,usbhid,xhci_hcd

luvcview
luvcview 0.2.6

SDL information:
  Video driver: x11
  A window manager is available
Device information:
  Device path:  /dev/video0
ERROR opening V4L interface: No such file or directory


Grepping /lib/udev for '/dev/video' returned no hits.




Thanks

-- 
rob


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/CAOZWb-o-dAgYq7R0N2ese+A7CE5QoiCtY12rg=bfz+8tnfa...@mail.gmail.com



Re: user activity tracking

2014-01-16 Thread Robin
On 16 January 2014 20:32, Steve Mayer  wrote:
> Mike,
>
>   It's a recently used file list created by certain GTK+ applications.
>
> See:
> https://alexcabal.com/disabling-gnomes-recently-used-file-list-the-better-way/
>
>
> --
> Steve Mayer
> smaye...@me.com
>

or 
http://askubuntu.com/questions/269858/how-do-i-prevent-the-file-recently-used-xbel-from-being-created


-- 
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/caozwb-o8ejaox8zy1kdjxkw8tezfmx9sz9pyq2oukcco8+u...@mail.gmail.com



Re: debian-live-7.2 doesn´t start

2014-01-10 Thread Robin
On 10 January 2014 10:22, peter.gierschner  wrote:
> Hi!
>
> I am trying to start debian-live-7.2-i386-kde-desktop on my hp PC. But it
> dosn´t work, the boot process stops at "Enabling power management", and
> resetting is only possible by the mains switch. I tried both versions,
> normal and failsave.
>
> The PC is a hp/compaq d5330 with IntelP4 2,66GHz, Board by ASUS P4SD-LA with
> Chipset Intel ICH5/865G.
>
> The BIOS allows only one setting regarding the power mabagemen,
> "ACPI-Support S3", but there is no difference. W7 and XP are running normal.
>
> Hope somebody could help me, this is my first step towards Linux!
>
> peter
>
>

When the menu screen (Live , Failsafe) comes up  press e (to edit) .
Go to the end of the line and type acpi=off . At the bottom of the
screen it will tell you the command to use to boot your PC, probably
CTRL-X.
A suggestion, as you are just starting Linux, is to to have a look at
Linux Mint.  http://www.linuxmint.com/index.php
-- 
rob


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



Re: Iceweasel weird behavior

2014-01-08 Thread Robin
On 8 January 2014 19:29, Alex S.  wrote:
> On Wed, 8 Jan 2014 12:09:54 -0700
> Robert Holtzman  wrote:
>
>> I'm confused. What is the point of specifying "run in terminal"?
>>
>>...snip...
>>
>
> Initially I started it in terminal to see the output. Then, as I
> discovered, that starting it from terminal (manually) removes the
> problem, I tried specifying "run in terminal" - but it does not remove
> the problem. Hence the questions.
>
> --
> Time is an illusion. Lunchtime doubly so.
>
> Best wishes,
> Alex S.

Have you tried with a fresh profile?


-- 
rob


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/CAOZWb-rvp3Ag_fkq7-HY=tmt6sgo50x0avd8glqksy++io3...@mail.gmail.com



Re: something triggering my screensaver timeout (login dialog) - sid, xfce

2014-01-04 Thread Robin
On 4 January 2014 02:33, Zenaan Harkness  wrote:
> My login dialog, after I lock my screen, gets repeatedly triggered -
> as though some keyboard key or mouse movement occurs - even after
> unplugging my two mice.
>
> I have a trackpad which is disabled in bios.
>
> There is a trackpoint - the only thing left.
>
> Is there a program or cmd line script I could run, to
> deterministically show what triggered xscreensaver?
>
> TIA
> Zenaan
>
>
> --
> 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/CAOsGNSTFo+ZuGk-Zz2iOR7c=C_41=2di=7MT_N3=ru4p2tg...@mail.gmail.com
>

xev

-- 
rob


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



Re: Problems while using Tor Browser on Debian 7

2014-01-03 Thread Robin
On 3 January 2014 19:21, Muntasim-Ul-Haque  wrote:
> Hi,
> I have installed Tor on Debian 7 but couldn't use it. Viladia is showing the
> following errors:
> [Warning] Could not bind to 127.0.0.1:9050: Cannot assign requested address
> [Warning] /var/run/tor is not owned by this user (tranjeeshan, 1000) but by
> debian-tor (115). Perhaps you are running Tor as the wrong user?
> [Warning] Before Tor can create a control socket in "/var/run/tor/control",
> the directory "/var/run/tor" needs to exist, and to be accessible only by
> the user account that is running Tor.  (On some Unix systems, anybody who
> can list a socket can connect to it, so Tor is being careful.)
> [Warning] Failed to parse/validate config: Failed to bind one of the
> listener ports.
>
> Now how can I make Tor work?
> Thanking you,
> Muntasim-Ul-haque


Worth considering: Details taken from Debian package description:

Note that Tor does no protocol cleaning on application traffic. There
is a danger that application protocols and associated programs can be
induced to reveal information about the user. Tor depends on Torbutton
and similar protocol cleaners to solve this problem. For best
protection when web surfing, the Tor Project recommends that you use
the Tor Browser Bundle, a standalone tarball that includes static
builds of Tor, Torbutton, and a modified Firefox that is patched to fix
a variety of privacy bugs.

The Tor Browser Bundle, is available from:

https://www.torproject.org/projects/torbrowser.html.en
-- 
rob


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



Re: mtp://[usb:001,022]/131074

2014-01-01 Thread Robin
On 1 January 2014 18:21, Siard  wrote:
> Robin wrote:
>> http://askubuntu.com/questions/87667/getting-mtp-enabled-devices-to-work-with-ubuntu
>>
>> Reply entitled : Connecting your Android phone or tablet to Ubuntu
>> with MTPFS
>
> OP already had her phone connected.  Apparently, nemo (file manager for
> the Cinnamon desktop) is able to do this.  Now the question is: how to
> use rsync to backup the internal memory and the SD card.
>
> I'm not an expert in this, but I guess that rsync is not possible with
> MTP and that a better solution would be to use an Android app like
> Titanium Backup, doing a first backup + incremental backups later.
>
>
> --

A quick search on google suggests rsync can work with fuse file
systems  including mtpfs.


-- 
rob


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



Re: mtp://[usb:001,022]/131074

2014-01-01 Thread Robin
On 1 January 2014 15:05, Sharon Kimble  wrote:
>
> On Tue, 31 Dec 2013 15:58:10 +0000
> Robin  wrote:
>
> > On 31 December 2013 13:29, Sharon Kimble 
> > wrote:
> >
> > > How can I mount something like this 'mtp://[usb:001,022]/131074'? I
> > > can mount it in 'nemo' and access its SD card, and its internal SD
> > > card, but it doesn't show up in 'mount' at the commandline. Its
> > > actually a Samsung Galaxy 3 mobile phone with 16g of available
> > > internal memory and a 16g external SD card.
> > >
> > > What I'm looking for is to be able to access it, so that I can
> > > rsync to it and back up both of the SD cards, the pseudo-internal
> > > one, and its external real one. Currently its not possible to rsync
> > > with it, as the system doesn't really see it.
> > >
> > > Thanks
> > > Sharon.
> >
> > Install mtpfs,  mtp-tools.
> >
> I've now got mtpfs and mtp-tools installed, and when I plug in the
> mobile and mount it by hand in 'nemo', this is what it shows in
> /var/logs/messages -
> Jan  1 12:05:02 london kernel: [ 3974.241049] usb 1-4: usbfs: process 27090 
> (mtpfs) did not claim interface 0 before use
> Jan  1 12:05:02 london kernel: [ 3974.353147] usb 1-4: reset high-speed USB 
> device number 12 using ehci-pci
> Jan  1 12:05:02 london kernel: [ 3974.486407] cdc_acm 1-4:1.1: ttyACM0: USB 
> ACM device
> Jan  1 12:05:02 london kernel: [ 3974.487017] usb 1-4: usbfs: process 27090 
> (mtpfs) did not claim interface 0 before use
> Jan  1 12:05:02 london kernel: [ 3974.487103] usb 1-4: usbfs: process 20717 
> (events) did not claim interface 0 before use
>
> So with this further information, how do I get the mtpfs be mounted
> please?
>
> Sharon.
> --
> A taste of linux = http://www.sharons.org.uk
> efever = http://www.efever.blogspot.com/
> efever = http://sharon04.livejournal.com/
> my git repo = https://bitbucket.org/boudiccas/dots
> Debian testing, Fluxbox 1.3.5, LibreOffice 4.1.4.2
> Registered Linux user 561944


http://askubuntu.com/questions/87667/getting-mtp-enabled-devices-to-work-with-ubuntu

Reply entitled : Connecting your Android phone or tablet to Ubuntu with MTPFS


-- 
rob


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



Re: mtp://[usb:001,022]/131074

2013-12-31 Thread Robin
On 31 December 2013 13:29, Sharon Kimble  wrote:

> How can I mount something like this 'mtp://[usb:001,022]/131074'? I can
> mount it in 'nemo' and access its SD card, and its internal SD card, but
> it doesn't show up in 'mount' at the commandline. Its actually a
> Samsung Galaxy 3 mobile phone with 16g of available internal memory and
> a 16g external SD card.
>
> What I'm looking for is to be able to access it, so that I can rsync to
> it and back up both of the SD cards, the pseudo-internal one, and its
> external real one. Currently its not possible to rsync with it, as the
> system doesn't really see it.
>
> Thanks
> Sharon.
> --
> A taste of linux = http://www.sharons.org.uk
> efever = http://www.efever.blogspot.com/
> efever = http://sharon04.livejournal.com/
> my git repo = https://bitbucket.org/boudiccas/dots
> Debian testing, Fluxbox 1.3.5, LibreOffice 4.1.4.2
> Registered Linux user 561944
>

Install mtpfs,  mtp-tools.

-- 

*rob*


Re: Internet loads too slow

2013-12-28 Thread Robin
On 28 December 2013 13:26, Man_Without_Clue  wrote:

> Hi all,
>
> I have asked this question everywhere, but still haven't gotten clear and
> solid solutions yet, so I thought I would send this to this list.
>
> As title says, internet loads too slow on Debian Wheezy amd 64.
>
> I have searched web and have done several methods to turn ipv6 off
> including Iceweasel, but still websites load slow.
>
> Any additional advise ?
>
> Thanks in advance.
>
> A.K.
>
>
>
> --
> 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/52bed197.9040...@gmail.com
>
>
Compared to?

Which browser are you using? Try Chromium.



-- 

*rob*


Re: Line-in of CM106 like sound device does not work

2013-12-25 Thread Robin
On 25 December 2013 11:30, Sietse Achterop  wrote:

>   Dear List,
>
> Using Wheezy, version 7.3, with the 3.11 kernel from wheezy-backports,
> I have an exteral USB sound device from Sweex, see
>http://www.sweex.com/nl/assortiment/sound-vision/sound-cards/sc016/
>
> lsusb says:
>Bus 003 Device 004: ID 0d8c:0102 C-Media Electronics, Inc. CM106 Like
> Sound Device
> This hardware seems OK, because under Windows it is working properly.
>
> The problem is that no signal is seen from the line-in input.
> The microphone input (and output) work ok.
> I can set the settings from System Settings->Sound.
> The microphone-led on the device shows that the setting is changed on the
> device.
>   (I am using pulseaudio, so it can also use pavucontrol)
>
> The question of course is, why are signals on line-in not seen?
> What could wrong?
>
>   Thanks in advance,
>   Sietse
>
>
>
As a start from a terminal run alsamixer, hit F6 to select device and check
the line-in level.

-- 

*rob*


Re: Collecting information after installation

2013-12-21 Thread Robin
On 21 December 2013 17:47, Brian  wrote:

> On Sat 21 Dec 2013 at 14:38:30 +0000, Robin wrote:
>
> > Assuming it should be booting to a graphical login screen, hit
> Ctrl-Alt-F1
> > which will take you to a text console which may show some errors that you
> > can post here.
>
> By default the screen is cleared of boot messages, There is only a login
> prompt.
>
> Depends when it froze. Won't there be xorg errors if it's a graphics
driver problem?
My sid install is 3.5 years old so I may be out of date:)
-- 

*rob *


Re: Collecting information after installation

2013-12-21 Thread Robin
Assuming it should be booting to a graphical login screen, hit Ctrl-Alt-F1
which will take you to a text console which may show some errors that you
can post here.

rob


On 21 December 2013 12:58, Ali ISIN  wrote:

> Hi,
>
> My name is Ali, and I am a spoiled user of Debian.
>
> Debian is smooth and fast.
> Debian is sober and really what I expect from an operating system.
>
> But, that's not why I write to you:
>
> Since the "7.x" version does my computer freeze;
> and that after installing "GRUB" and "rebooting".
>
> My system seem to work correctly but I thougth to inform you.
>
>
>
> A. ISIN
> Student
>
> NB: I use "Multimedia PC MEDION® AKOYA® P7350 D (MD8860)" with only
> Debian as OS.
>
>
> --
> 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/blu0-smtp19983192980a09d1d0ca28f97...@phx.gbl
>
>


-- 

*rob*


Setting up push syncing with a Debian mirror

2013-12-19 Thread Robin Kipp
Hi all,
I am currently running a Debian (Wheezy) server which is hosted in a 
professional datacenter. The datacenter is located in Germany, and is directly 
connected to major backbones. As I do have loads of unused bandwidth and disk 
space, I’d like to contribute to Debian’s infrastructure by hosting and 
maintaining an Aptitude mirror.
I’ve already set this up using the ftpsync scripts, and manual syncing already 
appears to work. However, I’d like to be able to utilize push syncing, however 
this requires an upstream mirror to connect to my server via SSH and issue a 
certain command. Is there any way of setting this up with an upstream mirror? 
The Debian Wiki page on the topic goes to great lengths in explaining how push 
syncing works technically, but is rather vague on how to arrange push syncing 
with an upstream mirror…
If anyone could shed some light on this issue, I’d greatly appreciate that!
Many thanks!
Robin


signature.asc
Description: Message signed with OpenPGP using GPGMail


Re: canon powershot sx50 hs

2013-12-17 Thread Robin
On 17 December 2013 22:53, steef  wrote:

> hi folks,
>
> my wife bought a canonpowershot sx50 hs. i tried to mount the memorystick
> of the camera with a usb-cable on wheezy.
>
> unfortunately without success.
>
> anybody any ideas about this? another camera, a olympic mounts without any
> problem. [with a) sudo fdisk -l and than  mount /dev/sdd1 etc.]
>
> thank you for your help in advance,
>
> regards,
>
> steef
>
>
> --
> 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/52b0d602.6070...@home.nl
>
>
I've a sx40hs. I use gtkam. Go to Camera -> Add Camera and select USB PTP
Class Camera. Sometimes need to switch camera on and off again after you
have connected the cable.

-- 

*rob*


Re: Using the GPU on the Intel i7-477

2013-12-17 Thread Robin Kipp
Hi Darac,
many thanks for your reply!
> 
> According to https://boinc.berkeley.edu/wiki/GPU_computing, the current
> BOINC should be able to detect and use your GPU just fine.

Unfortunately, the website states that a connected monitor or VGA dummy plug is 
required for this to work… Since the server in question is hosted in a 
datacenter, I won’t be able to connect any of that. However, I might just try 
my luck anyways with the drivers...

> If it
> doesn't, you may need to install Intel's own graphics driver from
> https://01.org/linuxgraphics/.
> 
There are a series of files on the downloads page, and unfortunately my 
experience with graphics drivers is zero at this time… Do you happen to know 
which file is the one that I need and how I install it properly?
Many thanks for your help!
Robin


signature.asc
Description: Message signed with OpenPGP using GPGMail


Using the GPU on the Intel i7-477

2013-12-14 Thread Robin Kipp
Hi all,
I’ve got a server running Debian 7.1 Wheezy which uses an Intel Haswell  i7-477 
processor. This processor should have an on-board GPU that I’d like to use - 
first for scientific calculations using BOINC, and later for automated video 
rendering possibly.
However, I don’t think Debian natively supports the GPU on that processor, so I 
was just wondering if someone on here could tell me how I can get any 
appropriate drivers / libraries for that?
Many thanks for any help!
Robin


signature.asc
Description: Message signed with OpenPGP using GPGMail


Re: Problems with Debian Testing

2013-11-26 Thread Robin
Check the desktop environment, e.g. gnome, kde, lxde, you use has upgraded
properly via  synaptic, apt-get or aptitude, whichever you use.

rob



On 26 November 2013 12:59, Rob Owens  wrote:

> On Tue, Nov 26, 2013 at 06:04:37PM +0600, Muntasim-Ul-Haque wrote:
> > Hi,
> > I just upgraded Debian Wheezy to Testing/Jessey. The up-gradation
> > process is done and now my Debian Testing is acting weird.
> > Softwares/apps look like I'm running them using WINE. I mean, They
> > are looking as if they're Windows' software and I'm running them in
> > Debian using WINE. But in fact they are not. Now what can I do?
> > Should I fall-back to the Debian Stable or what?
> > With thanks,
> > Muntasim-Ul-Haque
> >
> Check and see what icon themes you've got installed.  Maybe some of them
> accidentally got removed during the upgrade.
>
> aptitude search ~i | grep icon
>
> I think gnome-icon-theme is sort of the standard, but my system has a
> few additional ones.
>
> -Rob
>



-- 

*rob*


Re: Dependency hell following dpkg --audit

2013-11-17 Thread Robin
To start I'd

apt-get install --reinstall binutils module-init-tools

then try

apt-get -f install

which will try to fix problem or will provide some error messages

rob




On 17 November 2013 12:08, Lisi Reisz  wrote:

> Following Andrei's advice, I used dpkg --audit to sort out problems
> with network connections, which it did very successfully.
>
> In the process, I discovered that there was quite a list of
> unconfigured packages.  These I have been trying to configure.  In
> the process I have unleashed a dependency hell, not only worse than I
> have ever seen, but worse than I ever imagined.
>
> Is there a trick?  Other than trying one after another going
> backwards, and hoping that I will not either go round and round in
> circles, or meet a demand for a version that I can see no hope of
> installing.
>
> Here is the list as it currently stands.  Help!
> http://paste.ubuntu.com/6431514/
>
> In fact, is this sensibly soluble, or should I give up on upgrading
> and reinstall?
>
> Thanks!
> Lisi
>
>
> --
> 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/201311171208.05033.lisi.re...@gmail.com
>
>


-- 

*rob*


  1   2   3   4   5   6   7   8   >