Re: why would "tr --complement --squeeze-repeats ..." append the substitution char once more? ...

2023-12-11 Thread Albretch Mueller
On 12/11/23, Greg Wooledge wrote: > 1) Many implementations of echo will interpret parts of their argument(s), >in addition to processing options like -n. If you want to print a >variable's contents to standard output without *any* interpretation, >use printf. > > printf %s "$myva

Re: why would "tr --complement --squeeze-repeats ..." append the substitution char once more? ...

2023-12-11 Thread debian-user
Albretch Mueller wrote: > echo "abc123" > file.txt > ftype=$(file --brief file.txt) > echo "// __ \$ftype: |${ftype}|" > ftypelen=${#ftype} > echo "// __ \$ftypelen: |${ftypelen}|" > > # removing spaces ... > ftype2=$(echo &qu

Re: "echo" literally in sh scripts (was: why would "tr --complement --squeeze-repeats ..." append the substitution char once more? ...)

2023-12-11 Thread Greg Wooledge
On Mon, Dec 11, 2023 at 10:16:35AM -0500, Stefan Monnier wrote: > > 1) Many implementations of echo will interpret parts of their argument(s), > >in addition to processing options like -n. If you want to print a > >variable's contents to standard output without *any* interpretation, > >

"echo" literally in sh scripts (was: why would "tr --complement --squeeze-repeats ..." append the substitution char once more? ...)

2023-12-11 Thread Stefan Monnier
> 1) Many implementations of echo will interpret parts of their argument(s), >in addition to processing options like -n. If you want to print a >variable's contents to standard output without *any* interpretation, >use printf. > > printf %s "$myvar" > printf '%s\n' "$myvar" In

Re: why would "tr --complement --squeeze-repeats ..." append the substitution char once more? ...

2023-12-11 Thread tomas
On Mon, Dec 11, 2023 at 09:55:54AM -0500, Greg Wooledge wrote: [...] Greg, your analyses are always impressive. And enjoyable. Thanks for this cheers -- t signature.asc Description: PGP signature

Re: why would "tr --complement --squeeze-repeats ..." append the substitution char once more? ...

2023-12-11 Thread Greg Wooledge
quot; abc á é í ó ú ü ñ Á É Í Ó Ú Ü Ñ 123 birdie🐦here ¿ ¡ § > ASCII ä ö ü ß Ä Ö Ü Text" > echo "// __ \$_FL_TYPE: |${_FL_TYPE}|" > _FL_TYPE=$(echo "${_FL_TYPE}" | xargs) > echo "// __ \$_FL_TYPE: |${_FL_TYPE}|" > _FL_TYPE=$(echo -n "${

Re: why would "tr --complement --squeeze-repeats ..." append the substitution char once more? ...

2023-12-11 Thread Max Nikulin
On 11/12/2023 21:00, Albretch Mueller wrote: // __ $_FL_TYPE: |abc á é í ó ú ü ñ Á É Í Ó Ú Ü Ñ 123 birdie🐦here ¿ ¡ § ASCII ä ö ü ß Ä Ö Ü Text| // __ $_FL_TYPE:|abc_123_birdie_here_ASCII_Text| https://pypi.org/project/Unidecode/ should be more friendly to languages other than English.

Re: why would "tr --complement --squeeze-repeats ..." append the substitution char once more? ...

2023-12-11 Thread Albretch Mueller
ü ß Ä Ö Ü Text" echo "// __ \$_FL_TYPE: |${_FL_TYPE}|" _FL_TYPE=$(echo "${_FL_TYPE}" | xargs) echo "// __ \$_FL_TYPE: |${_FL_TYPE}|" _FL_TYPE=$(echo -n "${_FL_TYPE}" | tr --complement --squeeze-repeats '[A-Za-z0-9.]' '_'); echo "// __ \$_

Re: why would "tr --complement --squeeze-repeats ..." append the substitution char once more? ...

2023-12-11 Thread Greg Wooledge
On Mon, Dec 11, 2023 at 02:11:46PM +0100, to...@tuxteam.de wrote: > On Mon, Dec 11, 2023 at 07:42:10AM -0500, Greg Wooledge wrote: > > Looks like GNU tr in Debian 12 still doesn't handle multibyte characters > > correctly: > > > > unicorn:~$ echo 'mañana' | tr ñ X > > maXXana > > Hey, you

Re: why would "tr --complement --squeeze-repeats ..." append the substitution char once more? ...

2023-12-11 Thread tomas
On Mon, Dec 11, 2023 at 07:42:10AM -0500, Greg Wooledge wrote: > On Mon, Dec 11, 2023 at 09:37:42AM +0100, to...@tuxteam.de wrote: > > 2. This is tr, not regexp, so '[A-Za-z0-9.]' isn't doing what you > >think it does. It will match '[', 'A' to 'Z', 'a' to 'z','.' and > >']'. I guess you w

Re: why would "tr --complement --squeeze-repeats ..." append the substitution char once more? ...

