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
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
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,
> >
> 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
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
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 "${
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.
ü ß Ä Ö Ü 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 "// __ \$_
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
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
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
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
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 "
"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
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
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
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
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.]
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
I want http proxy server
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
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.
I need http to access the outside world
> > 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
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
> 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.
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
>
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
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
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?
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
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
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
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
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
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
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
| 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)?
>
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
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
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
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
> 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
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
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
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-
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
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
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
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Ã
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
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
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
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!
.
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
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
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
> 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
(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
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
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
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
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
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
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
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
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
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
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
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
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
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.
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:
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
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
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
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
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
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
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
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
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
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
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.
>
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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 - 100 of 5955 matches
Mail list logo