Re: Manually installed packages

2016-11-30 Thread Jörg-Volker Peetz
Here you have the answer to your own question. Use apt-mark to mark the packages you want to keep and all "required" packages as "manual"ly installed. Then mark all other packages as "auto". Then let apt-get autoremove do its work. After that, use e.g. aptitude to remove remaining configuration

Re: suggested / recommended NAS boxes to run Debian?

2016-11-30 Thread Uwe Kleine-König
Hello, (I didn't get your original mail, so I set the required headers for proper threading by hand. I hope this worked, if not please excuse me.) I'm happy with a Netgear ReadyNAS 104. It has 4 bays, an Armada 370 UP processor, 2x Gbit Ethernet, 3x USB3, 512 MiB RAM, RS232 accessible without ope

Re: gdm3 greeter banner question

2016-11-30 Thread Liam O'Toole
On 2016-11-29, Malmberg, Breen wrote: > --_000_148045651342734270lanlgov_ > Content-Type: text/plain; charset="iso-8859-1" > Content-Transfer-Encoding: quoted-printable > > I am attempting to display a lengthy text warning banner, in the GUI, befor= > e the user logs in, while also having the disp

Re: mdadm - two questions

2016-11-30 Thread Rick Thomas
Hi Kamil, You’d get a bit more space by configuring your 4 drives as a RAID5 array (3TB usable for RAID5, vs 2TB usable for RAID10). The downside of RAID5 is that the RAID10 (or the one LV with two RAID1 PVs — they amount to the same thing for this discussion) can survive loosing two drives at

Re: Re: Problem compiling libpoppler=0.48.0-2 in Jessie

2016-11-30 Thread Davide Anchisi
I do have libpoppler-qt5-1: dpkg -l libpoppler-qt5-1 ii libpoppler-qt5-1:amd6 0.26.5-2+deb8u1 and libpoppler-qt5.so.1: /usr/lib/x86_64-linux-gnu/libpoppler-qt5.so.1 The command to build the package. I first went with: apt-get -b source libpoppler64=0.48.0-2 but also tried: dpkg-build

Re: mdadm - two questions

2016-11-30 Thread Kamil Jońca
Andy Smith writes: > Hi Kamil, > > On Tue, Nov 29, 2016 at 01:26:55AM +0100, Kamil Jońca wrote: >> My first plan was somehow migrate to RAID10. I thought that is simply >> "raid0 over some raid1 arrays" so it should be legal to use 2*1TB + >> 2*1GB devices and then extend 2*1G => 2*1TB. But it no

Re: mdadm - two questions

2016-11-30 Thread Kamil Jońca
Rick Thomas writes: > Hi Kamil, > > You’d get a bit more space by configuring your 4 drives as a RAID5 > array (3TB usable for RAID5, vs 2TB usable for RAID10). The downside > of RAID5 is that the RAID10 (or the one LV with two RAID1 PVs — they > amount to the same thing for this discussion) can

Re: router solutions based on Debian?

2016-11-30 Thread Dan Ritter
On Tue, Nov 29, 2016 at 03:00:24PM -0800, J Mo wrote: > > When it comes to router-web-UI distros, the only thing I could recommend was > was PFSense. Everything else was disappointing. I don't recommend that anyone, ever, use a web UI to try to control a router. > That being said, a regular old

Re: mdadm - two questions

2016-11-30 Thread Rick Thomas
On Nov 30, 2016, at 3:40 AM, Kamil Jońca wrote: > Rick Thomas writes: > >> Hi Kamil, >> >> You’d get a bit more space by configuring your 4 drives as a RAID5 >> array (3TB usable for RAID5, vs 2TB usable for RAID10). The downside >> of RAID5 is that the RAID10 (or the one LV with two RAID1 P

Re: router solutions based on Debian?

2016-11-30 Thread Daniel Pocock
On 30/11/16 13:28, Dan Ritter wrote: > On Tue, Nov 29, 2016 at 03:00:24PM -0800, J Mo wrote: >> >> When it comes to router-web-UI distros, the only thing I could recommend was >> was PFSense. Everything else was disappointing. > > I don't recommend that anyone, ever, use a web UI to try to > con

Re: Manually installed packages

2016-11-30 Thread Stefan Monnier
> apt-mark showmanual gives you the complement of apt-mark showauto. > The second paragraph of apt-mark's description explains what's meant > by "auto". So "manual" doesn't mean what you appear to assume it does, > that you were involved in manually selecting it for installation. It > just mean

RE: broken shutdown on stretch

2016-11-30 Thread Bonno Bloksma
Hi, >On Tue, Nov 29, 2016 at 11:10:11AM +0100, Vincent Truchseß wrote: >> Since upgrading to stretch my system keeps hanging on shutdown with >> only a cursor visible, but no output. tty0 still shows output from the >> previous boot. >> >> There is no error-message, but SysRq-Keys still work. >

Re: router solutions based on Debian?

2016-11-30 Thread Dan Ritter
On Wed, Nov 30, 2016 at 02:45:00PM +0100, Daniel Pocock wrote: > > > On 30/11/16 13:28, Dan Ritter wrote: > > Ubiquiti has a major problem: they violate the GPL up down and sideways. > > > > http://libertybsd.net/ubiquiti/ > > > > If the device can be completely reflashed, is that an issue? T

Re: router solutions based on Debian?

2016-11-30 Thread tomas
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Wed, Nov 30, 2016 at 02:45:00PM +0100, Daniel Pocock wrote: > > > On 30/11/16 13:28, Dan Ritter wrote: [...] > > Ubiquiti has a major problem: they violate the GPL up down and sideways. > > > > http://libertybsd.net/ubiquiti/ > > > > If the d

Re: Congratulations samrmn , Your Roof is Covered. Thank You!Wdw9

2016-11-30 Thread Sam Rahmani
Screw you. On Sun, Nov 27, 2016 at 12:02 PM, Brad Rogers wrote: > krst > > Congratulations samrmn, > The Home Warranty Limited time event. > Never pay for covered home repairs again! > Your Roof is Covered - FREE! > Click Here > > Unsub > Opt Out > > > > > > > > > > > >

Detect upgradable packages in shell script ran as a non-root user

2016-11-30 Thread Martin T
Hi, I would like to run a cron job which periodically checks if I have upgradable packages. One way to do it is probably like this: $ apt-get upgrade -s | grep -q "^0 upgraded" In case exit code is >0, then there are upgradable packages. The second solution I came up with is: $ for package in $

Re: Detect upgradable packages in shell script ran as a non-root user

2016-11-30 Thread Greg Wooledge
On Wed, Nov 30, 2016 at 05:09:20PM +0200, Martin T wrote: > I would like to run a cron job which periodically checks if I have > upgradable packages. One way to do it is probably like this: > > $ apt-get upgrade -s | grep -q "^0 upgraded" But you have to run apt-get update first, AS root. (Your

Re: Detect upgradable packages in shell script ran as a non-root user

2016-11-30 Thread Shin Ice
On Wed, Nov 30, 2016 at 10:13:40AM -0500, Greg Wooledge wrote: > On Wed, Nov 30, 2016 at 05:09:20PM +0200, Martin T wrote: > > I would like to run a cron job which periodically checks if I have > > upgradable packages. One way to do it is probably like this: > > > > $ apt-get upgrade -s | grep -q

Re: Detect upgradable packages in shell script ran as a non-root user

2016-11-30 Thread Liam O'Toole
On 2016-11-30, Martin T wrote: > Hi, > > I would like to run a cron job which periodically checks if I have > upgradable packages. One way to do it is probably like this: > > $ apt-get upgrade -s | grep -q "^0 upgraded" > > In case exit code is >0, then there are upgradable packages. The > second

Re: Detect upgradable packages in shell script ran as a non-root user

2016-11-30 Thread Joe
On Wed, 30 Nov 2016 17:09:20 +0200 Martin T wrote: > > For me the "apt-get upgrade -s | grep -q "^0 upgraded"" seems to be > the most reasonable solution, but maybe there is even a better way? > > I've found upgrade-system to be useful, and when installed, it sends a daily email showing its

A workaround was -[Re: Index of hardware test utilities available in official Debian repositories]

2016-11-30 Thread Richard Owlett
On 11/29/2016 8:52 AM, rhkra...@gmail.com wrote: On Tuesday, November 29, 2016 08:07:47 AM Verde Denim wrote: On 11/29/2016 7:31 AM, Richard Owlett wrote: I just looked at the intro of https://debtags.alioth.debian.org/paper-debtags.html . It appears that its goal is to solve my problem. I see

Re: gdm3 greeter banner question

2016-11-30 Thread Brian
On Tue 29 Nov 2016 at 21:55:13 +, Malmberg, Breen wrote: > I am attempting to display a lengthy text warning banner, in the GUI, before > the user logs in, while also having the display-user-list=false option set. > > How do I do this? When you set the display-user-list=false option it appear

Debian Jessie Postgres 9.4 connection problem

2016-11-30 Thread Ramon Hofer
Hi all I am trying to setup a postgresql 9.4 database on Debian Jessie. It worked well on testing with postgresql 9.6 from the repos and then I already could connect with $ sudo -u postgres psql I would like to use Jessie but when I try the same on stable with postgresql 9.4, this is what I get w

Re: A workaround was -[Re: Index of hardware test utilities available in official Debian repositories]

2016-11-30 Thread Seeker
On 11/30/2016 11:20 AM, Richard Owlett wrote: On 11/29/2016 8:52 AM, rhkra...@gmail.com wrote: On Tuesday, November 29, 2016 08:07:47 AM Verde Denim wrote: On 11/29/2016 7:31 AM, Richard Owlett wrote: I just looked at the intro of https://debtags.alioth.debian.org/paper-debtags.html . It appea

Re: gdm3 greeter banner question

2016-11-30 Thread Malmberg, Breen
Brian, I did a search as you suggested and came up with a lot of other people experiencing and discussing the same issue. I tracked it down to a bug that had been filed a little over 3 years ago, with gdm3 which was introduced some time between 3.4 and 3.14. Eventually they made a patch for it

Re: Search Your Neighborhood NOW Qd

2016-11-30 Thread Aniyia Williams
Thanks On Nov 30, 2016 4:45 PM, wrote: Thanks On Nov 28, 2016 11:06 AM, wrote: **Dear_{ananda}** You Are Receiving This Email Because There May Be A Risk *Of Sex Offender*

Re: Search Your Neighborhood NOW Qd

2016-11-30 Thread Aniyia Williams
Thanks On Nov 28, 2016 11:06 AM, wrote: > > > **Dear_{ananda}** > > You Are Receiving This Email Because There May Be A Risk *Of Sex Offender* > Activity > In > Your Aera.

Re: debian on lenovo carbon thinkpad 4th generation confirmation report

2016-11-30 Thread Richard Hector
On 30/11/16 11:59, Lisi Reisz wrote: > On Tuesday 29 November 2016 20:36:29 iqwue Wabv wrote: >> Richard, >> >> I didn't know that kernels > 4.1 are available as jessie-backports. Thanks. >> Regards, Karol > > Only 4.7. The others appear not to be available any more. Yes - there only ever appear

Re: A workaround was -[Re: Index of hardware test utilities available in official Debian repositories]

2016-11-30 Thread Richard Owlett
On 11/30/2016 5:38 PM, Seeker wrote: On 11/30/2016 11:20 AM, Richard Owlett wrote: On 11/29/2016 8:52 AM, rhkra...@gmail.com wrote: On Tuesday, November 29, 2016 08:07:47 AM Verde Denim wrote: On 11/29/2016 7:31 AM, Richard Owlett wrote: I just looked at the intro of https://debtags.alioth.de

ARTWORK SOURCE

2016-11-30 Thread Rick
We offer fast and inexpensive custom vector artwork & emb. digitizing services online with fast turn around time A service to convert your raster files into high quality fully scalable vectors for use on banners, vehicle wraps, screenprinting, t-shirts, signage, business cards, architectural lett

Re: Detect upgradable packages in shell script ran as a non-root user

2016-11-30 Thread kushal
Martin T writes: > Hi, > > I would like to run a cron job which periodically checks if I have > upgradable packages. One way to do it is probably like this: > > $ apt-get upgrade -s | grep -q "^0 upgraded" > > In case exit code is >0, then there are upgradable packages. The > second solution I ca

Re: Debian Jessie Postgres 9.4 connection problem

2016-11-30 Thread Johann Spies
Try pg_lsclusters to see which postgresql servers are running and listening on which ports. Regards Johann -- Because experiencing your loyal love is better than life itself, my lips will praise you. (Psalm 63:3)

Re: broken shutdown on stretch

2016-11-30 Thread Johann Spies
> Yes, Halt or shutdown used to implement a power off. > sudo halt -p or sudo shutdown -P now Johann -- Because experiencing your loyal love is better than life itself, my lips will praise you. (Psalm 63:3)