2023-12-11 Thread Greg Wooledge
On Mon, Dec 11, 2023 at 09:37:42AM +0100, to...@tuxteam.de wrote: > 2. This is tr, not regexp, so '[A-Za-z0-9.]' isn't doing what you >think it does. It will match '[', 'A' to 'Z', 'a' to 'z','.' and >']'. I guess you want to say 'A-Za-z0-9.' Well spotted. > 3. As a convenience, tr has

Re: why would "tr --complement --squeeze-repeats ..." append the substitution char once more? ...

2023-12-11 Thread Greg Wooledge
On Mon, Dec 11, 2023 at 11:25:13AM +, Albretch Mueller wrote: > In the case of: "ASCII text" > what should come out of it is: "ASCII_text" > not: "ASCII_text_" > no underscore at the end. That is the question I have. OK, here's my guess. The lines of code that you showed us are not actuall

Re: why would "tr --complement --squeeze-repeats ..." append the substitution char once more? ...

2023-12-11 Thread tomas
On Mon, Dec 11, 2023 at 11:25:13AM +, Albretch Mueller wrote: > "tr --complement --squeeze-repeats ..." makes sure that the replaced > characters only appear once (that it doesn't immediately repeat). Say > you have something like " " (two spaces) or "

Re: why would "tr --complement --squeeze-repeats ..." append the substitution char once more? ...

2023-12-11 Thread Albretch Mueller
"tr --complement --squeeze-repeats ..." makes sure that the replaced characters only appear once (that it doesn't immediately repeat). Say you have something like " " (two spaces) or "?$|" (three characters) which will be replaced by just an underscore. In the

Re: why would "tr --complement --squeeze-repeats ..." append the substitution char once more? ...

2023-12-11 Thread tomas
hat? > the two strings are not the same length even though your are just > replacing ASCII characters, why did: > echo "${ftype}" | tr --complement --squeeze-repeats '[A-Za-z0-9.]' '_' > place a character at the end? Two things stick out: 1. wit

Re: why would "tr --complement --squeeze-repeats ..." append the substitution char once more? ...

2023-12-11 Thread Albretch Mueller
y underscores # it adds an underscore at the end? ftype2=$(echo "${ftype}" | tr --complement --squeeze-repeats '[A-Za-z0-9.]' '_'); echo "// __ \$ftype2: |${ftype2}|" ftype2len=${#ftype2} echo "// __ \$ftype2len: |${ftype2len}|" the two strings a

Re: why would "tr --complement --squeeze-repeats ..." append the substitution char once more? ...

2023-12-10 Thread Greg Wooledge
paces ... > ftype2=$(echo "${ftype}" | tr --complement --squeeze-repeats > '[A-Za-z0-9.]' '_'); > echo "// __ \$ftype2: |${ftype2}|" > ftype2len=${#ftype2} > echo "// __ \$ftype2len: |${ftype2len}|" Please tell us: * What you a

why would "tr --complement --squeeze-repeats ..." append the substitution char once more? ...

2023-12-10 Thread Albretch Mueller
echo "abc123" > file.txt ftype=$(file --brief file.txt) echo "// __ \$ftype: |${ftype}|" ftypelen=${#ftype} echo "// __ \$ftypelen: |${ftypelen}|" # removing spaces ... ftype2=$(echo "${ftype}" | tr --complement --squeeze-repeats '[A-Za-z0-9.]

Re: Debian Squeeze Installer: HTTP proxy server to access outsideworld?

2021-01-02 Thread David Christensen
On 2021-01-02 00:48, FadeOut FF wrote: I want http proxy server If you are asking how to respond to the "HTTP Proxy?" question in the Debian Installer, I press and leave it blank. David

Re: Re: Debian Squeeze Installer: HTTP proxy server to access outsideworld?

2021-01-02 Thread FadeOut FF
I want http proxy server

Re: Re: Debian Squeeze Installer: HTTP proxy server to access outsideworld?

2020-03-27 Thread Greg Wooledge
will continue to do so. > If we assume that the content of the OP's message is in the header, then let's quote it here, so that it becomes part of the actual discussion: Subject: Re: Re: Debian Squeeze Installer: HTTP proxy server to access So, first things first: do not install Squeeze

Re: Re: Debian Squeeze Installer: HTTP proxy server to access outsideworld?

2020-03-26 Thread Liam O'Toole
On Thu, 26 Mar, 2020 at 23:34:57 +, Diana Emefa wrote: >I need http to access the outside world This is a mailing list. You have connected to the outside world without HTTP. I hope that you will continue to do so.

Re: Re: Debian Squeeze Installer: HTTP proxy server to access outsideworld?

2020-03-26 Thread Diana Emefa
I need http to access the outside world

Re: selinux and debian squeeze 9.5

2018-11-05 Thread Greg Wooledge
> > squeeze! > > Speaking of obvious — the OP says 9.5, so presumably they _meant_ to say > Stretch — no? It does not say "9.5" anywhere in the original post. It does, however, say 9.5 in the Subject header. Unfortunately, we have a divide here. Newbies think that p

correction, stretch 9.5 Re: selinux and debian squeeze 9.5

2018-11-03 Thread John Jasen
On 11/3/18 7:45 PM, Mark Fletcher wrote: > > squeeze! You could be very lucky and someone with the same outdated, > no longer supported distribution and experiencing the same problem > comes along. I wouldn't count on it though. > > > Any sugges

Re: selinux and debian squeeze 9.5

2018-11-03 Thread Mark Fletcher
> squeeze! You could be very lucky and someone with the same outdated, > no longer supported distribution and experiencing the same problem > comes along. I wouldn't count on it though. > > > Any suggestions? > > The obvious. > Speaking of obvious — the OP says 9.

Re: selinux and debian squeeze 9.5

2018-11-03 Thread Brian
On Sat 03 Nov 2018 at 18:04:49 -0400, John Jasen wrote: > For some reason, my attempts at enabling SELinux on a squeeze system > just aren't taking. > > As I understand it, the following steps are required: > > a) installing selinux-policy-default and dependencies >

selinux and debian squeeze 9.5

2018-11-03 Thread John Jasen
For some reason, my attempts at enabling SELinux on a squeeze system just aren't taking. As I understand it, the following steps are required: a) installing selinux-policy-default and dependencies b) editing /etc/selinux/config to select default policy and permissive or enforcing. c) a

selinux and debian squeeze 9.5

2018-10-30 Thread John Jasen
For some reason, my attempts at enabling SELinux on a squeeze system just aren't taking. As I understand it, the following steps are required: a) installing selinux-policy-default and dependencies b) editing /etc/selinux/config to select default policy and permissive or enforcing. c) a

Re: BIND DNS problem after upgrading from Wheezy to Squeeze

2017-12-30 Thread Bernhard Schmidt
Pascal Hambourg wrote: > Le 29/12/2017 à 18:27, Andrew W a écrit : >> >> On 27/12/2017 13:18, Bernhard Schmidt wrote: >>> Current BIND9 defaults to doing DNSSEC verification. DNSSEC needs large >>> packets. You might have an issue with UDP fragments being dropped at >>> your firewall/NAT Gateway?

Re: BIND DNS problem after upgrading from Wheezy to Squeeze

2017-12-29 Thread Pascal Hambourg
Le 29/12/2017 à 18:27, Andrew W a écrit : On 27/12/2017 13:18, Bernhard Schmidt wrote: Current BIND9 defaults to doing DNSSEC verification. DNSSEC needs large packets. You might have an issue with UDP fragments being dropped at your firewall/NAT Gateway? Thanks for this tip. Looking into it I

Re: BIND DNS problem after upgrading from Wheezy to Squeeze

2017-12-29 Thread Andrew W
On 27/12/2017 13:18, Bernhard Schmidt wrote: Current BIND9 defaults to doing DNSSEC verification. DNSSEC needs large packets. You might have an issue with UDP fragments being dropped at your firewall/NAT Gateway? Thanks for this tip. Looking into it I discovered TCP seems to be recommened fo

Re: BIND DNS problem after upgrading from Wheezy to Squeeze

2017-12-27 Thread Bernhard Schmidt
Andrew Wood wrote: Hi, > I have a server which acts as a DNS server for our LAN. All our internal > servers have A records on it using a .local domain and it forwards all > other requests out to the root servers using the in built list provided > with BIND. All clients on the LAN have this ma

Re: BIND DNS problem after upgrading from Wheezy to Squeeze

2017-12-26 Thread deloptes
Andrew W wrote: > > > Does anyone have any ideas please? > I had the same experience - I think (after trying this and that) the solution was ntp (time was behind on the server), but I am not really 100%. I was thinking first it has something to do with ipv6 or firewall, but after updating the

BIND DNS problem after upgrading from Wheezy to Squeeze

2017-12-26 Thread Andrew Wood
I have a server which acts as a DNS server for our LAN. All our internal servers have A records on it using a .local domain and it forwards all other requests out to the root servers using the in built list provided with BIND. All clients on the LAN have this machine set as their only DNS serve

BIND DNS problem after upgrading from Wheezy to Squeeze

2017-12-26 Thread Andrew W
I have a server which acts as a DNS server for our LAN. All our internal servers have A records on it using a .local domain and it forwards all other requests out to the root servers using the in built list provided with BIND. All clients on the LAN have this machine set as their only DNS serve

Re: EXT4 booting with Grub 1.97 (0.97-64) Debian Squeeze

2017-01-31 Thread Pascal Hambourg
Le 31/01/2017 à 21:32, Sophie Loewenthal a écrit : | On 31 Jan 2017, at 21:26, Pascal Hambourg wrote: Grub-pc (GRUB 2) supports ext4. I doubt grub/grub-legacy does. Hi and thanks. If Squeeze has grub-pc 1.98+20100804-14+squeeze2 then this can boot with /boot ext4. Am I correct? What is

Re: EXT4 booting with Grub 1.97 (0.97-64) Debian Squeeze

2017-01-31 Thread Sophie Loewenthal
| On 31 Jan 2017, at 21:26, Pascal Hambourg wrote: > > Le 31/01/2017 à 20:01, Sophie Loewenthal a écrit : >> >> Will these packages on a Debian squeeze server support grub booting >> from an ext4 file system with the extra features turned on ( e.g extents)? >

Re: EXT4 booting with Grub 1.97 (0.97-64) Debian Squeeze

2017-01-31 Thread Pascal Hambourg
Le 31/01/2017 à 20:01, Sophie Loewenthal a écrit : Will these packages on a Debian squeeze server support grub booting from an ext4 file system with the extra features turned on ( e.g extents)? # dpkg -la|grep grub ii grub 0.97-64

EXT4 booting with Grub 1.97 (0.97-64) Debian Squeeze

2017-01-31 Thread Sophie Loewenthal
Hi all, Will these packages on a Debian squeeze server support grub booting from an ext4 file system with the extra features turned on ( e.g extents)? # dpkg -la|grep grub ii grub 0.97-64 GRand Unified Bootloader

Package Pinning Question: Pin Dovecot 1.2 during upgrade from Squeeze to Wheezy

2016-03-02 Thread Sophie Loewenthal
Hi, Debian Wheeze onwards comes with a default installation of Dovecot 2. An upgrade from Squeeze to Wheezy would upgrade Dovecot 1.2 -> 2.2. When I upgrade a Squeeze server to Wheezy, how could I keep Dovecot 1.2? Could I by Pinning the package? Many thanks, Soph. P.S I have pos

Re: Squeeze LVM: pvmove failure left with new LVM named /dev/vg0/pvmove0 - Trying to roll back

2016-03-01 Thread Sophie Loewenthal
Thank you very much Stefan for your clear explanation. Because this affects a root LV I'll run in single user. Soph On March 1, 2016 4:50:55 PM GMT+01:00, Stefan Monnier wrote: >> Would pvmove —abort roll the changes back? >> How would this affect the server, since the earlier pvmove cras

Re: Squeeze LVM: pvmove failure left with new LVM named /dev/vg0/pvmove0 - Trying to roll back

2016-03-01 Thread Stefan Monnier
> Would pvmove —abort roll the changes back? > How would this affect the server, since the earlier pvmove crashed this? pvmove works as follows (more or less): - allocate the destination. - configure the destination as a mirror of the source. - update the new mirror (that's what does the he

Re: Squeeze LVM: pvmove failure left with new LVM named /dev/vg0/pvmove0 - Trying to roll back

2016-03-01 Thread Sophie Loewenthal
Hi, Would pvmove —abort roll the changes back? How would this affect the server, since the earlier pvmove crashed this? > On 1 Mar 2016, at 14:50, Darac Marjal wrote: > > On Tue, Mar 01, 2016 at 02:15:14PM +0100, Sophie Loewenthal wrote: >> Hi everybody, >> >> I am looking for advi

Re: Squeeze LVM: pvmove failure left with new LVM named /dev/vg0/pvmove0 - Trying to roll back

2016-03-01 Thread Darac Marjal
On Tue, Mar 01, 2016 at 02:15:14PM +0100, Sophie Loewenthal wrote: Hi everybody, I am looking for advice on rolling back a failed pvmove of extents on the same PV ( disc ) and appreciate any help. When trying to create a contiguous set of extents on a disc I accidently moved the wrong

Squeeze LVM: pvmove failure left with new LVM named /dev/vg0/pvmove0 - Trying to roll back

2016-03-01 Thread Sophie Loewenthal
Hi everybody, I am looking for advice on rolling back a failed pvmove of extents on the same PV ( disc ) and appreciate any help. When trying to create a contiguous set of extents on a disc I accidently moved the wrong extents. My command was, pvmove -v /dev/sda3:0-15 /dev/sdc:3028-

Re: Upgraded squeeze-lts server to wheezy -- client exim4 connections over tls give segfault

2016-02-21 Thread Andrew McGlashan
Hi, On 22/02/2016 5:25 AM, deloptes wrote: > Andrew McGlashan wrote: > what is the mail server on this system? It should have one - perhaps also > exim It is exim4 as per the packages list. I fixed this by regenerating the certificate, that's all it was. Right now it is using my own self signed

Re: Upgraded squeeze-lts server to wheezy -- client exim4 connections over tls give segfault

2016-02-21 Thread deloptes
Andrew McGlashan wrote: > I can't find anything that seems to be significant except for the linux > kernel version. the error is not likely to be related to the kernel version > > NB: A simpler VM on the same Xen server has been running Wheezy for quite > a while, but it isn't a mail server. w

Upgraded squeeze-lts server to wheezy -- client exim4 connections over tls give segfault

2016-02-21 Thread Andrew McGlashan
Hi, I've been running squeeze-lts VM on a squeeze-lts Xen server. Updated the VM to wheezy and it mostly works okay, but but mail connections fail with a segfault. # swaks -4 -s mail.affinityvision.com.au -tlsc -p 465 --ehlo affintiyvision.com.au -au andrewm -ap -t andrew.m

Upgraded squeeze-lts server to wheezy -- client exim4 connections over tls give segfault

2016-02-21 Thread Andrew McGlashan
Hi, I've been running squeeze-lts VM on a squeeze-lts Xen server. Updated the VM to wheezy and it most ly works okay, but but mail connections fail with a segfault #  swaks -4 -s mail.affinityvision.com.au -tlsc -p 465 --ehlo affintiyvision.com.au -au andrewm -apÂ

Re: Squeeze Support

2016-02-16 Thread Lisi Reisz
On Tuesday 16 February 2016 04:42:53 Bret Busby wrote: > On 16/02/2016, Trent Taylor wrote: > > Hi! I'm Trenton Taylor, and am participating in a CCDC competition this > > Saturday the 20th. When in February does support for Squeeze end? Is > > there a set date in

Re: Squeeze Support

2016-02-15 Thread Bret Busby
On 16/02/2016, Trent Taylor wrote: > Hi! I'm Trenton Taylor, and am participating in a CCDC competition this > Saturday the 20th. When in February does support for Squeeze end? Is there > a set date in the month? I'm planning to upgrade from Lenny for it, but I'd &g

Re: Squeeze Support

2016-02-15 Thread Lisi Reisz
On Monday 15 February 2016 22:41:01 Trent Taylor wrote: > Hi! I'm Trenton Taylor, and am participating in a CCDC competition this > Saturday the 20th. > > When in February does support for Squeeze end? Is there > a set date in the month? I'm planning to upgrade f

Squeeze Support

2016-02-15 Thread Trent Taylor
Hi! I'm Trenton Taylor, and am participating in a CCDC competition this Saturday the 20th. When in February does support for Squeeze end? Is there a set date in the month? I'm planning to upgrade from Lenny for it, but I'd rather not go further if Squeeze still gets security updates. Thanks!

Re: isc-dhcp-server in squeeze-lst broken after update

2016-01-18 Thread Toomas Tamm
. Thank you for the prompt fix! Toomas Tamm On Mon, 2016-01-18 at 10:44 +, Mike Gabriel wrote: > Hi all, > > On Mo 18 Jan 2016 10:24:56 CET, Toomas Tamm wrote: > > >> Bonno Bloksma wrote: > >> > >> > Please fix the package in Squeeze-lts so I can have

Re: isc-dhcp-server in squeeze-lst broken after update

2016-01-18 Thread Mike Gabriel
Hi all, On Mo 18 Jan 2016 14:25:18 CET, Mike Gabriel wrote: I will rebuild my chroots, test removing again the CFLAGS export in debian/rules and test the resulting packages once more. New upload (+squeeze10) of isc-dhcp has just been dput to squeeze-lts. The new version should be

Re: isc-dhcp-server in squeeze-lst broken after update

2016-01-18 Thread Mike Gabriel
Hi all, On Mo 18 Jan 2016 10:24:56 CET, Toomas Tamm wrote: Bonno Bloksma wrote: > Please fix the package in Squeeze-lts so I can have the dhcpd.conf file in > its proper place. > > Bonno Bloksma This is like 5 years old. At least back then I noticed the same so from within /et

Re: isc-dhcp-server in squeeze-lst broken after update

2016-01-18 Thread Toomas Tamm
> Bonno Bloksma wrote: > > > Please fix the package in Squeeze-lts so I can have the dhcpd.conf file in > > its proper place. > > > > Bonno Bloksma > > This is like 5 years old. At least back then I noticed the same > > so from within /etc/dhcp ln -s

Re: isc-dhcp-server in squeeze-lst broken after update

2016-01-16 Thread Pascal Hambourg
(Resent) Hello, Mike Gabriel a écrit : > > I did not meet that issue on my test rig. I will check the recently > upload package and report back. FWIW, I just upgraded the isc-dhcp-server package on my i386 Squeeze server and did not meet that issue. It only has /etc/dhcp/dhcpd.conf

Re: isc-dhcp-server in squeeze-lst broken after update

2016-01-15 Thread Mike Gabriel
Hi Bonno, On Fr 15 Jan 2016 08:20:59 CET, Bonno Bloksma wrote: Please fix the package in Squeeze-lts so I can have the dhcpd.conf file in its proper place. I double checked yesterday's upload of isc-dhcp-server to squeeze-lts. The fix introduced there is very unrelated to file name

Re: isc-dhcp-server in squeeze-lst broken after update

2016-01-15 Thread Mike Gabriel
Hi, On Fr 15 Jan 2016 09:02:55 CET, deloptes wrote: Bonno Bloksma wrote: Please fix the package in Squeeze-lts so I can have the dhcpd.conf file in its proper place. Bonno Bloksma This is like 5 years old. At least back then I noticed the same so from within /etc/dhcp ln -s dhcpd.conf

Re: isc-dhcp-server in squeeze-lst broken after update

2016-01-15 Thread Eike Lantzsch
On Friday 15 January 2016 09:02:55 deloptes wrote: > Bonno Bloksma wrote: > > Please fix the package in Squeeze-lts so I can have the dhcpd.conf file in > > its proper place. > > > > Bonno Bloksma > > This is like 5 years old. At least back then I noticed the s

Re: isc-dhcp-server in squeeze-lst broken after update

2016-01-15 Thread deloptes
Bonno Bloksma wrote: > Please fix the package in Squeeze-lts so I can have the dhcpd.conf file in > its proper place. > > Bonno Bloksma This is like 5 years old. At least back then I noticed the same so from within /etc/dhcp ln -s dhcpd.conf -> ../dhcpd.conf and no issue sinc

isc-dhcp-server in squeeze-lst broken after update

2016-01-14 Thread Bonno Bloksma
Hi Debian-lts list, CC to Debian User because most people probably will not read debian-lts as well. I have one old Squeeze-lts system that is just running a DHCP server. Up until the update a few minutes ago there was no problem. I just did an apt-get update and apt-get upgrade, a few packages

ntfs, a POSSIBLE solution - was [Re: Debian Squeeze mounting problem]

2015-11-08 Thread Richard Owlett
ath=Debian+6.0.10+squeeze&format=html&locale=en I have 3 partitions labeled proj-all, proj-1, and proj-2. The machine intentionally has no networking. There are 2 relevant but minimally privileged users [u1 and u2]. I wish to have proj-all mounted at power on with read/write/execute priv

Re: Debian Squeeze mounting problem

2015-11-05 Thread Richard Owlett
On 11/1/2015 1:47 PM, Richard Owlett wrote: David Christensen wrote: On 10/31/2015 08:28 AM, Richard Owlett wrote: I'm having problems understanding http://manpages.debian.org/cgi-bin/man.cgi?query=mount&apropos=0&sektion=0&manpath=Debian+6.0.10+squeeze&format=htm

Re: Bad interaction between multihead display amd desktops in debian squeeze

2015-11-04 Thread Mauro Condarelli
I am currently on "stretch" (testing). Same behavior. I seem unable to activate two cards at the same time. With no /etc/X11/xorg.config I see the internal (Intel) card (no signal on nvidia monitors). If I add explicit NVidia setup then the other two monitors come to life *after login*; gdm3 alw

Re: Bad interaction between multihead display amd desktops in debian squeeze

2015-11-02 Thread moxalt
On Sun, 1 Nov 2015 21:25:45 +0100, Mauro Condarelli wrote: > Hi, > I am struggling to make work my new Debian Squezze installation on my > workhorse. Problem is X setup and its interaction with desktops. > > I have two VGAs: > * intel embedded in my i7 CPU > * external NVidia GTX770 > Each of th

Bad interaction between multihead display amd desktops in debian squeeze

2015-11-01 Thread Mauro Condarelli
Hi, I am struggling to make work my new Debian Squezze installation on my workhorse. Problem is X setup and its interaction with desktops. I have two VGAs: * intel embedded in my i7 CPU * external NVidia GTX770 Each of them drives 2 monitors for a grand total of 4. I managed to have partial vict

Re: Debian Squeeze mounting problem

2015-11-01 Thread Richard Owlett
David Christensen wrote: On 10/31/2015 08:28 AM, Richard Owlett wrote: I'm having problems understanding http://manpages.debian.org/cgi-bin/man.cgi?query=mount&apropos=0&sektion=0&manpath=Debian+6.0.10+squeeze&format=html&locale=en I have 3 partitions labeled proj-all

Re: Debian Squeeze mounting problem

2015-10-31 Thread David Christensen
On 10/31/2015 08:28 AM, Richard Owlett wrote: I'm having problems understanding http://manpages.debian.org/cgi-bin/man.cgi?query=mount&apropos=0&sektion=0&manpath=Debian+6.0.10+squeeze&format=html&locale=en I have 3 partitions labeled proj-all, proj-1, and proj-2. The

Debian Squeeze mounting problem

2015-10-31 Thread Richard Owlett
I'm having problems understanding http://manpages.debian.org/cgi-bin/man.cgi?query=mount&apropos=0&sektion=0&manpath=Debian+6.0.10+squeeze&format=html&locale=en I have 3 partitions labeled proj-all, proj-1, and proj-2. The machine intentionally has no networking.

Re: uprading from squeeze to jessie

2015-10-05 Thread ikuzar RABE
Hi all, Thank you for your responses. I finallly did it step by step (Squeeze -> Wheezy -> Jessie). I had looked for a "short" way to upgrade from Squeeze to Jessie but it was not a good idea. 2015-09-11 22:41 GMT+02:00 Cindy-Sue Causey : > On 9/11/15, David Wright wrote:

squeeze error message

2015-09-15 Thread Glenn English
One of the servers I admin is giving error messages I don't understand. From logwatch: > Errors when running cron: >grandchild #10246 failed with exit status 1: 1 Time(s) >grandchild #10255 failed with exit status 1: 1 Time(s) >grandchild #10335 failed with exit status 1: 1 Time(s) A

Re: uprading from squeeze to jessie

2015-09-11 Thread Cindy-Sue Causey
On 9/11/15, David Wright wrote: > Quoting ikuzar RABE (ikuzar9...@gmail.com): >> I would like to know if there is a way to upgrade my Debian 6 Squeeze to >> Debian >> 8 Jessie in ONE STEP... (bypassing upgrade from 6 to 7). I do not find >> any >> documentations f

Re: uprading from squeeze to jessie

2015-09-11 Thread David Wright
Quoting ikuzar RABE (ikuzar9...@gmail.com): > I would like to know if there is a way to upgrade my Debian 6 Squeeze to > Debian > 8 Jessie in ONE STEP... (bypassing upgrade from 6 to 7). I do not find any > documentations for it. It's always helpful to post *why* you want to d

Re: Fwd: uprading from squeeze to jessie

2015-09-11 Thread Lisi Reisz
On Friday 11 September 2015 10:55:24 Himanshu Shekhar wrote: > There should be some outcome if you change your software sources from > squeeze to jessie, but I doubt about the core files. > I read this in some other mail from the mailing list, which said to just > change the softwar

Fwd: uprading from squeeze to jessie

2015-09-11 Thread Himanshu Shekhar
There should be some outcome if you change your software sources from squeeze to jessie, but I doubt about the core files. I read this in some other mail from the mailing list, which said to just change the software source and then run apt-get update followed by apt-get upgrade. Also, some mail

Re: uprading from squeeze to jessie

2015-09-11 Thread Reco
Hi. On Fri, Sep 11, 2015 at 11:39:07AM +0200, ikuzar RABE wrote: > Hi all, > > I would like to know if there is a way to upgrade my Debian 6 Squeeze to > Debian 8 Jessie in ONE STEP... (bypassing upgrade from 6 to 7). I do not find > any > documentations for it. And

uprading from squeeze to jessie

2015-09-11 Thread ikuzar RABE
Hi all, I would like to know if there is a way to upgrade my Debian 6 Squeeze to Debian 8 Jessie in ONE STEP... (bypassing upgrade from 6 to 7). I do not find any documentations for it. Thanks for your help, Ikuzar

Re: Editing Squeeze and Jessie distribution ISO's

2015-08-11 Thread Thomas Schmitt
Hi, Richard Owlett wrote: > The rest of your answer points to questions I perhaps should have asked. They all assume that you exactly know which file shall be stored under which path in the ISO. Once you have achieved that stage of preparation, you need to additionally equip the ISO with the star

Re: Editing Squeeze and Jessie distribution ISO's

2015-08-11 Thread Brian
have two use cases: > * one *REQUIRES* Squeeze. > * one could use Squeeze, but Jessie would have advantages. > * neither has useful internet connectivity That's three. But who's arguing. :) None of them reveal anything about the customisations you want to instigate. > My

Re: Editing Squeeze and Jessie distribution ISO's

2015-08-11 Thread Richard Owlett
Thomas Schmitt wrote: Hi, Richard Owlett wrote: I'm investigating creating customized installation DVD's &/or flash drives. [...] 1. the references I've found so far are years old. a. any recent pages? b. does it make a difference [possible side effects of adopting systemd]? Poss

Re: Editing Squeeze and Jessie distribution ISO's

2015-08-11 Thread Andrew M.A. Cater
On Tue, Aug 11, 2015 at 11:23:44AM -0500, Richard Owlett wrote: > I'm investigating creating customized installation DVD's &/or flash drives. > I have two use cases: > * one *REQUIRES* Squeeze. > * one could use Squeeze, but Jessie would have advantages. >

Re: Editing Squeeze and Jessie distribution ISO's

2015-08-11 Thread Thomas Schmitt
Hi, Richard Owlett wrote: > I'm investigating creating customized installation DVD's &/or flash drives. > [...] > 1. the references I've found so far are years old. > a. any recent pages? > b. does it make a difference [possible side effects of adopting systemd]? Possibly you have bette

Editing Squeeze and Jessie distribution ISO's

2015-08-11 Thread Richard Owlett
I'm investigating creating customized installation DVD's &/or flash drives. I have two use cases: * one *REQUIRES* Squeeze. * one could use Squeeze, but Jessie would have advantages. * neither has useful internet connectivity My changes would be: * custom preseed.cfg [goa

Re: wheezy to squeeze

2015-07-16 Thread Martin G. McCormick
ances of wheezy with jessie and do the update, upgrade and dist-upgrade commands that it shows all the held-back packages. I do have the original squeeze system on a drive and my upgrade was started by copying the entire squeeze drive to this new drive. If worse comes to worse, I could do

Re: wheezy to squeeze

2015-07-16 Thread Steve McIntyre
mar...@server1.shellworld.net > >622 upgraded, 0 newly installed, 0 to remove and 551 not upgraded. >Need to get 222 MB of archives. >After this operation, 48.4 MB of additional disk space will be used. >Do you want to continue [Y/n]? > >Needless to say, I typed n and there's where things stand now

Re: wheezy to squeeze

2015-07-16 Thread Lisi Reisz
On Thursday 16 July 2015 17:09:45 Martin G. McCormick wrote: > It is time to finish the upgrade from squeeze to jessie, > I think. It looks like the squeeze to wheezy upgrade worked but > I see a problem when trying to upgrade from wheezy to jessie. > > Here are the

wheezy to squeeze

2015-07-16 Thread Martin G. McCormick
It is time to finish the upgrade from squeeze to jessie, I think. It looks like the squeeze to wheezy upgrade worked but I see a problem when trying to upgrade from wheezy to jessie. Here are the active lines in sources.list: When all entries pointed to wheezy, I did the upgrade

wheezy to squeeze should be wheezy to jessie

2015-07-16 Thread Martin G. McCormick
That should have been a subject of wheezy to jessie. I goofed -- 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/20150716161308.01b2022...@server1.shellworld.net

Re: Upgrade from Squeeze to Wheezy Killed Sound on Dell Board.

2015-07-15 Thread Javier Barroso
On Wed, Jul 15, 2015 at 7:01 PM, Martin G. McCormick wrote: > Javier Barroso writes: >> There is a page on the wiki [1] where give you details about cs4236 >> devices on Debian (and why they were excluded from Distribution. I'm >> not sure if cs4236B is included. I hope it work too, > > I

Re: Upgrade from Squeeze to Wheezy Killed Sound on Dell Board.

2015-07-15 Thread Martin G. McCormick
Javier Barroso writes: > There is a page on the wiki [1] where give you details about cs4236 > devices on Debian (and why they were excluded from Distribution. I'm > not sure if cs4236B is included. I hope it work too, I looked there and didn't see any documentation stating that the 423X s

Re: Upgrade from Squeeze to Wheezy Killed Sound on Dell Board.

2015-07-14 Thread Martin G. McCormick
Dan Ritter writes: > A cheap USB audio device is probably a good bet. For example, > > http://www.newegg.com/Product/Product.aspx?Item=N82E16812186035&cm_re=usb_audio-_-12-186-035-_-Product > > is an $8 USB device that I can verify works with Debian and Mac > OS X. That is a very good suggestion

Re: Upgrade from Squeeze to Wheezy Killed Sound on Dell Board.

2015-07-14 Thread Javier Barroso
Hello, keeping you on cc, sorry if you don't want, On Tue, Jul 14, 2015 at 5:49 PM, Martin G. McCormick wrote: > The system in question is a Dell Dimension 600-MHZ > Pentium from way back in 2000. The BIOS date is October 10 of > 1999. The sound chip set is a CS4236 on the mother board an

Re: Upgrade from Squeeze to Wheezy Killed Sound on Dell Board.

2015-07-14 Thread Dan Ritter
On Tue, Jul 14, 2015 at 10:49:25AM -0500, Martin G. McCormick wrote: > This old Dell is not ready for the recycling center as > it has a gigabyte of RAM and can still do lots of useful work so > I hope there is a way to get audio working again. A cheap USB audio device is probably a good bet

Upgrade from Squeeze to Wheezy Killed Sound on Dell Board.

2015-07-14 Thread Martin G. McCormick
e you get it working, it works very well for both recording and playing. The problem seems to be that automated methods for finding sound devices frequently miss this "card" and that is what happened after upgrading from squeeze to wheezy. The output of aplay or arecord -l

Re: OpenSSL squeeze - support TLS 1.2

2015-06-02 Thread Sven Hoexter
On Tue, Jun 02, 2015 at 02:26:59PM +0200, For@ll wrote: Hi, > It's possible to upgrade in squeeze openssl to 1.0.x versiob, because I have > one client with this debian version who need support TLS 1.2. > Now I have only 0.9.8 openssl. I'd recommend to update to jessie i

OpenSSL squeeze - support TLS 1.2

2015-06-02 Thread For@ll
Hi, It's possible to upgrade in squeeze openssl to 1.0.x versiob, because I have one client with this debian version who need support TLS 1.2. Now I have only 0.9.8 openssl. -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of "unsubscribe". T

Re: Setting up MTS MBlaze Ultra in debian squeeze 6.0.10

2015-03-24 Thread Darac Marjal
On Tue, Mar 24, 2015 at 06:33:31AM +0530, Tapas Das wrote: >Hello, >This is Tapas Das. I am a debian user since 3 years. Recently I collected >MTS MBlaze Ultra (Model-AC2792) Modem. This is supposed to run in debian-6 >according to the system specification given at >[1]http://ww

  1   2   3   4   5   6   7   8   9   10   >