Re: Two copies of E-Mail (Re: I wish to advocate linux)

2013-03-10 Thread Brian
On Sun 10 Mar 2013 at 15:00:29 +1100, Zenaan Harkness wrote:

 Would it be possible to also pipe outgoing mail through procmail or
 similar, on its way to the MTA/SMTP server?

When I initially looked at this I thought maybe, but it did not seem
particularly friendly to do. More to the point, I wasn't prepared to
change anything in my MTA's configuration to get it working.  After all,
I became interested in this complaint about list mails plus CCs, not
because they are an annoyance to me, but as an intriguing problem.

A solution is possible if thinking is in terms of formail rather than
procmail.

There is a Debian package of proxsmtp. This program can proxy mail to a
local or remote MTA. More to the point, it can run a script which can
process the mail before passing it on. This one, for example:

   #!/bin/bash

   MID=$(date +%Y%m%d%H%M%Snoccsple...@example.com)
   TO=$(formail -zxTo:)

   if [ $TO = something which identifies debian-user ] ; then
 formail -I Message-ID: ${MID}
   fi

There we are! A Message-ID generator which can be used with MUAs other
than Mutti to mark list mails. Thank you very much for the nudge.


-- 
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/20130310230658.GO32477@desktop



Re: Two copies of E-Mail (Re: I wish to advocate linux)

2013-03-10 Thread Brian
On Sun 10 Mar 2013 at 00:37:59 -0700, Bob Proulx wrote:

 Zenaan Harkness wrote:
  
  Cool :)
  
  Thanks for sharing. Appreciated.
 
 +1.  I also think that is pretty cool.  Since Message-Id is one of the
 few that would be passed through.  However many clients do not do
 this.  I have many problem friends who reply with bad MTAs that break
 threads.
 
 Pretty cool just the same though.

Thank you.

An implementation of the idea is below.

If a CC arrives first, it is stored and its Message-ID recorded. A list
mail which comes in later with the same message-ID is saved and the
previous CC deleted using archmbox.

A list mail arriving first is saved and has its Message-ID recorded. A
later arriving CC is deleted because it has the same Message-Id.

A cron job using archmbox can move mails left in possiblecc to inbox at
a suitable time.

Note that another post

   http://lists.debian.org/debian-user/2013/03/msg00625.html

suggests a method for generating a Message-ID for the sent list mail
which does not depend on the use of Mutt.



SHELL=/bin/sh
TESTDIR=/home/brian/procmail-testing
MAILDIR=${TESTDIR}/received-mail
LOGFILE=${TESTDIR}/Proctest.log
LOG=--- Logging for ${LOGNAME}, 

#Troubleshooting:
VERBOSE=yes
LOGABSTRACT=all

FORMAIL=/usr/bin/formail
ARCHMBOX=/usr/bin/archmbox

# msgid.cache has all its data on one line. This does not suit the egrep
# line below.
MIDCACHE=`strings ${TESTDIR}/msgid.cache`

# Get the Message-ID of the mail. Remove leading whitespace.
# MID=`formail -zxMessage-ID` is thought to be less efficient than the
# following:
:0
* ^Message-ID: \/.*
{
 MID = $MATCH
}

# Recipe 1.
# These are list mails which are not a response to one of my posts. Grab
# them immediately.
:0:
* ^List-Id:.*debian-user.lists.debian.org
* !^In-Reply-To:.*noccsple...@example.com
${MAILDIR}/debian-user

# Recipe 2.
# A list mail which responds to a post of mine. Check if a Cc has aleady
# arrived and delete it if it has. Debian has an archmbox package.
:0Whc ${TESTDIR}/.archmbox.lock:
* ^List-Id:.*debian-user.lists.debian.org
* ^In-Reply-To:.*noccsple...@example.com
* ? echo ${MID} | egrep ${MIDCACHE}
| $ARCHMBOX -k -o -1 -x Message-ID=${MID}
~/procmail-testing/received-mail/possiblecc

# Recipe 3.
# Record Message-IDs of list mails which are in response to my posts. It
# shouldn't matter if a Cc is aleady deleted.
:0Whc: ${TESTDIR}/.msgid.cache.lock
* ^List-Id:.*debian-user.lists.debian.org
* ^In-Reply-To:.*noccsple...@example.com
| $FORMAIL -D 8192 ${TESTDIR}/msgid.cache

# Recipe 4.
# We want all list mail.
:0:
* ^List-Id:.*debian-user.lists.debian.org
* ^In-Reply-To:.*noccsple...@example.com
${MAILDIR}/debian-user

# Recipe 5.
# Check Message-ID of a Cc.
:0Whc: ${TESTDIR}/.msgid.cache.lock
* !^List-Id:.*debian-user.lists.debian.org
* ^In-Reply-To:.*noccsple...@example.com
| $FORMAIL -D 8192 ${TESTDIR}/msgid.cache

# Recipe 6.
# Cc has arrived after the list mail (unlikely). It is deleted.
:0 a:
${MAILDIR}/devnull

# Recipe 7.
# A possible Cc has arrived before the list mail (most likely). It is
# put somewhere safe and only deleted if Recipe 2 sees it exists.
:0
${MAILDIR}/possiblecc


-- 
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/20130310232353.GP32477@desktop



Re: Two copies of E-Mail (Re: I wish to advocate linux)

2013-03-10 Thread David Guntner
Brian grabbed a keyboard and wrote:
 On Sun 10 Mar 2013 at 15:00:29 +1100, Zenaan Harkness wrote:
 
 Would it be possible to also pipe outgoing mail through procmail or
 similar, on its way to the MTA/SMTP server?
 
 When I initially looked at this I thought maybe, but it did not seem
 particularly friendly to do. More to the point, I wasn't prepared to
 change anything in my MTA's configuration to get it working.  After all,
 I became interested in this complaint about list mails plus CCs, not
 because they are an annoyance to me, but as an intriguing problem.
 
 A solution is possible if thinking is in terms of formail rather than
 procmail.
 
 There is a Debian package of proxsmtp. This program can proxy mail to a
 local or remote MTA. More to the point, it can run a script which can
 process the mail before passing it on. This one, for example:
 
#!/bin/bash
 
MID=$(date +%Y%m%d%H%M%Snoccsple...@example.com)
TO=$(formail -zxTo:)
 
if [ $TO = something which identifies debian-user ] ; then
  formail -I Message-ID: ${MID}
fi
 
 There we are! A Message-ID generator which can be used with MUAs other
 than Mutti to mark list mails. Thank you very much for the nudge.

Question:  Doesn't doing that mess things up for others, should you
reply to said message?  The In-Reply-To: field when you send your reply
is going to now reference the new Message-ID you just put in, and for
those who use readers with threading, won't that break the thread (since
they won't have any messages which are using your new locally-stored
Message-ID)?

 --Dave





signature.asc
Description: OpenPGP digital signature


Re: Two copies of E-Mail (Re: I wish to advocate linux)

2013-03-10 Thread Bob Proulx
David Guntner wrote:
 Brian grabbed a keyboard and wrote:
   Would it be possible to also pipe outgoing mail through procmail or
   similar, on its way to the MTA/SMTP server?
  ...
  There is a Debian package of proxsmtp. This program can proxy mail to a
  local or remote MTA. More to the point, it can run a script which can
  process the mail before passing it on. This one, for example:
  ...
 MID=$(date +%Y%m%d%H%M%Snoccsple...@example.com)
 TO=$(formail -zxTo:)
  
 if [ $TO = something which identifies debian-user ] ; then
   formail -I Message-ID: ${MID}
 fi
  
  There we are! A Message-ID generator which can be used with MUAs other
  than Mutti to mark list mails. Thank you very much for the nudge.
 
 Question:  Doesn't doing that mess things up for others, should you
 reply to said message?  The In-Reply-To: field when you send your reply
 is going to now reference the new Message-ID you just put in, and for
 those who use readers with threading, won't that break the thread (since
 they won't have any messages which are using your new locally-stored
 Message-ID)?

This sets a specific Message-Id on outgoing mails only.  This isn't
changing any message that has been replied to.  These are *new*
messages which will be seen for the first time.  This is the same as
any new message posted to the mailing list.  Just setting the
message-id to that pattern conditionally.  It either gets the
NoCcsPlease (or similar) string or it gets the string that the MTA
assigns to it normally.  Either way it is a new message and a new
message id will be assigned to it.

Bob


signature.asc
Description: Digital signature


Re: Two copies of E-Mail (Re: I wish to advocate linux)

2013-03-10 Thread David Guntner
Bob Proulx grabbed a keyboard and wrote:
 David Guntner wrote:
 Brian grabbed a keyboard and wrote:
 Would it be possible to also pipe outgoing mail through procmail or
 similar, on its way to the MTA/SMTP server?
 ...
 There is a Debian package of proxsmtp. This program can proxy mail to a
 local or remote MTA. More to the point, it can run a script which can
 process the mail before passing it on. This one, for example:
 ...
MID=$(date +%Y%m%d%H%M%Snoccsple...@example.com)
TO=$(formail -zxTo:)

if [ $TO = something which identifies debian-user ] ; then
  formail -I Message-ID: ${MID}
fi

 There we are! A Message-ID generator which can be used with MUAs other
 than Mutti to mark list mails. Thank you very much for the nudge.

 Question:  Doesn't doing that mess things up for others, should you
 reply to said message?  The In-Reply-To: field when you send your reply
 is going to now reference the new Message-ID you just put in, and for
 those who use readers with threading, won't that break the thread (since
 they won't have any messages which are using your new locally-stored
 Message-ID)?
 
 This sets a specific Message-Id on outgoing mails only.  This isn't
 changing any message that has been replied to.  These are *new*
 messages which will be seen for the first time.  This is the same as
 any new message posted to the mailing list.  Just setting the
 message-id to that pattern conditionally.  It either gets the
 NoCcsPlease (or similar) string or it gets the string that the MTA
 assigns to it normally.  Either way it is a new message and a new
 message id will be assigned to it.

Ok, thanks.  It was just that it looked like a recipe for a message
that's coming *in* to your mailbox and having the ID changed.  Thanks
for the clarification.

--Dave





signature.asc
Description: OpenPGP digital signature


Re: Two copies of E-Mail (Re: I wish to advocate linux)

2013-03-09 Thread Brian
On Fri 08 Mar 2013 at 23:19:06 -0700, Bob Proulx wrote:

 But I am a pedantic sort and so must say that every message does have

To continue with the pedantry :) and to return to the issue raised in
this subthread, a CC is not a duplicate of a list mail. Put them side by
side and the difference is obvious. One result of focussing on a single
characteristic of a mail is that the suggested Procmail recipe would
effectively delete most of the list mail, which might not be a desired
outcome.

Fortunately, Mutt users have the opportunity to take advantage of its
ability to construct a custom Message-ID: header for a mail sent to
debian-user. Like so:

send-hook . 'unmy_hdr Message-ID:'
send-hook 'debian-user@lists\.debian\.org' 'my_hdr Message-ID:`date 
+%Y%m%d%H%M%S`noccsple...@example.com'

A mail with NoCcsPlease in its In-Reply-To or References headers can
only have had the mailing list mail as its source. However, the CC will
not contain a List-ID: header. This makes it possible to distinguish
between a list mail and a CC. Procmail recipes based on these two
conditions can now file list mail with certainty and, if desired, delete
CCs.

How this could be implemented in other MUAs depends on the capability of
the mailer. It works nicely with Mutt because of the behind-the-scenes
send-hook facility. Icedove and KMail can alter the portion of the
Message-ID: header after the @, but whether this could be made automatic
in the same way as Mutt I do not know. Header rewriting by an MTA may
also be a possibility, but I know nothing about that either.

It is reported that some mailers do not produce In-Reply-To: and
References: headers when replying to a mail. Well, you can't win 'em all.


-- 
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/20130309135613.GK32477@desktop



Re: Two copies of E-Mail (Re: I wish to advocate linux)

2013-03-09 Thread Zenaan Harkness
On 3/10/13, Brian a...@cityscape.co.uk wrote:
 On Fri 08 Mar 2013 at 23:19:06 -0700, Bob Proulx wrote:

 But I am a pedantic sort and so must say that every message does have

 To continue with the pedantry :) and to return to the issue raised in
 this subthread, a CC is not a duplicate of a list mail. Put them side by
..
 Fortunately, Mutt users have the opportunity to take advantage of its
 ability to construct a custom Message-ID: header for a mail sent to
 debian-user. Like so:

 send-hook . 'unmy_hdr Message-ID:'
 send-hook 'debian-user@lists\.debian\.org' 'my_hdr Message-ID:`date
 +%Y%m%d%H%M%S`noccsple...@example.com'

 A mail with NoCcsPlease in its In-Reply-To or References headers can
 only have had the mailing list mail as its source. However, the CC will
 not contain a List-ID: header. This makes it possible to distinguish
 between a list mail and a CC. Procmail recipes based on these two
 conditions can now file list mail with certainty and, if desired, delete
 CCs.

Cool :)

Thanks for sharing. Appreciated.

 How this could be implemented in other MUAs depends on the capability of
 the mailer. It works nicely with Mutt because of the behind-the-scenes
 send-hook facility. Icedove and KMail can alter the portion of the
 Message-ID: header after the @, but whether this could be made automatic
 in the same way as Mutt I do not know. Header rewriting by an MTA may
 also be a possibility, but I know nothing about that either.

 It is reported that some mailers do not produce In-Reply-To: and
 References: headers when replying to a mail. Well, you can't win 'em all.

Would it be possible to also pipe outgoing mail through procmail or
similar, on its way to the MTA/SMTP server?

cheers
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/caosgnssmr+1nerqm0_w7h1pnw6mt2htlnmrh8qer6rtkqk3...@mail.gmail.com



Re: Two copies of E-Mail (Re: I wish to advocate linux)

2013-03-09 Thread Bob Proulx
Zenaan Harkness wrote:
 Brian wrote:
  Fortunately, Mutt users have the opportunity to take advantage of its
  ability to construct a custom Message-ID: header for a mail sent to
  debian-user. Like so:
 
  send-hook . 'unmy_hdr Message-ID:'
  send-hook 'debian-user@lists\.debian\.org' 'my_hdr Message-ID:`date
  +%Y%m%d%H%M%S`noccsple...@example.com'
 
  A mail with NoCcsPlease in its In-Reply-To or References headers can
  only have had the mailing list mail as its source. However, the CC will
  not contain a List-ID: header. This makes it possible to distinguish
  between a list mail and a CC. Procmail recipes based on these two
  conditions can now file list mail with certainty and, if desired, delete
  CCs.
 
 Cool :)
 
 Thanks for sharing. Appreciated.

+1.  I also think that is pretty cool.  Since Message-Id is one of the
few that would be passed through.  However many clients do not do
this.  I have many problem friends who reply with bad MTAs that break
threads.

Pretty cool just the same though.

 Would it be possible to also pipe outgoing mail through procmail or
 similar, on its way to the MTA/SMTP server?

Mutt has the $sendmail variable.  The manual has a section Change
Settings Based Upon Message Recipients that gives this teaser.

  send2-hook is executed after send-hook, and can, e.g., be used to set
  parameters such as the $sendmail variable depending on the message's
  sender address.

Which implies to me (although I have not tried it) that you could pipe
messages for particular addresses through whatever filter you wanted
and could automatically add headers or track outbound messages.  As
long as you consistently used mutt to do the sending.

Bob


signature.asc
Description: Digital signature


Re: Two copies of E-Mail (Re: I wish to advocate linux)

2013-03-08 Thread Robert McKittrick
Somehow, I got on the debian help list. Pleas get me (mckitt1...@gmail.com)
off. I think my problems were due to bad sectors on my hard drive. I will
try again when I get a new one. I have the debian 1-8 i386 iso's burned to
dvds.
best of luck
bob


On Sun, Mar 3, 2013 at 3:44 PM, Bob Proulx b...@proulx.com wrote:

 David Guntner wrote:
  Bob Proulx grabbed a keyboard and wrote:
   For one I use the mailing list headers List-Id and List-Post.  Those
   are the standard headers and those are the best ones to use for filing
   mailing list messages.  Smart MUAs use those to know how to do a
   list-reply.  Therefore the copy I want is the copy that comes from the
   mailing list.
 
  Not every MUA does, however.  The one I'm using, for example, does not
  (or if it does, I've never figured out how to turn that feature on...).
   Therefor, I've also got a Procmail recipe that adds a Reply-To:
  pointing back to the list on my local copy (of debian-user, since it
  doesn't add one itself - on lists that do so, I don't use that rule) so
  that when I hit reply, it goes back to the list as it should since most
  of the time a reply should go back to the list when replying to a
  posting on the list.  And I don't want to have to remember to do it
  manually each time I reply. :-)

 My takeaway is that you have applied a workaround that shouldn't be
 needed to a problem that shouldn't exist.  Applying Reply-To destroys
 the sender's use of Reply-To which is reserved for them to use.

 The classic line here is, Now you have two problems.  :-)

  It all depends on your experiences and own requirements.  I for one am
  on a decade+ old list that was home grown - the guy running it rolled
  his own, so to speak.  It doesn't use a subject tag, and it has never
  had those now-standard List-ID headers, nor is it likely to anytime in
  the future.  So even if I *were* using a MUA that understands those
  headers, it would do me no good.

 I would nag your buddy into adding those headers.  It will help modern
 mail user agents to be able to do the right thing automatically.

  It has never occurred to me to ever filter based in a List-ID field,
  since back in the old days when I started doing this, they hadn't yet
  come into existence. :-)

 Every decade or so it is good to take a breath and look around and
 make smart upgrades to systems.  The Debian mailing lists have been
 around for a long time and are basically a home grown system too
 (using Smartlist) but they comply with modern standards.  I operate
 several Majordomo mailing lists and they all comply with the modern
 standards.  It is really as easy piping the message through formail
 and having it add the headers.

  And even *after* coming into existence, you
  still have to *send* your message to the list in question, thus the To:
  or Cc: will *always* be there, regardless of the presence (or lack
  thereof) of a List-ID header.  Also, by filtering on those (To, Cc), it
  works 100% of the time - even if the above recipe deletes the list copy
  if it came in second. :-)

 For a nasty example, I hate it when people BCC mailing lists.  Then
 the To and CC fields are not able to reply to the mailing list because
 they don't include it.  But since List-Post is added by the mailing
 list that value is correct.  But that is an example of something that
 shouldn't be happening.  Many lists block bcc to the list since that
 is an anti-spam strategy too.

  For myself, this is what I use specifically for the Debian users list:
  ...
  It will pretty much catch the string being looked for if it shows up
  *anywhere* in the message headers. :-)  Since I've never filtered based
  on a header which may-or-may-not be there, deleting the second,
  duplicate copy of a message has never caused a problem even if that one
  was the list-processed copy.
 
  In fact, I would argue that using the above filter (TO_) is *less*
  problematic than the method you use, since deleting a duplicate
  Message-ID does have the potential to remove the copy that actually went
  through the list - it doesn't matter which one got to you first, since
  it *still* gets filtered into the correct folder.
 
  But again, it's all a matter of personal taste, personal experiences and
  personal requirements (like I said, I'm on a really old mailing list
  which has never had List-ID headers and most likely hell will freeze
  over before it gets them; the list has been around longer than the RFC
  which defines List-ID).

 Yep.

   P.S.  Here is the procmail rules I use to file all Debian mailing list
   messages.
  
   :0
   * ^List-Id: .*debian-[-a-zA-Z0-9]+\.lists\.debian\.org
   * ^List-Id: .*debian-\/[-a-zA-Z0-9]+
   Lists/debian/$MATCH/
  
   :0
   * ^List-Id: .*[-a-zA-Z0-9]+\.lists\.alioth\.debian\.org
   * ^List-Id: .*\/[-a-zA-Z0-9]+
   Lists/debian/$MATCH/
 
  That's great for filing (and cool to know about, for mailing lists which
  include those standard headers).  How does it get rid of 

Re: Two copies of E-Mail (Re: I wish to advocate linux)

2013-03-08 Thread Lisi Reisz
On Friday 08 March 2013 16:40:50 Robert McKittrick wrote:
 Somehow, I got on the debian help list. Pleas get me (mckitt1...@gmail.com)
 off. I think my problems were due to bad sectors on my hard drive. I will
 try again when I get a new one. I have the debian 1-8 i386 iso's burned to
 dvds.

We unfortunately can't do it for you.  You have to do it yourself.  Here's 
how:

To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org

You need to unsubscribe from the email address which the list has for you.

In case anyone wishes to point out to Bob that this information is on the end 
of every email, it was not at the end of Bob's email, so give him the benefit 
of the doubt and spare him - please?

 best of luck
Thanks!

HTH
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/201303082250.30442.lisi.re...@gmail.com



Re: Two copies of E-Mail (Re: I wish to advocate linux)

2013-03-08 Thread Bob Proulx
Lisi Reisz wrote:
 In case anyone wishes to point out to Bob that this information is
 on the end of every email, it was not at the end of Bob's email, so
 give him the benefit of the doubt and spare him - please?

I know what you meant and I agree.  Confusingly there are also two
Bobs in that thread. :-)

But I am a pedantic sort and so must say that every message does have
the unsubscribe instructions added to the bottom of the message.  But
whether it is displayed or not depends upon your mailer.  Signed
messages like mine usually cause the mailer to only display the signed
part of the message.  Additional parts are hidden.

Look at the raw message.  Scroll down to the bottom.  The mailing list
includes them on each message.  But your mailer doesn't show you
anything outside the signed portion.  Additionally the headers of
every message also includes subscribe and unsubscribe information.  It
was just a shame that it was my message that was replied to since most
of the messages are not signed.  The majority of the messages will
have that text plainly dislayed.

To add some value to this message I will say that in the last 5704
messages sent to debian-user in the last 120 days there were there
were 34 posters who signed 775 messages.  There were 764 posters who
did not sign 764 messages.  There were 4.3% (34) of the posters
signing 13.6% (775) of the messages.  There were 95.7% (764) of the
posters not signing 86.4% (4929) of the messages.  There were an
average of 47.5 messages per day.

Bob


signature.asc
Description: Digital signature


Re: Moving from a proprietary OS - unnecessarily inful experience -- was [Re: I wish to advocate linux]

2013-03-07 Thread Morel Bérenger
Le Mar 5 mars 2013 16:37, Martin McCormick a écrit :
 Miles Fidelman writes:
 In Linux/Unix in general, we have a concept that is
 rather old of output being something you can send where it needs to go
 because you may not always predict where somebody will need to send it for
 a particular job.

 In Windows and nitch operating systems for many
 purposes, Some designer just figured the screen was good for everybody and
 there is no way to divert text and numbers to any other device.

Well, sorry, I have to disagree here.
The short (and trollesque) version:
*Linux:
_ systemd: happy trolling, I won't go further :P
_ xorg: this link
(http://wayland.freedesktop.org/faq.html#heading_toc_j_6) explains
correctly that Xorg needs tons of stuff which is no longer used nowadays.
I think we often call unused stuff: bloat.
*Windows:
_ coreutils: are implemented. Just an example, of course, since I myself
am able to implement tools I do in a portable way, and I love to create
CLI stuff. Drawing windows is quite boring IMHO...

The longer version:
The problem is not *nix vs windows, or linux vs whatever, and the problem
is not age of dev, too.

It is only a problem of philosophy. UNIX starting philosophy was that
softwares should only do one thing, and do it well. It also states that
they should use text human readable inputs and outputs.
Few months ago (maybe 2 years?), I have simply made the link with object
oriented programming.

In both ways of thinking, you have highly specialized softwares/classes
and easy to understand interfaces.
But, I also think that both ways of thinking are hard to follow, because
they require the ability to *focus* on one task at a time, to refrain the
will to add useful features, to accept that the first idea you had
and/or stuff other says are not the best solutions, and many other
qualities.
All those qualities needs time to be acquired.
But how many depends on people: some will understand basics of OOP quite
fast, other will need years. I am (I hope I *was* but I can not judge
that, only other people can say if a software is clean or not. And when I
encounter a kind of problem for the first time, I'm still doing dirty code
first...) in the second group.

When you have understood OOP's principles, you notice that your programs
are simple libraries, for which you write front-ends (command line or
ncurses or gtk or qt... those are only front-ends anyway). CLI interfaces
are easier to debug (because they are easier to automate) so I prefer to
firstly implement this one, but not always (a drawing software does not
really take sense in CLI, by example. At least, _I_ do not see the
point.).
Strangely, when I take a look at projects, I more often see one binary
containing logic and interface (and sometimes more than one interface... I
did not take a close enough look at aptitude, but I bet all source code is
in the same binary?).
And I bet it was the same 15 years ago. My teachers tried to taught me to
do like that... When I think about that, I feel quite happy to have
started learning long before having programming lessons.

 Younger people tend to be cought up in what's here now
 and, if they are not careful, they think it is as good as it gets.

But, their teachers said them that if the user is not happy, he will buy
hardware. Yes, really. I have heard mines saying that about memory usage,
and I bet that if at that moment I had asked them about blind people and
such kind of stuff they would have said do not worry about that too.
And my teacher who said that people have just to buy some more RAM units
was not really someone I would qualify of young man.

 That is just one example of countless other examples and
 I don't wish for a minute that we were in an earlier time, but
 let's value collective wisdom. It can sure save us a lot of trouble if we
 take advantage of it.

Well, when things come to computer sciences, I would not trust too
strongly the collective wisdom. Take a look at modern stuff, and you will
understand:
HTML5, an adaptation of a network protocol specialized in downloads with
format detection, is now used to stream videos, play games... and people
says that's a good news.
XML is now often seen as the ultimate format (and HTML5 is only derived
from it, of course...), but it is very, very verbose. Considering that
network bandwith is not an infinite resource, and that parsing XML is not
something which cost nothing, I have real difficulties to understand
why... JSON sometimes takes the advantage on XML. It is a little less
verbose, so I think it is a little better.
Nowadays, your favorite IDE will probably implement a plug-in interface.
This interface will be specific to IDE, of course. Some of it's uses will
be, by example, to know your files' names, and where they are. Most IDE's
users will quickly say that it is easier than command-line stuff... but
why those tools does not simply use ls or dir (depending on the OS) ?

Those are a small samples of collective wisdom, linked 

Re: Moving from a proprietary OS - unnecessarily inful experience -- was [Re: I wish to advocate linux]

2013-03-05 Thread Martin McCormick
Miles Fidelman writes:
 Which leads me to take just a little issue with your comment that younger
 people have more useful experience. I'm actually not entirely sure that's
 true. If anything, younger people have narrower (or at least different)
 experience.

I tend to agree. Lisi is right that the experience of
younger people is more relevant to today's world but I also
think of that old quotation which says that those who do not
learn from history are doomed to keep repeating the same
mistakes and that is so, so true.

Those of us who also happen to be blind are painfully
aware of how useless a modern device is when there is no way to
find out other than eyeballs focused on a screen, what that
device is doing.

In Linux/Unix in general, we have a concept that is
rather old of output being something you can send where it needs
to go because you may not always predict where somebody will
need to send it for a particular job. The smart guys and girls
back in the day were not thinking about blind people but were
instead not wanting to nail shut any doors that might be needed
later.

In Windows and nitch operating systems for many
purposes, Some designer just figured the screen was good for
everybody and there is no way to divert text and numbers to any
other device. A person who is blind can't feed it in to a speech
synthesizer or Braille display. A repair technician can't
capture the output for service purposes. The door for further
use of the data is glued shut.

This is the difference between solving a problem in the
short term versus solving that and many more problems for all
times.

Younger people tend to be cought up in what's here now
and, if they are not careful, they think it is as good as it
gets.

Those of us who have been around the block a few times
know better how it should be and groan when yet another screen
gadget comes out that you can't use if the screen is not
visible.

That is just one example of countless other examples and
I don't wish for a minute that we were in an earlier time, but
let's value collective wisdom. It can sure save us a lot of
trouble if we take advantage of it.

It kind of reminds me of the squirrels and electric
power poles. Ever so often, we hear a raucous explosion in the
neighborhood. A squirrel has just learned a mortal lesson that
7200 volts will make your body explode and ruin your day.
Squirrels do not have a history of symbolic language or written
communication so if some other squirrels see their comrade change from
carbon-based life form to just a hand full of carbon in a
millisecond, they have no way to tell the rest of the squirrels
not to walk around on all those neat perches at the tops of the
poles, and so ten minutes later, another squirrel, another
explosion. I sometimes wonder how much smarter are we than those
squirrels? I guess that's for the philosophy mailing list.:-)

Martin McCormick


-- 
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/201303051537.r25fbvit052...@x.it.okstate.edu



Re: Moving from a proprietary OS - unnecessarily inful experience -- was [Re: I wish to advocate linux]

2013-03-05 Thread Lisi Reisz
On Tuesday 05 March 2013 15:37:31 Martin McCormick wrote:
 Miles Fidelman writes:
  Which leads me to take just a little issue with your comment that
  younger people have more useful experience. I'm actually not entirely
  sure that's true. If anything, younger people have narrower (or at least
  different) experience.

   I tend to agree. Lisi is right that the experience of
 younger people is more relevant to today's world 

That is neither what I said nor what I meant.  I said:  But ***many*** much 
younger people have more useful 
experience.  Stars added this time.

I do not think that age is relevant to whether one's opinion is worth having 
or not, nor to whether a person has relevant experience or not.  Some people 
have relevant experience, some do not.  And age has little to do with it.  
Except in so far as my age group did not grow up with computers.

So I do not think that the experience of younger people is more relevant to 
today's world.  Sometimes it is, sometimes it isn't.

 but I also 
 think of that old quotation which says that those who do not
 learn from history are doomed to keep repeating the same
 mistakes and that is so, so true.

In my experience, human beings rarely in fact learn from history.  Sadly. 

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/201303051557.22233.lisi.re...@gmail.com



Re: Moving from a proprietary OS - unnecessarily inful experience -- was [Re: I wish to advocate linux]

2013-03-05 Thread Martin McCormick
What I like about *nix is that it builds on the
experience of 3 decades plus a lot more sound theory. Nobody has
scrapped anything that is truly useful to cut corners and that
is what I find impressive.

I don't think anything is served by a battle of the
young guns versus the old codgers, but the young guns have more
history to learn and, if they really learn it, age isn't an
issue. It is all about knowledge. Someone once said that before
you tear down a fence, you should learn why it was built in the
first place.

I guess that at 61, I am either an old young gun or
turning in to a young old codger but I like to think about the
future much more than the past because a lot of what is
happening now is going to eventually be much better than it is
now as long as we don't loose track of why certain design
principles are just as necessary now as they were in 1968 or so
when Unix began at Bell Labs.

Martin McCormick


-- 
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/201303051656.r25guijg053...@x.it.okstate.edu



Re: Moving from a proprietary OS - unnecessarily inful experience -- was [Re: I wish to advocate linux]

2013-03-05 Thread Chris Bannister
On Tue, Mar 05, 2013 at 10:56:18AM -0600, Martin McCormick wrote:
   What I like about *nix is that it builds on the
 experience of 3 decades plus a lot more sound theory. Nobody has
 scrapped anything that is truly useful to cut corners and that
 is what I find impressive.
 
   I don't think anything is served by a battle of the
 young guns versus the old codgers, but the young guns have more
 history to learn and, if they really learn it, age isn't an
 issue. It is all about knowledge. Someone once said that before

Data is not information, information is not knowledge, knowledge is not
understanding, understanding is not wisdom. ~Clifford Stoll

SCNR

-- 
If you're not careful, the newspapers will have you hating the people
who are being oppressed, and loving the people who are doing the 
oppressing. --- Malcolm X


-- 
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/20130305182300.GA20982@tal



Re: I wish to advocate linux

2013-03-04 Thread arne
On Wed, 27 Feb 2013 11:18:20 -0500
Miles Fidelman mfidel...@meetinghouse.net wrote:


Hello,

Debian is the Linux distribution with the most packages, no Linux firm
can compete.
Linux runs well without any sort of a firm backing it.

 
   * /From/: Lisi Reisz lisi.re...@gmail.com
 mailto:lisi.reisz%40gmail.com
   * /Date/: Wed, 27 Feb 2013 10:34:04 +
 
 
 
 On Wed, 27 Feb 2013 10:34:04 +,  Lisi Reisz
 lisi.re...@gmail.com  mailto:lisi.reisz%40gmail.com wrote:
 
Mark Filipak wrote:
For everyone who doesn't have their own development department
to adapt Linux kernels to their widget, Linux has been a toy
OS for technoweenies. That hasn't changed in 10 years and
Linux has made no headway on the desktop (or the laptop). Why
is that?
   
Toy OS for technoweenies?  Try server o/s powering an awful lot
of major applications.
   
Desktop Linux has less of a value proposition.  Face it, most
people use computers at work, where you've got to run MS Office
- which means Windows or MacOS.  Real simple.
   
Miles Fidelman
  
   Your attitude, Miles, is typical and is a large part of the
   problem.
 
  What's wrong with it? And what problem?
 
  You can't possibly persuade anyone else to use Linux while you so
  obviously dislike it yourself.
 
 
 Hasn't even run it, apprently, or at least wrote in an earlier
 message But I don't run Linux.
 
 Now that's it in a nutshell, isn't it.  Seems to me that Mark is
 simply a troll (certainly not a debian-user)
 
 Miles Fidelman
 
 
 
 
 
 


-- 
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/20130305075227.1456c9b5@fx4100



Re: Two copies of E-Mail (Re: I wish to advocate linux)

2013-03-03 Thread Bob Proulx
David Guntner wrote:
 Bob Proulx grabbed a keyboard and wrote:
  For one I use the mailing list headers List-Id and List-Post.  Those
  are the standard headers and those are the best ones to use for filing
  mailing list messages.  Smart MUAs use those to know how to do a
  list-reply.  Therefore the copy I want is the copy that comes from the
  mailing list.
 
 Not every MUA does, however.  The one I'm using, for example, does not
 (or if it does, I've never figured out how to turn that feature on...).
  Therefor, I've also got a Procmail recipe that adds a Reply-To:
 pointing back to the list on my local copy (of debian-user, since it
 doesn't add one itself - on lists that do so, I don't use that rule) so
 that when I hit reply, it goes back to the list as it should since most
 of the time a reply should go back to the list when replying to a
 posting on the list.  And I don't want to have to remember to do it
 manually each time I reply. :-)

My takeaway is that you have applied a workaround that shouldn't be
needed to a problem that shouldn't exist.  Applying Reply-To destroys
the sender's use of Reply-To which is reserved for them to use.

The classic line here is, Now you have two problems.  :-)

 It all depends on your experiences and own requirements.  I for one am
 on a decade+ old list that was home grown - the guy running it rolled
 his own, so to speak.  It doesn't use a subject tag, and it has never
 had those now-standard List-ID headers, nor is it likely to anytime in
 the future.  So even if I *were* using a MUA that understands those
 headers, it would do me no good.

I would nag your buddy into adding those headers.  It will help modern
mail user agents to be able to do the right thing automatically.

 It has never occurred to me to ever filter based in a List-ID field,
 since back in the old days when I started doing this, they hadn't yet
 come into existence. :-)

Every decade or so it is good to take a breath and look around and
make smart upgrades to systems.  The Debian mailing lists have been
around for a long time and are basically a home grown system too
(using Smartlist) but they comply with modern standards.  I operate
several Majordomo mailing lists and they all comply with the modern
standards.  It is really as easy piping the message through formail
and having it add the headers.

 And even *after* coming into existence, you
 still have to *send* your message to the list in question, thus the To:
 or Cc: will *always* be there, regardless of the presence (or lack
 thereof) of a List-ID header.  Also, by filtering on those (To, Cc), it
 works 100% of the time - even if the above recipe deletes the list copy
 if it came in second. :-)

For a nasty example, I hate it when people BCC mailing lists.  Then
the To and CC fields are not able to reply to the mailing list because
they don't include it.  But since List-Post is added by the mailing
list that value is correct.  But that is an example of something that
shouldn't be happening.  Many lists block bcc to the list since that
is an anti-spam strategy too.

 For myself, this is what I use specifically for the Debian users list:
 ...
 It will pretty much catch the string being looked for if it shows up
 *anywhere* in the message headers. :-)  Since I've never filtered based
 on a header which may-or-may-not be there, deleting the second,
 duplicate copy of a message has never caused a problem even if that one
 was the list-processed copy.
 
 In fact, I would argue that using the above filter (TO_) is *less*
 problematic than the method you use, since deleting a duplicate
 Message-ID does have the potential to remove the copy that actually went
 through the list - it doesn't matter which one got to you first, since
 it *still* gets filtered into the correct folder.
 
 But again, it's all a matter of personal taste, personal experiences and
 personal requirements (like I said, I'm on a really old mailing list
 which has never had List-ID headers and most likely hell will freeze
 over before it gets them; the list has been around longer than the RFC
 which defines List-ID).

Yep.

  P.S.  Here is the procmail rules I use to file all Debian mailing list
  messages.
  
  :0
  * ^List-Id: .*debian-[-a-zA-Z0-9]+\.lists\.debian\.org
  * ^List-Id: .*debian-\/[-a-zA-Z0-9]+
  Lists/debian/$MATCH/
  
  :0
  * ^List-Id: .*[-a-zA-Z0-9]+\.lists\.alioth\.debian\.org
  * ^List-Id: .*\/[-a-zA-Z0-9]+
  Lists/debian/$MATCH/
 
 That's great for filing (and cool to know about, for mailing lists which
 include those standard headers).  How does it get rid of the dup when
 someone  does a To: the list and Cc: the person on the list he's
 replying to?

It doesn't.  Which is why I noted it as a post script.  But it is
related.

 (Remember, I sent the above recipe because someone was complaining
 about duplicate message, not that they didn't know how to filter
 them into a folder - in essence, you've provided an answer to a
 question that he didn't ask. 

Re: Moving from a proprietary OS - unnecessarily inful experience -- was [Re: I wish to advocate linux]

2013-03-02 Thread Tom Furie
On Sat, Mar 02, 2013 at 07:38:41PM +1300, Chris Bannister wrote:
 
 These days it is !=  :) (I think  was not equal to, was it?)

Technically, it's less than or greater than, but I suppose it amounts
to the same thing :)

Cheers,
Tom

-- 
I think the world is run by C students.
-- Al McGuire


signature.asc
Description: Digital signature


Re: Moving from a proprietary OS - unnecessarily inful experience -- was [Re: I wish to advocate linux]

2013-03-02 Thread Lars Noodén
On 03/02/2013 11:27 AM, Tom Furie wrote:
 On Sat, Mar 02, 2013 at 07:38:41PM +1300, Chris Bannister wrote:
 
 These days it is !=  :) (I think  was not equal to, was it?)
 
 Technically, it's less than or greater than, but I suppose it
 amounts to the same thing :)
 
 Cheers, Tom
 
In pascal,  means not equal to. I think some of the other languages
from that era do the same.  For what it's worth, Free Pascal 2.6.2 was
recently released:

 http://www.lazarus.freepascal.org/index.php/topic,20046.0.html

I think an earlier version is in the repository as fpc

Regards,
/Lars


-- 
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/5131cb61.5030...@gmail.com



Re: I wish to advocate linux

2013-03-02 Thread Brian
On Fri 01 Mar 2013 at 23:05:13 -0500, Miles Fidelman wrote:

 Yup.  And it's even obvious what he's doing, but he's too obstinate
 to listen.
 
 (trying to install onto the same device he's booting from, without
 paying attention to partitioning, telling the installer where to put
 things, or telling grub that it has to worry about two different
 installs on the same device - idiot)

Mark is not trying to do that. However, the implication here is that
Debian is not capable of being installed in this manner. It is.


-- 
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/20130302111001.GM14686@desktop



Re: I wish to advocate linux

2013-03-02 Thread Miles Fidelman

Brian wrote:

On Fri 01 Mar 2013 at 23:05:13 -0500, Miles Fidelman wrote:


Yup.  And it's even obvious what he's doing, but he's too obstinate
to listen.

(trying to install onto the same device he's booting from, without
paying attention to partitioning, telling the installer where to put
things, or telling grub that it has to worry about two different
installs on the same device - idiot)

Mark is not trying to do that. However, the implication here is that
Debian is not capable of being installed in this manner. It is.



Didn't mean to imply that, just that doing so requires a lot more 
attention to partitioning and grub setup, to get things in the right 
place and make the new system bootable.





--
In theory, there is no difference between theory and practice.
In practice, there is.    Yogi Berra


--
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/5131ff7f.6080...@meetinghouse.net



Re: Moving from a proprietary OS - unnecessarily inful experience -- was [Re: I wish to advocate linux]

2013-03-02 Thread Miles Fidelman

Lars Noodén wrote:

On 03/02/2013 11:27 AM, Tom Furie wrote:

On Sat, Mar 02, 2013 at 07:38:41PM +1300, Chris Bannister wrote:


These days it is !=  :) (I think  was not equal to, was it?)

Technically, it's less than or greater than, but I suppose it
amounts to the same thing :)

Cheers, Tom


In pascal,  means not equal to. I think some of the other languages
from that era do the same.  For what it's worth, Free Pascal 2.6.2 was
recently released:


And then you get to the more interesting variants that involve type 
comparisons

e.g., /= and =/=  from erlang  (not equal and not exactly equal)

and that's before comparisons that involve pointers (e.g. Lisp's eq)  :-)



--
In theory, there is no difference between theory and practice.
In practice, there is.    Yogi Berra


--
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/51320369.9020...@meetinghouse.net



Re: Two copies of E-Mail (Re: I wish to advocate linux)

2013-03-02 Thread Brian
On Fri 01 Mar 2013 at 00:35:35 -0700, Bob Proulx wrote:

 David Guntner wrote:
  Anyway, the recipe is dirt simple.
  ...
  # Duplicate Suppression.
  :0Whc: $MAILDIR/.msgid.cache.lock
  | $FORMAIL -D 8192 $MAILDIR/.msgid.cache
  
  # Take out the Trash.
  :0 a:
  /dev/null
  
  That's all there is to it.  The formail program is used to grab the
  Message-ID of the incoming message.  Even if it is sent To: one address
  and CC: another, both copies will have the same Message-ID.  When the
  first one comes in, it stores that ID in the $MAILDIR/.msgid.cache file
  after first comparing the message to see if that ID has already been
  stored there.  If not, then it stores the ID and returns a FALSE so that
  the second part (take out the trash) won't process.  If the Message-ID
  already *has* been stored in the cache file, then it returns a TRUE and
  the second part then dumps the message into /dev/null.
 
 If it works for you then great.  But this is not without problems for
 others.

I send you mail with a job application. You accidentally delete it and
request I provide it again. I enter my sent mail folder and use the
bounce facility in Mutt to resend the mail. The procmail rule deletes
it. At some point I may start to wonder why I never made the short-list.

Be strict in what you send and generous in what you receive is still a
good maxim to follow.


-- 
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/20130302160219.GQ14686@desktop



Re: Two copies of E-Mail (Re: I wish to advocate linux)

2013-03-02 Thread David Guntner
Brian grabbed a keyboard and wrote:
 On Fri 01 Mar 2013 at 00:35:35 -0700, Bob Proulx wrote:
 
 David Guntner wrote:
 Anyway, the recipe is dirt simple.
 ...
 # Duplicate Suppression.
 :0Whc: $MAILDIR/.msgid.cache.lock
 | $FORMAIL -D 8192 $MAILDIR/.msgid.cache

 # Take out the Trash.
 :0 a:
 /dev/null

 That's all there is to it.  The formail program is used to grab the
 Message-ID of the incoming message.  Even if it is sent To: one address
 and CC: another, both copies will have the same Message-ID.  When the
 first one comes in, it stores that ID in the $MAILDIR/.msgid.cache file
 after first comparing the message to see if that ID has already been
 stored there.  If not, then it stores the ID and returns a FALSE so that
 the second part (take out the trash) won't process.  If the Message-ID
 already *has* been stored in the cache file, then it returns a TRUE and
 the second part then dumps the message into /dev/null.

 If it works for you then great.  But this is not without problems for
 others.
 
 I send you mail with a job application. You accidentally delete it and
 request I provide it again. I enter my sent mail folder and use the
 bounce facility in Mutt to resend the mail. The procmail rule deletes
 it. At some point I may start to wonder why I never made the short-list.
 
 Be strict in what you send and generous in what you receive is still a
 good maxim to follow.

I agree.  And when I'm setting up a mail *server* (which typically
services the needs of multiple users, even if I'm most likely going to
be the only one using it), I follow that to a reasonable degree (I do
set up some fairly conservative DNSBL lookups for the worst spam
offending sources).  But when I (or any other person, for that matter)
am setting up my personal mail handling, I'm free to be as strict on
what I receive as I care to.

And face it, the scenario you describe above is not one I (or a number
of other people) are likely to run into all that often.  Possible, sure.
 Probable, not as much.

I can't speak for other people who use Mutt any more than you can, but I
would never consider using the bounce function to resend a message that
*I* sent.  If I pull it out of the sent message folder, I use forward.
Because bounce is typically used for resending a message that was sent
*to* you, not *by* you, making it look to the end recipient (that you're
bouncing it to) as though the message came from the person who sent it
to you.

And if you really want to clutch at straws, if I *were* the employer
that you're trying to contact, chances are the E-Mail address you're
using gets *lots* of mail.  That above rule caps the cache file at 8K
(-D 8192).  Old stuff drops off as new stuff comes in.  When storing
Message-ID strings, 8K isn't particularly large; the odds are that by
the time you resent me the message using the ill-advised (IMO) bounce
function instead of forward, your original ID would probably have
already fallen out.  And if it's something that I (or anyone else who
dislikes receiving multiple copies of a message and as such are using a
rule such as the above) decided to worry about because I think I'm
losing mail, I can always decrease the cache size to 4K or whatever.

As with anything, use the mail processing rules which work for you.  I'm
clearly not the only person in the world who *really* doesn't like
getting duplicate copies of mailing list replies, or I wouldn't have
posted that (I only did so because someone was complaining about exactly
that problem).  And I, for one, am not going to give up the convenience
of the above rule on the off chance that a 1-in-1000 scenario such as
the one you describe might happen. :-)

One thing that always amuses me about these types of discussions:  Every
once in a while, someone such as yourself will come along and say
something along the lines of, Oh, you shouldn't do that because
scenario X might possibly happen.  But they never post an alternative,
which accomplishes the same goal without the perceived pitfall.

So, for those who think the above rule is some kind of evil incarnate
because Something Bad Might Happen - if you really want to talk someone
out of using such rules, provide an alternative that gives the same
functionality, without causing the Something Bad That Might Happen. :-)

  --Dave




signature.asc
Description: OpenPGP digital signature


Re: Two copies of E-Mail (Re: I wish to advocate linux)

2013-03-02 Thread Brian
On Sat 02 Mar 2013 at 09:20:14 -0800, David Guntner wrote:

 Brian grabbed a keyboard and wrote:
  
  Be strict in what you send and generous in what you receive is still a
  good maxim to follow.
 
 I agree.  And when I'm setting up a mail *server* (which typically
 services the needs of multiple users, even if I'm most likely going to
 be the only one using it), I follow that to a reasonable degree (I do
 set up some fairly conservative DNSBL lookups for the worst spam
 offending sources).  But when I (or any other person, for that matter)
 am setting up my personal mail handling, I'm free to be as strict on
 what I receive as I care to.
 
 And face it, the scenario you describe above is not one I (or a number
 of other people) are likely to run into all that often.  Possible, sure.
  Probable, not as much.

Email deletion is final and irrecoverable. I am not prepared to delete
mail based on an optional email header. You are. That's all there is to
it. :)

[Snip]

 As with anything, use the mail processing rules which work for you.  I'm
 clearly not the only person in the world who *really* doesn't like
 getting duplicate copies of mailing list replies, or I wouldn't have
 posted that (I only did so because someone was complaining about exactly
 that problem).  And I, for one, am not going to give up the convenience
 of the above rule on the off chance that a 1-in-1000 scenario such as
 the one you describe might happen. :-)

That's fine. It's your mail.

 One thing that always amuses me about these types of discussions:  Every
 once in a while, someone such as yourself will come along and say
 something along the lines of, Oh, you shouldn't do that because
 scenario X might possibly happen.  But they never post an alternative,
 which accomplishes the same goal without the perceived pitfall.

I tend to be amused when someone such as yourself expects me to solve a
problem for them which can be solved by using the 'delete' key. You have
the ideal solution for your needs. I have one for mine. Mine has the
benefit of the judgement and decision making being made by a human being.

 So, for those who think the above rule is some kind of evil incarnate
 because Something Bad Might Happen - if you really want to talk someone
 out of using such rules, provide an alternative that gives the same
 functionality, without causing the Something Bad That Might Happen. :-)

This is a straitjacket requirement which brooks no alternative view.
What it says is Give me an answer formulated in my terms. Sorry, you
are seeking a technical solution to a social problem. It doesn't exist.


-- 
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/20130302200410.GR14686@desktop



Re: Two copies of E-Mail (Re: I wish to advocate linux)

2013-03-02 Thread David Guntner
Brian grabbed a keyboard and wrote:
 On Sat 02 Mar 2013 at 09:20:14 -0800, David Guntner wrote:
 
 Brian grabbed a keyboard and wrote:

 And face it, the scenario you describe above is not one I (or a number
 of other people) are likely to run into all that often.  Possible, sure.
 Probable, not as much.
 
 Email deletion is final and irrecoverable. I am not prepared to delete
 mail based on an optional email header. You are. That's all there is to
 it. :)

Yup. :-)

While the RFC does not outright *mandate* a Message-ID header, it does
strongly recommend it.  And face it, in this day and age, when was the
last time you saw a message which did NOT contain that header?  The
risk of such a header not being there is so low as to be effectively
nonexistent.  And even if it *is* missing, then I suspect the rule I'm
using would allow both copies to come through since it has nothing to
compare against.  So that's a pretty weak argument.

 As with anything, use the mail processing rules which work for you.  I'm
 clearly not the only person in the world who *really* doesn't like
 getting duplicate copies of mailing list replies, or I wouldn't have
 posted that (I only did so because someone was complaining about exactly
 that problem).  And I, for one, am not going to give up the convenience
 of the above rule on the off chance that a 1-in-1000 scenario such as
 the one you describe might happen. :-)
 
 That's fine. It's your mail.

Actually, I did realize one thing that can be done with the rule I use
to deal with someone who uses the bounce function to forward mail from
their Sent folder to send it again for some reason.  Mutt will insert a
Resent-Message-ID header when the bounce function is used.  So by
adding a test to make sure that header is *not* present, it eliminates
the potential accidental deletion of such a resent message.

(Hey, I'm always rethinking things when a given scenario comes up, even
if I consider it to be of a fairly small probability factor - makes for
an interesting challenge sometimes. grin)

 One thing that always amuses me about these types of discussions:  Every
 once in a while, someone such as yourself will come along and say
 something along the lines of, Oh, you shouldn't do that because
 scenario X might possibly happen.  But they never post an alternative,
 which accomplishes the same goal without the perceived pitfall.
 
 I tend to be amused when someone such as yourself expects me to solve a
 problem for them which can be solved by using the 'delete' key. You have
 the ideal solution for your needs. I have one for mine. Mine has the
 benefit of the judgement and decision making being made by a human being.

If *that* worried about it, it can always be directed into a folder that
you (you in the general sense, not you specifically) can review at
your leisure and hit the delete key to your heart's content. :-)

Yes, we all have a delete key.  And some of us get annoyed when we have
to use it repeatedly in situations where we really shouldn't have to.
The person I responded to clearly had a problem with just hitting
delete, so I provided him with a solution that works.  You decided to
follow up by saying how you didn't like it and it can cause problems and
you like to just hit delete.  It's fine that you like that.  He didn't,
so I helped him out.  At no time did I say that You Must Use My
Solution. :-)

 So, for those who think the above rule is some kind of evil incarnate
 because Something Bad Might Happen - if you really want to talk someone
 out of using such rules, provide an alternative that gives the same
 functionality, without causing the Something Bad That Might Happen. :-)
 
 This is a straitjacket requirement which brooks no alternative view.

It seems to me that if you think it's that bad, how about an
alternative? is *soliciting* an alternative view.  Simply saying,
Don't do that, it's bad and I don't like it is more of a straitjacket
since it provides no alternatives.

 What it says is Give me an answer formulated in my terms. Sorry, you
 are seeking a technical solution to a social problem. It doesn't exist.

Actually, I am seeking no such thing.  What I *am* saying, however, is
that if you (again, in the general sense, not necessarily specifically
you) are going to come at someone with a that solution is no good for
reason X, then it's only polite to provide an alternative (or a pointer
to where one might be found).  Hacker's Ethic, if nothing else. :-)

I've worked at places where the attitude of management was along the
lines of, If you're going to come to me with a complaint about the way
something is being done, provide a possible solution.  Otherwise I don't
want to hear from you about it.  I happen to mostly agree with that
philosophy.  If someone is going to decide that they want to complain
(for lack of a better word) about a system I use to handle a given
situation, then they should also provide an alternative for
consideration and explain why it's 

Re: I wish to advocate linux --pclos from flash

2013-03-02 Thread Tom H
On Fri, Mar 1, 2013 at 2:06 PM, Brian a...@cityscape.co.uk wrote:
 On Fri 01 Mar 2013 at 12:38:25 -0500, Tom H wrote:

 If I had a non-work-supplied-totally-locked-down Windows installation,
 I'd try the Ubuntu solution for Debian (that application looked like
 it had a drop-down menu with a list of distributions) and suggest some
 changes to the burn an ISO on Windows page of the Debian
 documentation.

 Something like

 http://lists.debian.org/debian-www/2012/08/msg00053.html ?

Thanks. This edit's either queued up somewhere or been dropped.


-- 
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/CAOdo=SwPiDcy0b4kSzo7nQa+_Ex1XnQS5=xptjcdunazrpn...@mail.gmail.com



Re: I wish to advocate linux --pclos from flash

2013-03-02 Thread Tom H
On Fri, Mar 1, 2013 at 2:27 PM, Doug dmcgarr...@optonline.net wrote:
 On 03/01/2013 12:13 PM, Tom H wrote:

[You've snipped the history of the posters...]

 And there is always PCLinuxOS, which was originally designed expressly to
 make
 the transition to Linux easy for Windows users.

 I wasn't making an exhaustive list of distributions. I just check
 three and found their instructions.

 I've just checked PCLinuxOS and there aren't any CD/DVD/Stick-creation
 instructions:

 http://www.pclinuxos.com/?page_id=10

 I can only access a cached wiki page at the moment and it only has CD
 burning instructions.

 There are instructions for making a boot flash-drive here:

 http://www.pclinuxos.com/forum/index.php/topic,80917.0.html

 Thanks but these instructions are for creating an installation flash
 drive on Linux - and they're well hidden. So it's a fail from the
 perspective of the person criticizing distributions for not providing
 readily-available Windows instructions for creating one.

 Just a minute or two with Google found this:

 http://voices.yahoo.com/how-bootable-iso-flash-drive-7334710.html

 UltraISO is a Windows program to work with iso files.
 The program is free for enough of it to make bootable flash drives,
 according to the description. I haven't tried it, but you can get the
 UltraISO from CNet, so it should be OK.

 It sould appear that you could get the program, then get the iso
 for PCLOS, and burn the flash drive all from a laptop or notebook
 that has no optical drive, and then install pclos from the flash.
 I can't think of anything much simpler than that.

The point isn't that you can find instructions via Google. (You could
also install Cygwin and use its dd or compile dd on Windows or
...).

The point is that distributions should have easily accessible
instructions (like Fedora and Ubuntu) to create a flash installer as
well as a CD installer.


-- 
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/CAOdo=SyfK46=yic5unoqiustvkrmb23ufj1rvgprq2e4a-p...@mail.gmail.com



Re: Two copies of E-Mail (Re: I wish to advocate linux)

2013-03-02 Thread Richard Hector
On 03/03/13 10:30, David Guntner wrote:

 Actually, I am seeking no such thing.  What I *am* saying, however, is
 that if you (again, in the general sense, not necessarily specifically
 you) are going to come at someone with a that solution is no good for
 reason X, then it's only polite to provide an alternative (or a pointer
 to where one might be found).  Hacker's Ethic, if nothing else. :-)
 
 I've worked at places where the attitude of management was along the
 lines of, If you're going to come to me with a complaint about the way
 something is being done, provide a possible solution.  Otherwise I don't
 want to hear from you about it.  I happen to mostly agree with that
 philosophy.

FWIW I, in general, don't. I feel it's worth pointing out potential
pitfalls in a plan even if I can't see an alternative. It may even be
that the only useful alternative is not to do it at all. And in this
case, everyone's tolerance to the problem differs - I'd rather manually
delete a few emails than have them deleted automatically and possibly
wrongly. And some third party, who hasn't posted ever, may have read
your suggestion and not thought of that drawback, so it's useful to have
these things out there.

 You (yea, in this case you) seem to
 have the opinion that mine is a horrible solution and I shouldn't be
 sharing it with others who have a similar situation that they'd like to
 handle.

I can only speak for me, but I certainly don't think you shouldn't share
it. I do think you should welcome comments on it :-)

Richard


-- 
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/5132d342.4020...@walnut.gen.nz



Re: Two copies of E-Mail (Re: I wish to advocate linux)

2013-03-02 Thread David Guntner
Richard Hector grabbed a keyboard and wrote:
 On 03/03/13 10:30, David Guntner wrote:
 I've worked at places where the attitude of management was along the
 lines of, If you're going to come to me with a complaint about the way
 something is being done, provide a possible solution.  Otherwise I don't
 want to hear from you about it.  I happen to mostly agree with that
 philosophy.
 
 FWIW I, in general, don't. I feel it's worth pointing out potential
 pitfalls in a plan even if I can't see an alternative. It may even be
 that the only useful alternative is not to do it at all. And in this
 case, everyone's tolerance to the problem differs - I'd rather manually
 delete a few emails than have them deleted automatically and possibly
 wrongly. And some third party, who hasn't posted ever, may have read
 your suggestion and not thought of that drawback, so it's useful to have
 these things out there.
 
 You (yea, in this case you) seem to
 have the opinion that mine is a horrible solution and I shouldn't be
 sharing it with others who have a similar situation that they'd like to
 handle.
 
 I can only speak for me, but I certainly don't think you shouldn't share
 it. I do think you should welcome comments on it :-)

Hmmm  Ok, point taken.  I'm aware of the potential pitfalls of what
I'm using, and in my particular case, the likelihood of those situations
is so small as to not warrant any real concern on my part.  Other people
clearly aren't all going to be in that same situation.

Comment I don't mind, but the way I read Brian's reply felt more like a
that's an awful idea, it shouldn't be used type of posting.  I can see
now where I probably misread the intent.  (Sorry about that, Brian,
assuming you're reading this.)

If something like this comes up again, I'll try to make sure to also
mention potential problem areas; you're right, someone else seeing the
suggestion may well not think of those types of potential problems at
first.  I don't want to be one of those people who gives someone just
enough information to let them shoot themselves in the foot. :-)

  --Dave




signature.asc
Description: OpenPGP digital signature


Re: Moving from a proprietary OS - unnecessarily inful experience -- was [Re: I wish to advocate linux]

2013-03-01 Thread Lisi Reisz
On Thursday 28 February 2013 23:20:08 Miles Fidelman wrote:
  Your experience doesn't make your point of reference of any greater value
  than anyone else's.  Many people go back a long way.  You were obviously
  in the miltary and/or in the States, since the first commercial computer
  this side of the pond was in 1963.  But many much younger people have
  more useful experience.

 Can't speak to heavy handed or not, but let me suggest several points of
 relevance:

 - those of us who go back a bit date from a time when computer science
 was an offshoot of electrical engineering -

But no-one else boasts _every_ _time_  of being venerable.  

Secondly, I know of at least two people of equal or greater antiquity who came 
to computers through the arts or Maths.

Thirdly, I didn't notice yesterday, but he is not even telling the truth.  He 
cannot both be around 70 (he usually says he is approaching 70) and have 
worked on/with punched cards in 1949.  (Do the arithmetic.)

And I stand by what I said.  Many much younger people (not all, many) have 
experience that is more relevant and more useful.

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/201303010833.41869.lisi.re...@gmail.com



Re: I wish to advocate linux

2013-03-01 Thread Morel Bérenger
Le Jeu 28 février 2013 11:32, Chris Bannister a écrit :
 [Please keep attributions, I presume you are not answering yourself!]
 On Thu, Feb 28, 2013 at 10:39:09AM +0100, Morel Bérenger wrote:


 what? That's absurd. The only people I know who have their OS
 installed at a shop are Apple users.

 Sounds like an ideal country. In France, even if it is illegal, all
 computers have an installed OS on them. And guess which one?

 have their OS installed at a shop != have an installed OS on them.

Sorry, misunderstood :)


-- 
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/44735f71c5ae2043f3210a89d5298f29.squir...@www.sud-ouest.org



Re: Moving from a proprietary OS - unnecessarily inful experience -- was [Re: I wish to advocate linux]

2013-03-01 Thread Morel Bérenger
Le Ven 1 mars 2013 0:20, Miles Fidelman a écrit :
 - those of us who go back a bit date from a time when computer science
 was an offshoot of electrical engineering
 analog and digital circuitry before ever touching a computer - gives a
 very different perspective than starting with programming

I agree for the hardware approach. I do not agree for the a bit date from
a time... since there are still people studying electronic.
This is not an age problem.
I'm less than 30 years old, and only have low grades. But I have knowledge
of electricity laws. And my lack of grades and/or age do not imply that I
could not understand/use any old computer.
In fact, I'm sure that I would think of them as nice toys. Real mode is
easier to manipulate than protected mode, and x86 assembly was far easier
before 32 bit computers.

 - one of the results of this experience is that hardware compatibility
 and driver issues are second nature to those who grew up with them; whereas
 younger folks who have grown up with pre-loaded operating systems and
 plug and play devices tend to find linux (and BSD)
 installations a bit more daunting (leading in many cases to whining)

Old peoples quickly whine those kind of things, too. Think about it:
Before, we had no need of Internet. There were less things to understand.
We had less codes to remember.
You know, there are young people who were used to DOS before being 10
years old.
We are used to hardware boring stuff, and when I see the word
SoundBlaster, it always makes me remember of those games were I spent time
to have sounds, when I known no word of English.
People who whine, do that anyway. Being 20 or 70 years old changes nothing.

On the other side, Linux driver stuff is more boring because you have to
guess the modules names. To try to compile a damn kernel with only stuff
you really need is a pain, whatever documents says. Of course, typing
make  make install is easy. But choosing options is not.
When you are using a widely used system, you have far more problems (I had
more problems of unrecognized hardware on windows than on linux), but when
they are solved, it is far more quickly and in a more friendly way. People
does not even have to understand what is a compilation.
Being a programmer, I feel like people see computer sciences as dark
magic, and computing people as sorcerers (just for that, I should try
that distro, sorcerer ;) ). I wonder if I could continue that analogy by
comparing linux users to necromancers :D (after all, we are able to revive
old computers hehe)

 - also, those of us who date back a few years still think of computers
 as things that need some assembly and bring that view to system software
 as well

Well, here, let me laugh.
Something which needs some assembly, is composed of objects, right?
When you built your computer, you do not try to reproduce the cards
before, they are simple objects?
What are objects in programming? OOP. Modules. Stuff you can reuse without
having to understand exactly how it works, simply read the doc, and plug
the lib in your software.

Now, I remember a colleague, ~50 years old (when I was ~25), which had a
really strange thinking of Oriented Object Programming or simply about how
to reuse: when he wanted to reuse something, he simply copied/pasted parts
of source code from the lib into his software... What he was doing worked,
and he sometimes impressed me, but his conception of re-usability was a
shame.

Anew, age is not relevant here.
What is relevant is programmer's ability to split complex problems in
simpler ones, to solve those multiple problems, and to use all those
simple solutions to build a more complex one which will solve the initial
problem.

 Which leads me to take just a little issue with your comment that
 younger people have more useful experience.  I'm actually not entirely
 sure that's true.  If anything, younger people have narrower (or at least
 different) experience.

Well, you have a lot of deprecated experience. I do not want to
denigrate your knowledge, since it gave you a way to think and do things
and since young programmers are full of such deprecated knowledge, but how
useful is now your knowledge about motorola assembly? About INT 21H? About
address A000: in mode 13H?
That knowledge was very useful yesterday, but now, it is deprecated,
unusable.
It imply that you know some basics about memory and CPU, but in itself, it
have now no use.
And I only mentioned stuff of 90's here. Only 20 years old.


-- 
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/b22cd5643a09cda02049cc3f19e2eb6e.squir...@www.sud-ouest.org



Re: Moving from a proprietary OS - unnecessarily inful experience -- was [Re: I wish to advocate linux]

2013-03-01 Thread agroconsultor0
On Thu, 28 Feb 2013 16:43:13 -0500
Miles Fidelman mfidel...@meetinghouse.net wrote:

 Richard Owlett wrote:
 
  Nope ;)
  It was the standard IBM keypunch. I spent many hours muttering at it 
  in 1961.
 
 Ok... definitely a bit before my time.  Used keypunches my freshman year 
 at college (1971) - in a course that took us from IBM 360 batch, to 
 360/TSO, to Multics - but after that, punch cards were primarily a nice 
 (and free) source of notecard :-)
 
 Ahh the good old days.
 
 Cheers,
 
 Miles
 

Ho,Ho,Ho, i am a baby then, hp-86 Basic with 51/4 soft disc. 1982.

-- 
agroconsultor0 agroconsult...@gmail.com


-- 
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/20130301034155.c98928733619aa7a8130c...@gmail.com



Re: Moving from a proprietary OS - unnecessarily inful experience -- was [Re: I wish to advocate linux]

2013-03-01 Thread Miles Fidelman

Morel Bérenger wrote:

Le Ven 1 mars 2013 0:20, Miles Fidelman a écrit :

- also, those of us who date back a few years still think of computers
as things that need some assembly and bring that view to system software
as well

Well, here, let me laugh.
Something which needs some assembly, is composed of objects, right?
When you built your computer, you do not try to reproduce the cards
before, they are simple objects?
What are objects in programming? OOP. Modules. Stuff you can reuse without
having to understand exactly how it works, simply read the doc, and plug
the lib in your software.


Fair enough, but... I have to say it

Back in my day, we not only had to walk to school, uphill, in both 
directions, in the snow, but we also had to build our computers by hand, 
from TTL logic gates. :-)


Seriously, though... these days, the objects we deal with are a lot 
bigger and more complex, and often contain no user serviceable parts.  
There's something qualitatively different between a wire-wrap board 
containing logic gates, and a CPU chip.


I will maintain that one has a different perspective if one has had to 
get down in the weeds.  When I was in school, we had an old PDP-1 in a 
lab where users were allowed (even encouraged) to add new machine 
instructions by wire-wrapping them onto the backplane. Other people were 
busily building micro computers from kits (can you say IMSAI?).  In one 
of my early jobs, we designed embedded avionic computers, which included 
things like designing the instruction set, designing the microcode that 
implemented macroinstructions, and then the board level design.  At the 
time, our pride and joy was a single-board machine (about micro-itx 
size), faster than anything else around, that consisted about 100 ECL 
flatpacks on each side of a 16-layer, double sided circuit board.  The 
hardest part of the design actually turned out to be designing the 
circuit boards to carry heat to the edges of the board - to mate up with 
the cooling system.  Now what we considered fast (4.2mflops if I recall) 
is laughably slow by today's standards - but I maintain that we learned 
a lot that provides a lot of perspective into the present.


Now, I won't deny that there are younger folks who've learned such 
things as well; nor will I deny that there are things that people learn 
today that are equally or more valuable (say, chip design). But I will 
say that as the low-level black boxes become more complicated, and less 
accessible, and less taught, we've lost a lot.


The best comparison I can make is to cars.  Used to be that most people 
could do simple maintenance and roadside repair - oil changes, jiggle a 
stuck carburetor, etc.  Auto shop was commonly taught in high school, 
lots of people customized their cars, and so forth.  These days, a lot 
more of our cars consist of things we can't get to (fuel injectors 
instead of carburetors, engine control computers instead of mechanical 
linkages), its hard to find an auto shop course outside a trade school, 
and the most that many people can do in the way of self-help is to call 
AAA from their cell phone.


My sense is that the computer world is somewhere in the middle of this 
kind of transition.  More and more people are only prepared to use 
something that comes out-of-the-box pre-loaded with software, and get 
disturbed and flustered when faced with the need for some user assembly 
required.


Is this a bad thing?  For users, probably not.  When I'm reading a book, 
I want a Nook or Kindle to be as transparent and easy-to-use as a 
printed book.  When it comes to folks who are going to build the next 
generation of technology, it's a big problem.


FYI, there's an interesting discussion right now, on opensource.com, on 
growing the next generation of hackers that relates to these issues - 
http://opensource.com/education/13/2/next-generation-open-source-hackers



Which leads me to take just a little issue with your comment that
younger people have more useful experience.  I'm actually not entirely
sure that's true.  If anything, younger people have narrower (or at least
different) experience.

Well, you have a lot of deprecated experience. I do not want to
denigrate your knowledge, since it gave you a way to think and do things
and since young programmers are full of such deprecated knowledge, but how
useful is now your knowledge about motorola assembly? About INT 21H? About
address A000: in mode 13H?
That knowledge was very useful yesterday, but now, it is deprecated,
unusable.
It imply that you know some basics about memory and CPU, but in itself, it
have now no use.
And I only mentioned stuff of 90's here. Only 20 years old.



Well... don't know about Motorola assembly, but I expect my experience 
with both PDP-10 and Z80 assembly is still relevant in several regards:


- it's not the details of any specific assembly language that matter - 
they all have roughly the same function set (well, not exactly true; 
there 

Re: Two copies of E-Mail (Re: I wish to advocate linux)

2013-03-01 Thread Miles Fidelman

Bob Proulx wrote:

David Guntner wrote:

Anyway, the recipe is dirt simple.
...
# Duplicate Suppression.
:0Whc: $MAILDIR/.msgid.cache.lock
| $FORMAIL -D 8192 $MAILDIR/.msgid.cache

 # Take out the Trash.
 :0 a:
 /dev/null



For one I use the mailing list headers List-Id and List-Post.  Those
are the standard headers and those are the best ones to use for filing
mailing list messages.  Smart MUAs use those to know how to do a
list-reply.  Therefore the copy I want is the copy that comes from the
mailing list.

When people CC me directly then the direct copy is almost always the
one that comes first.  The recipe above deletes the second one.  The
second one is usually the one that comes through the mailing list
because this mailing list is sending to 2,000+ recipients and
therefore it takes longer.  The above almost invariably discards the
mailing list copy that I want to keep and keeps the direct copy that I
want to discard.



Good catch!

--
In theory, there is no difference between theory and practice.
In practice, there is.    Yogi Berra


--
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/5130aefa.1020...@meetinghouse.net



Re: Two copies of E-Mail (Re: I wish to advocate linux)

2013-03-01 Thread David Guntner
Bob Proulx grabbed a keyboard and wrote:
 David Guntner wrote:
 Anyway, the recipe is dirt simple.
 ...
 # Duplicate Suppression.
 :0Whc: $MAILDIR/.msgid.cache.lock
 | $FORMAIL -D 8192 $MAILDIR/.msgid.cache

 # Take out the Trash.
 :0 a:
 /dev/null

 That's all there is to it.  The formail program is used to grab the
 Message-ID of the incoming message.  Even if it is sent To: one address
 and CC: another, both copies will have the same Message-ID.  When the
 first one comes in, it stores that ID in the $MAILDIR/.msgid.cache file
 after first comparing the message to see if that ID has already been
 stored there.  If not, then it stores the ID and returns a FALSE so that
 the second part (take out the trash) won't process.  If the Message-ID
 already *has* been stored in the cache file, then it returns a TRUE and
 the second part then dumps the message into /dev/null.
 
 If it works for you then great.  But this is not without problems for
 others.

Yea, it works swell.  I've never had any problem caused by it, either. :-)

 For one I use the mailing list headers List-Id and List-Post.  Those
 are the standard headers and those are the best ones to use for filing
 mailing list messages.  Smart MUAs use those to know how to do a
 list-reply.  Therefore the copy I want is the copy that comes from the
 mailing list.

Not every MUA does, however.  The one I'm using, for example, does not
(or if it does, I've never figured out how to turn that feature on...).
 Therefor, I've also got a Procmail recipe that adds a Reply-To:
pointing back to the list on my local copy (of debian-user, since it
doesn't add one itself - on lists that do so, I don't use that rule) so
that when I hit reply, it goes back to the list as it should since most
of the time a reply should go back to the list when replying to a
posting on the list.  And I don't want to have to remember to do it
manually each time I reply. :-)

 When people CC me directly then the direct copy is almost always the
 one that comes first.  The recipe above deletes the second one.  The
 second one is usually the one that comes through the mailing list
 because this mailing list is sending to 2,000+ recipients and
 therefore it takes longer.  The above almost invariably discards the
 mailing list copy that I want to keep and keeps the direct copy that I
 want to discard.

Almost always, yes.  But the various oddities of E-Mail processing
doesn't result in that being a 100% occurrence.  I've seen it happen,
myself.  (And you seem to be acknowledging that as well.)

 This means that people who use the above can't use the standard
 List-Id headers and instead try to use the To: or Cc: addresses to
 file the messages.  Or worse they try to use a Subject: tag.  That is
 bad because the List-Id header is there for just that purpose.

They're there to help people delete a second copy of the same message
when someone sends to both a mailing list (or other method) and to that
person?

 Thankfully debian-user doesn't use a subject tag.  But it is a chain
 of circumstances such as this that cause people to make bad choices
 and then often try to force those bad choices upon others.  How many
 times have people asked for subject tags on random mailing lists
 instead of using the List-Id header as it was intended?
 
 At one time I used the above recipe myself but stopped using it due to
 these problems.  YMMV.

My mileage is fine, given that the goal of the goal of the above recipe
is to eliminate a duplicate message, not figure out where to filter the
list message into which folder.

It all depends on your experiences and own requirements.  I for one am
on a decade+ old list that was home grown - the guy running it rolled
his own, so to speak.  It doesn't use a subject tag, and it has never
had those now-standard List-ID headers, nor is it likely to anytime in
the future.  So even if I *were* using a MUA that understands those
headers, it would do me no good.

It has never occurred to me to ever filter based in a List-ID field,
since back in the old days when I started doing this, they hadn't yet
come into existence. :-)  And even *after* coming into existence, you
still have to *send* your message to the list in question, thus the To:
or Cc: will *always* be there, regardless of the presence (or lack
thereof) of a List-ID header.  Also, by filtering on those (To, Cc), it
works 100% of the time - even if the above recipe deletes the list copy
if it came in second. :-)

For myself, this is what I use specifically for the Debian users list:

  Debian Mailing List Handling 
 # They don't set a Reply-To: header pointing back to the list
 # So let's add one for the discussion list (only)
 :0fhw
 * ^TO_ .*debian-user@lists.debian.org
 | $FORMAIL -i Reply-To: Linux Debian Mailing List 
 debian-user@lists.debian.org
 
 # All mail (user, security, etc.) into one folder, please!
 # Look for the list address here and put them in their own file
 :0:
 * 

Re: I wish to advocate linux --pclos from flash

2013-03-01 Thread Tom H
On Thu, Feb 28, 2013 at 3:52 PM, Doug dmcgarr...@optonline.net wrote:
 On 02/28/2013 02:12 PM, Tom H wrote:

 On Thu, Feb 28, 2013 at 1:54 PM, Lisi Reisz lisi.re...@gmail.com wrote:

 On Thursday 28 February 2013 18:12:14 Tom H wrote:

 Linux isn't as myopic as people are claiming in this thread.

 Ubuntu points users to this page to create a flash installer:

 http://www.pendrivelinux.com/universal-usb-installer-easy-as-1-2-3/

 And Fedora points users to a Windows version of liveusb-creator here:

 http://fedorahosted.org/liveusb-creator/

 Debian, unfortunately, only gives instructions to burn to a CD/DVD via
 Windows on:
 http://www.debian.org/CD/faq/#record-windows

 And there is always PCLinuxOS, which was originally designed expressly to
 make
 the transition to Linux easy for Windows users.

 I wasn't making an exhaustive list of distributions. I just check
 three and found their instructions.

 I've just checked PCLinuxOS and there aren't any CD/DVD/Stick-creation
 instructions:

 http://www.pclinuxos.com/?page_id=10

 I can only access a cached wiki page at the moment and it only has CD
 burning instructions.

 There are instructions for making a boot flash-drive here:

 http://www.pclinuxos.com/forum/index.php/topic,80917.0.html

Thanks but these instructions are for creating an installation flash
drive on Linux - and they're well hidden. So it's a fail from the
perspective of the person criticizing distributions for not providing
readily-available Windows instructions for creating one.


-- 
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/CAOdo=sw9+qkn-ydgdx0fwc1dbz5pqvevgexffv9iaj8bjpe...@mail.gmail.com



Re: I wish to advocate linux

2013-03-01 Thread Tom H
On Thu, Feb 28, 2013 at 4:06 PM, Miles Fidelman
mfidel...@meetinghouse.net wrote:
 Tom H wrote:
 On Thu, Feb 28, 2013 at 1:12 PM, Miles Fidelman
 mfidel...@meetinghouse.net wrote:
 Tom H wrote:
 On Wed, Feb 27, 2013 at 9:32 PM, Miles Fidelman
 mfidel...@meetinghouse.net wrote:

 Come to think of it, that's a good point - and even relevant to Linux
 advocacy. I don't think I've ever seen a live CD for either Windows or
 MacOS (well, the install DVD sort of is, but...). And I sure as heck
 don't
 think you can get Windows or MacOS to run off a USB stick. On the other
 hand, I CAN carry a full copy of Linux (or BSD) on my keyring - for
 some
 applications that's kind of useful.

 You can boot OS X from a USB stick!

 Really? Can you point me at build directions?

 It's so simple, I doubt that there's any howto anywhere.

 You just point the OS X installer to the USB disk!

 Doooh (sound of hand slapping head). that makes sense.

 Of course we're talking a pretty big USB disk; probably at the high end of
 what you can do with a solid state keychain USB stick. Also, still tied to
 Mac hardware. Probably can't, for example, walk into a library and boot one
 of the machines from MacOnUSB, the way you can from a small live version of
 Linux.

Yes, OS X's tied to Apple hardware...


-- 
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/CAOdo=Sx95zgY6=-smo44z9pkmnnq7eec_kddma57_g-qt8w...@mail.gmail.com



Re: I wish to advocate linux --pclos from flash

2013-03-01 Thread Joao Luis Meloni Assirati
 Thanks but these instructions are for creating an installation flash drive
 on Linux - and they're well hidden. So it's a fail from the perspective
 of the person criticizing distributions for not providing readily-available
 Windows instructions for creating one.

Wow! This trolling will never end. Will you find instructions in
Microsoft's site on how to install Windows from Linux?

This subject was discussed before. Installation or run from flash drive is
some exotic resource for skilled people. Burn a cdrom, install some Linux
distribution, learn Linux, then follow the instruction on how to make a
flash installer or live system.

Please, PLEASE, people, the trolls are already fed. Let us go back to help
people that actually need help.


-- 
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/972782bb1c22f4a8c7eda1c22cf06e52.squir...@nonada.if.usp.br



Re: I wish to advocate linux --pclos from flash

2013-03-01 Thread Tom H
On Fri, Mar 1, 2013 at 12:25 PM, Joao Luis Meloni Assirati
assir...@nonada.if.usp.br wrote:

 Thanks but these instructions are for creating an installation flash drive
 on Linux - and they're well hidden. So it's a fail from the perspective
 of the person criticizing distributions for not providing readily-available
 Windows instructions for creating one.

 Wow! This trolling will never end. Will you find instructions in
 Microsoft's site on how to install Windows from Linux?

This is silly. Why is discussing how to give more/better instructions
for creating a Linux installation disk on Windows trolling?! You have
to assume that potential first-time Linux users, who don't have a
Linux-using friend who can/wants to help, are going to want to do so
and that they might want to use a flash disk rather than a CD/DVD.

If I had a non-work-supplied-totally-locked-down Windows installation,
I'd try the Ubuntu solution for Debian (that application looked like
it had a drop-down menu with a list of distributions) and suggest some
changes to the burn an ISO on Windows page of the Debian
documentation.


-- 
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/CAOdo=symmwlf7xrwtvsrbko1led6gwht7amiw_1m4snf7d8...@mail.gmail.com



Re: Moving from a proprietary OS - unnecessarily inful experience -- was [Re: I wish to advocate linux]

2013-03-01 Thread Cybe R. Wizard
On Fri, 1 Mar 2013 08:33:41 +
Lisi Reisz lisi.re...@gmail.com wrote:

 He 
 cannot both be around 70 (he usually says he is approaching 70) and
 have worked on/with punched cards in 1949.  (Do the arithmetic.)

That certainly doesn't tell the whole story.  Those same punch cards
or ones visually identical were used in my high school in the 60s.

Cybe R. Wizard
-- 
Nice computers don't go down.
Larry Niven, Steven Barnes
The Barsoom Project


-- 
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/20130301115024.2163d42a@wizardstower



Re: Moving from a proprietary OS - unnecessarily inful experience -- was [Re: I wish to advocate linux]

2013-03-01 Thread Brian
On Fri 01 Mar 2013 at 08:34:57 -0500, Miles Fidelman wrote:

 Fair enough, but... I have to say it
 
 Back in my day, we not only had to walk to school, uphill, in both
 directions, in the snow, but we also had to build our computers by
 hand, from TTL logic gates. :-)

You had TTL logic gates? Boy, you were lucky! We were given relay
switches from cast-off telephone equipment. And we had to buy our
own electrodes and lemons to power the machine.


-- 
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/20130301180621.GF14686@desktop



Re: Moving from a proprietary OS - unnecessarily inful experience -- was [Re: I wish to advocate linux]

2013-03-01 Thread Richard Owlett

Brian wrote:

On Fri 01 Mar 2013 at 08:34:57 -0500, Miles Fidelman wrote:


Fair enough, but... I have to say it

Back in my day, we not only had to walk to school, uphill, in both
directions, in the snow, but we also had to build our computers by
hand, from TTL logic gates. :-)


You had TTL logic gates? Boy, you were lucky! We were given relay
switches from cast-off telephone equipment. And we had to buy our
own electrodes and lemons to power the machine.


I'll see your new fangled stuff and raise you a CK722 ;/
PS  My father once operated a LEGAL _land based_ spark 
gap transmitter in continental U.S.
PPSfamily lore also says he worked for Stanley Steamer 
(mfg or dealer unclear)  ;)


I do hope that certain individuals in this group do not 
think I take myself too seriously.
Chronological age, in and of itself, does tend to give 
perspective.

But it helps!

new/modern/???  better ;/!



--
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/5130f205.1080...@cloud85.net



Re: Moving from a proprietary OS - unnecessarily inful experience -- was [Re: I wish to advocate linux]

2013-03-01 Thread Richard Owlett

Cybe R. Wizard wrote:

On Fri, 1 Mar 2013 08:33:41 +
Lisi Reisz lisi.re...@gmail.com wrote:


He
cannot both be around 70 (he usually says he is approaching 70) and
have worked on/with punched cards in 1949.  (Do the arithmetic.)


I never claimed to be THAT old.
Parents married day before Pearl Harbor - will leave family 
jokes to your imagination

At 9 lbs 10 oz I arrived during meat rationing
My first formal intro to programming involved a precursor to 
BASIC, at least we beat Dartmouth
During H.S. I got very irritated at an IBM Field Service 
Engineer when he loaned me a schematic of a then current CPU.
My reaction - That is nothing but a bunch of flip-flops. 
Either 12AX7's or 12AU7's IRCC




That certainly doesn't tell the whole story.  Those same punch cards
or ones visually identical were used in my high school in the 60s.

Cybe R. Wizard




--
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/5130f6ce.2090...@cloud85.net



Re: Moving from a proprietary OS - unnecessarily inful experience -- was [Re: I wish to advocate linux]

2013-03-01 Thread Go Linux
--- On Fri, 3/1/13, Richard Owlett rowl...@cloud85.net wrote:

 From: Richard Owlett rowl...@cloud85.net
 Subject: Re: Moving from a proprietary OS - unnecessarily inful experience -- 
 was [Re: I wish to advocate linux]
 To: debian-user@lists.debian.org
 Date: Friday, March 1, 2013, 12:43 PM

 
 Parents married day before Pearl Harbor 


A young'n!  I was BORN before Pearl Harbor!!  LOL!!


-- 
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/1362163944.47105.yahoomailclas...@web163402.mail.gq1.yahoo.com



Re: I wish to advocate linux --pclos from flash

2013-03-01 Thread Brian
On Fri 01 Mar 2013 at 12:38:25 -0500, Tom H wrote:

 On Fri, Mar 1, 2013 at 12:25 PM, Joao Luis Meloni Assirati
 assir...@nonada.if.usp.br wrote:
 
  Thanks but these instructions are for creating an installation flash drive
  on Linux - and they're well hidden. So it's a fail from the perspective
  of the person criticizing distributions for not providing readily-available
  Windows instructions for creating one.
 
  Wow! This trolling will never end. Will you find instructions in
  Microsoft's site on how to install Windows from Linux?
 
 This is silly. Why is discussing how to give more/better instructions
 for creating a Linux installation disk on Windows trolling?! You have
 to assume that potential first-time Linux users, who don't have a
 Linux-using friend who can/wants to help, are going to want to do so
 and that they might want to use a flash disk rather than a CD/DVD.

Spot on! In fact, they may want to move away from the old shiny disk
technology and take advantage of what Debian provides with its isohybrid
images. It really isn't that hard to give sound, useful advice.
 
 If I had a non-work-supplied-totally-locked-down Windows installation,
 I'd try the Ubuntu solution for Debian (that application looked like
 it had a drop-down menu with a list of distributions) and suggest some
 changes to the burn an ISO on Windows page of the Debian
 documentation.

Something like

   http://lists.debian.org/debian-www/2012/08/msg00053.html ?


-- 
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/20130301190629.GG14686@desktop



Re: I wish to advocate linux --pclos from flash

2013-03-01 Thread Doug

On 03/01/2013 12:13 PM, Tom H wrote:

/snip/

And there is always PCLinuxOS, which was originally designed expressly to
make
the transition to Linux easy for Windows users.

I wasn't making an exhaustive list of distributions. I just check
three and found their instructions.

I've just checked PCLinuxOS and there aren't any CD/DVD/Stick-creation
instructions:

http://www.pclinuxos.com/?page_id=10

I can only access a cached wiki page at the moment and it only has CD
burning instructions.

There are instructions for making a boot flash-drive here:

http://www.pclinuxos.com/forum/index.php/topic,80917.0.html

Thanks but these instructions are for creating an installation flash
drive on Linux - and they're well hidden. So it's a fail from the
perspective of the person criticizing distributions for not providing
readily-available Windows instructions for creating one.



Just a minute or two with Google found this:

http://voices.yahoo.com/how-bootable-iso-flash-drive-7334710.html

UltraISO is a Windows program to work with iso files.
The program is free for enough of it to make bootable flash drives,
according to the description. I haven't tried it, but you can get the
UltraISO from CNet, so it should be OK.

It sould appear that you could get the program, then get the iso
for PCLOS, and burn the flash drive all from a laptop or notebook
that has no optical drive, and then install pclos from the flash.
I can't think of anything much simpler than that.

--doug



--doug


--
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/5131011c.7000...@optonline.net



Re: Moving from a proprietary OS - unnecessarily inful experience -- was [Re: I wish to advocate linux]

2013-03-01 Thread Miles Fidelman

Brian wrote:

On Fri 01 Mar 2013 at 08:34:57 -0500, Miles Fidelman wrote:


Fair enough, but... I have to say it

Back in my day, we not only had to walk to school, uphill, in both
directions, in the snow, but we also had to build our computers by
hand, from TTL logic gates. :-)

You had TTL logic gates? Boy, you were lucky! We were given relay
switches from cast-off telephone equipment. And we had to buy our
own electrodes and lemons to power the machine.



Ahh yes, programmable relay logic.  Still around, by the way. :-)

Ok, anybody here played with really old IBM card sorters - the kind that 
you programmed with patch cords? (Not me, I might add.)


--
In theory, there is no difference between theory and practice.
In practice, there is.    Yogi Berra


--
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/5131037c.3090...@meetinghouse.net



Re: I wish to advocate linux --pclos from flash

2013-03-01 Thread Rob Owens
On Fri, Mar 01, 2013 at 12:13:59PM -0500, Tom H wrote:
 On Thu, Feb 28, 2013 at 3:52 PM, Doug dmcgarr...@optonline.net wrote:
  There are instructions for making a boot flash-drive here:
 
  http://www.pclinuxos.com/forum/index.php/topic,80917.0.html
 
 Thanks but these instructions are for creating an installation flash
 drive on Linux - and they're well hidden. So it's a fail from the
 perspective of the person criticizing distributions for not providing
 readily-available Windows instructions for creating one.
 
Last time I used an Ubuntu live cd, there was a big old install to USB
stick button either on the desktop or in an easily accessible menu.
It's been a while, but I'm pretty sure I didn't have to look too hard to
find it.  Anybody know for sure if Ubuntu still has that?

So while it's not Debian, it is a very easy way to tesk out a Linux
distribution.

-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/20130301204527.gb31...@aurora.owens.net



Re: Moving from a proprietary OS - unnecessarily inful experience -- was [Re: I wish to advocate linux]

2013-03-01 Thread Jack Schneider
On Fri, 01 Mar 2013 14:37:32 -0500
Miles Fidelman mfidel...@meetinghouse.net wrote:

 Brian wrote:
  On Fri 01 Mar 2013 at 08:34:57 -0500, Miles Fidelman wrote:
 
  Fair enough, but... I have to say it
 
  Back in my day, we not only had to walk to school, uphill, in both
  directions, in the snow, but we also had to build our computers by
  hand, from TTL logic gates. :-)
  You had TTL logic gates? Boy, you were lucky! We were given relay
  switches from cast-off telephone equipment. And we had to buy our
  own electrodes and lemons to power the machine.
 
 
 Ahh yes, programmable relay logic.  Still around, by the way. :-)
 
 Ok, anybody here played with really old IBM card sorters - the kind
 that you programmed with patch cords? (Not me, I might add.)
 
Like an IBM 1400?

'Musing along

Jack


-- 
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/20130301154612.7bd1a...@speeduke.wildblue.com



An Apology was:Re: Moving from a proprietary OS - unnecessarily inful experience -- was [Re: I wish to advocate linux]

2013-03-01 Thread Lisi Reisz
On Friday 01 March 2013 08:33:41 Lisi Reisz wrote:
 Thirdly, I didn't notice yesterday, but he is not even telling the truth.
  He cannot both be around 70 (he usually says he is approaching 70) and
 have worked on/with punched cards in 1949.  (Do the arithmetic.)

It has been drawn to my attention off list that I am wrong about this.  And, 
even had it been right, it was pretty catty anyway.  (I haven't yet read the 
list today, but several of you have probably told me so). 

 I have been thinking all day that when I got back to a computer (I have been 
oit all day) I must apologise - before it was drawn to my attention that I 
had got the date wrong.

I shall now read the list.  If 20 of you have written to say how catty I was, 
I acknowledge all 20 here.

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/201303012220.55337.lisi.re...@gmail.com



Re: An Apology was:Re: Moving from a proprietary OS - unnecessarily inful experience -- was [Re: I wish to advocate linux]

2013-03-01 Thread Richard Owlett

Lisi Reisz wrote:



It has been drawn to my attention off list that I am wrong ...  


NOT TO WORRY

If I took myself too seriously I've siblings {and friends} 
who would resolve issue ;/





--
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/51312c9d.3060...@cloud85.net



Re: I wish to advocate linux

2013-03-01 Thread Joao Luis Meloni Assirati
 There was once a fellow on a list I belong to whose postings
 were one tale of woe after another which is not that unusual for
 those of us who tinker and work in technology. The trouble with
 him was that it was all one big conspiracy against him and he
 was just going to get out of the hobby of amateur radio all
 together as nothing ever worked for him.

   He never read about the how and why of things. His idea
 of life was you borrow yourself in to the poor house, buy all
 this neat stuff, demand accessible manuals, hook it all together
 the way you think it goes and then complain when it blows up and
 or just doesn't work.

   Never once did I hear him ask why an antenna must be
 built a certain way or how do the rest of you solve this or that problem.
 It was all along the lines of I spent X Dollars for this or
 that and it quit on me in a puff of smoke, bla bla bla.

   List members told him about articles he could read,
 suggested he contact somebody locally who could help show him
 the ropes as to how to do these things right, etc.

   Finally, I think everybody just gave up. He left the
 list and I have no idea what happened but this present
 discussion reminds me much of that very similar discussion. We
 were all jerks and just out for ourselves.

   In the 35 years I have been involved with modern
 computing, my experience has been that if you show you are
 making a good effort to help yourself, people will at least
 point you at a good reading list and many times, they do a lot
 more than the call of duty says they should do.

I think that is exactly the case. This guy managed to get everybody in
this list working for him, even if he is unable to make a single
meaningful objective question. Even if he is insulting individual people,
the community and Debian (nothing works, why am I not surprised)! And at
the end all the energy spent with him will be lost. People will get tired
and he will leave crying that it is impossible to install Linux and
Linux people are jerks.


-- 
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/ad4ba41a2d4d40674dca503b7d2b0633.squir...@nonada.if.usp.br



Re: I wish to advocate linux

2013-03-01 Thread Miles Fidelman

Joao Luis Meloni Assirati wrote:

There was once a fellow on a list I belong to whose postings
were one tale of woe after another which is not that unusual for
those of us who tinker and work in technology. The trouble with
him was that it was all one big conspiracy against him and he
was just going to get out of the hobby of amateur radio all
together as nothing ever worked for him.

He never read about the how and why of things. His idea
of life was you borrow yourself in to the poor house, buy all
this neat stuff, demand accessible manuals, hook it all together
the way you think it goes and then complain when it blows up and
or just doesn't work.

Never once did I hear him ask why an antenna must be
built a certain way or how do the rest of you solve this or that problem.
It was all along the lines of I spent X Dollars for this or
that and it quit on me in a puff of smoke, bla bla bla.

List members told him about articles he could read,
suggested he contact somebody locally who could help show him
the ropes as to how to do these things right, etc.

Finally, I think everybody just gave up. He left the
list and I have no idea what happened but this present
discussion reminds me much of that very similar discussion. We
were all jerks and just out for ourselves.

In the 35 years I have been involved with modern
computing, my experience has been that if you show you are
making a good effort to help yourself, people will at least
point you at a good reading list and many times, they do a lot
more than the call of duty says they should do.

I think that is exactly the case. This guy managed to get everybody in
this list working for him, even if he is unable to make a single
meaningful objective question. Even if he is insulting individual people,
the community and Debian (nothing works, why am I not surprised)! And at
the end all the energy spent with him will be lost. People will get tired
and he will leave crying that it is impossible to install Linux and
Linux people are jerks.

Yup.  And it's even obvious what he's doing, but he's too obstinate to 
listen.


(trying to install onto the same device he's booting from, without 
paying attention to partitioning, telling the installer where to put 
things, or telling grub that it has to worry about two different 
installs on the same device - idiot)





--
In theory, there is no difference between theory and practice.
In practice, there is.    Yogi Berra


--
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/51317a79.3050...@meetinghouse.net



Re: I wish to advocate linux

2013-03-01 Thread Mark Filipak

On 2013/3/1 11:05 PM, Miles Fidelman wrote:

Joao Luis Meloni Assirati wrote:

There was once a fellow on a list I belong to whose postings
were one tale of woe after another which is not that unusual for
those of us who tinker and work in technology. The trouble with
him was that it was all one big conspiracy against him and he
was just going to get out of the hobby of amateur radio all
together as nothing ever worked for him.

He never read about the how and why of things. His idea
of life was you borrow yourself in to the poor house, buy all
this neat stuff, demand accessible manuals, hook it all together
the way you think it goes and then complain when it blows up and
or just doesn't work.

Never once did I hear him ask why an antenna must be
built a certain way or how do the rest of you solve this or that problem.
It was all along the lines of I spent X Dollars for this or
that and it quit on me in a puff of smoke, bla bla bla.

List members told him about articles he could read,
suggested he contact somebody locally who could help show him
the ropes as to how to do these things right, etc.

Finally, I think everybody just gave up. He left the
list and I have no idea what happened but this present
discussion reminds me much of that very similar discussion. We
were all jerks and just out for ourselves.

In the 35 years I have been involved with modern
computing, my experience has been that if you show you are
making a good effort to help yourself, people will at least
point you at a good reading list and many times, they do a lot
more than the call of duty says they should do.

I think that is exactly the case. This guy managed to get everybody in
this list working for him, even if he is unable to make a single
meaningful objective question. Even if he is insulting individual people,
the community and Debian (nothing works, why am I not surprised)! And at
the end all the energy spent with him will be lost. People will get tired
and he will leave crying that it is impossible to install Linux and
Linux people are jerks.


Yup.  And it's even obvious what he's doing, but he's too obstinate to listen.

(trying to install onto the same device he's booting from, without paying 
attention to partitioning, telling the installer where to put things, or 
telling grub that it has to worry about two different installs on the same 
device - idiot)


Of course I'm not trying to install to the same device from which I'm booting. 
What's with you, Miles? Why are you making such stupid assumptions and then 
broadcasting them? Have you actually read anything I've written?



--
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/51318225.3020...@gmail.com



Re: I wish to advocate linux

2013-03-01 Thread Go Linux
--- On Fri, 3/1/13, Joao Luis Meloni Assirati assir...@nonada.if.usp.br wrote:

 From: Joao Luis Meloni Assirati assir...@nonada.if.usp.br
 Subject: Re: I wish to advocate linux
 To: Martin McCormick mar...@x.it.okstate.edu
 Cc: debian-user@lists.debian.org
 Date: Friday, March 1, 2013, 10:01 PM
  This guy managed to get
 everybody in
 this list working for him, even if he is unable to make a
 single
 meaningful objective question. Even if he is insulting
 individual people,
 the community and Debian (nothing works, why am I not
 surprised)! And at
 the end all the energy spent with him will be lost. People
 will get tired
 and he will leave crying that it is impossible to install
 Linux and
 Linux people are jerks.
 
 

After following his soap opera for what seems like an eternity, I can only 
conclude that he suffers from acute if not terminal PEBKAC. Still amusing but 
in the end what a waste of energy.

(I will likely now be added to the 'hit' list.  I also have the honor of the OP 
in a private email telling me he hopes I get cancer!.  Yup.  He's a real 
charmer!!)


-- 
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/1362201362.66539.yahoomailclas...@web163402.mail.gq1.yahoo.com



Re: I wish to advocate linux

2013-03-01 Thread Miles Fidelman

Go Linux wrote:

--- On Fri, 3/1/13, Joao Luis Meloni Assirati assir...@nonada.if.usp.br wrote:


From: Joao Luis Meloni Assirati assir...@nonada.if.usp.br
Subject: Re: I wish to advocate linux
To: Martin McCormick mar...@x.it.okstate.edu
Cc: debian-user@lists.debian.org
Date: Friday, March 1, 2013, 10:01 PM
  This guy managed to get
everybody in
this list working for him, even if he is unable to make a
single
meaningful objective question. Even if he is insulting
individual people,
the community and Debian (nothing works, why am I not
surprised)! And at
the end all the energy spent with him will be lost. People
will get tired
and he will leave crying that it is impossible to install
Linux and
Linux people are jerks.



After following his soap opera for what seems like an eternity, I can only 
conclude that he suffers from acute if not terminal PEBKAC. Still amusing but 
in the end what a waste of energy.

(I will likely now be added to the 'hit' list.  I also have the honor of the OP in a 
private email telling me he hopes I get cancer!.  Yup.  He's a real charmer!!)




I'm assuming this is him: www.linkedin.com/pub/mark-filipak/7/487/955 - 
it explains a lot.


--
In theory, there is no difference between theory and practice.
In practice, there is.    Yogi Berra


--
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/51318fcf.3070...@meetinghouse.net



Re: Moving from a proprietary OS - unnecessarily inful experience -- was [Re: I wish to advocate linux]

2013-03-01 Thread Chris Bannister
On Fri, Mar 01, 2013 at 08:34:57AM -0500, Miles Fidelman wrote:
 Fair enough, but... I have to say it
 
 Back in my day, we not only had to walk to school, uphill, in both
 directions, in the snow, but we also had to build our computers by
 hand, from TTL logic gates. :-)

http://www.youtube.com/watch?v=Xe1a1wHxTyo

-- 
If you're not careful, the newspapers will have you hating the people
who are being oppressed, and loving the people who are doing the 
oppressing. --- Malcolm X


-- 
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/20130302063233.GA9278@tal



Re: Moving from a proprietary OS - unnecessarily inful experience -- was [Re: I wish to advocate linux]

2013-03-01 Thread Chris Bannister
[Sorry, posted previous post too soon! :D]

On Fri, Mar 01, 2013 at 12:23:01PM -0600, Richard Owlett wrote:
 
 Fair enough, but... I have to say it
 
 Back in my day, we not only had to walk to school, uphill, in both
 directions, in the snow, but we also had to build our computers by
 hand, from TTL logic gates. :-)
 
 You had TTL logic gates? Boy, you were lucky! We were given relay

http://www.youtube.com/watch?v=Xe1a1wHxTyo

 switches from cast-off telephone equipment. And we had to buy our
 own electrodes and lemons to power the machine.
 
 new/modern/???  better ;/!

These days it is !=  :) (I think  was not equal to, was it?)

-- 
If you're not careful, the newspapers will have you hating the people
who are being oppressed, and loving the people who are doing the 
oppressing. --- Malcolm X


-- 
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/20130302063841.GB9278@tal



Re: I wish to advocate linux

2013-02-28 Thread Morel Bérenger

 I posit that your problem with Linux is YOU!

 What are you doing here? You obviously don't care about helping people.

You are wrong.
She is trying to help you to understand that your problem with linux is
located between your computer and your chair.
Well, but I suspect that, to reproduce the problem, you need to sit down
yourself there.

Anyway, thanks for allowing people to have fun in boring days :D


-- 
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/08a140c9245650cf65ffdc6ca7524113.squir...@www.sud-ouest.org



Re: I wish to advocate linux

2013-02-28 Thread Morel Bérenger
 Cities that switched from Microsoft to Linux, for their departments,
 switched back to Windows.

Not all. IIRC I've heard of Zurich, recently, said anew that it is
interesting to switch to linux because very, very cheaper.

And in France, policemen (at least one, affiliated to military) are using
Ubuntu in their desktops.

I am quite sure they are other counter examples, but I do not really take
care about worldwide adoption of linux. It exists, I can use it, and if
people ask me something, I reply. That's all and enough.

Then, when I think linux is a failure on desktops, I take a look at stupid
(they are based on frequency of browsers running with linux... so it is
not good numbers) statistics websites, and notice that even if the line is
very slow, it comes higher and higher. No matter the speed for me, the
important is not there.

My best way to advocate is to show an old computer to someone, and to say:
Tt is using the more recent version of distro and runs like a charm, so
I do not need to spend 500€ in a new computer.
And the best is that I have no maintenance on it, no viruses and alike.
I'm just a little sad that I can not use all recent games.


-- 
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/ed4d21b499501e9247c5809e0ad2dfd1.squir...@www.sud-ouest.org



Re: I wish to advocate linux

2013-02-28 Thread Morel Bérenger
Le Jeu 28 février 2013 1:04, Mark Filipak a écrit :
 On 2013/2/27 6:31 PM, Miles Fidelman wrote:

 Mark Filipak wrote:

 On 2013/2/27 11:18 AM, Miles Fidelman wrote:


 Hasn't even run it, apprently, or at least wrote in an earlier
 message But I don't run Linux.

 Now that's it in a nutshell, isn't it.  Seems to me that Mark is
 simply a troll (certainly not a debian-user)


 I'm not a troll, Miles.

 -snip-


 Which brings us back to the question of: if not trolling, what is your
 purpose here?

 Miles Fidelman


 I'm trying to get help, Miles. I've been lurking. This didn't start out
 as my thread. I wish to advocate linux is not my aim. I merely made a
 comment about Linux advocacy and got jumped on. Whether you think I
 deserved to get jumped on or not, I got many messages in short order
 attacking me. I guess I did hit a nerve.

 You insist on pointing out that mentally challenged people can install
 Debian. That's wonderful (a bit insulting too, don't you think?). I have
 not had that experience. My experience has been: I make (or buy) CDs. I
 boot them. I begin the installation. I'm asked a hundred times whether I
 want to install this program or that program. But I'm not at all prepared
 to choose because I don't know anything about Linux or the programs, so I
 choose to install them all. Then when I try to boot my new Linux
 installation, I get an error message that such--such program is missing
 and boot is terminating with a kernel panic or a failure code. This has
 happened many times. When I asked about this in Linux forums, I got
 answers that only a Linux guru would understand.

 Let me give you an example of the kind of insensitivity (or myopic
 stupidity) that seems to be the hallmark of the Linux community. In the
 Debian live page, dd is offered as the way to copy the ISO file to a USB
 stick. But the dd program offered only runs in Linux! What good is that
 to someone who is running Windows at the time? It's like Linux is in it's
 own world.

 I thought I was at a forum in which people would like to advocate for
 Linux and therefore would do what's needed to assure successful
 conversion from Windows to Linux, but instead I experience the same
 elitism and condescension I'd experienced at other Linux forums.

 If you can't see that, then you are part of the problem. I give up. I
 apparently will never run Linux because I'm too stupid.

Stupid, maybe not, but maybe too straight in your searches.
First of all, if you do not have enough computer knowledge, maybe debian
is not for you.
It is reputed as a distribution for advanced user, after all.

Burning a CD is not a problem, and I bet that even my mother would be able
to do it (and, trust me, her knowledge in the computer domain is very
low).
Take a look at that search:
http://www.google.fr/#output=searchq=windows+burning+isooq=windows+burning+iso

For USB, IIRC I have found quite quickly linux usb live creator. It is a
windows software, with an interface which could be used by anyone who
knows what is a file, an USB stick and... that's all.
Otherwise, following the documentation
(http://www.debian.org/releases/stable/amd64/ch04s03.html.en)
especially this section: 4.3.3. Manually copying files to the USB stick —
the flexible way  is doable also for a windows user.
In fact, for a non linux user, it is the easier way, since all commands
are portable:
_ partition is already FAT if you use windows, so no need to mkdosfs
_ syslinux is a portable tool
_ notepad exists to create a text file
_ and windows users are able to copy files on an usb stick quite easily
The only knowledge needed here is to be able to use a commandline, and
download syslinux. It is not for people who do not want to search
themselves, because of commandline, but it is not over complicated.

About your booting problem, the only moment I have kernel panics are when
I am trying to use a kernel I compiled myself, and my first attempts to
use Debian are 10 years old...
When I remember that installer (woody) I can really say you: now, Debian
is really easy to install for a windows user. Simply do an automated
installation, and most of stuff will be done for you.
But the only distros I have tried to install myself are Debian, Ubuntu,
backtrack, archlinux and gentoo.



-- 
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/43701048b4f0f9574c2392a4c06f2a98.squir...@www.sud-ouest.org



Re: I wish to advocate linux

2013-02-28 Thread Joe
On Wed, 27 Feb 2013 19:04:04 -0500
Mark Filipak markfilipak.li...@gmail.com wrote:


 
 Let me give you an example of the kind of insensitivity (or myopic
 stupidity) that seems to be the hallmark of the Linux community. In
 the Debian live page, dd is offered as the way to copy the ISO file
 to a USB stick. But the dd program offered only runs in Linux! What
 good is that to someone who is running Windows at the time? 

A Linux article that proposes the use of Linux (actually Unix) commands
and not Windows commands? Whatever next?

What would be the point, as few users of Windows even know there is a
command line, or how to reach it? (Most non-users of Windows know
there is a command line, but think it is still DOS 5.0. It isn't.)

Windows has plenty of GUI ISO-burning software, as I'm sure you are
aware. I think even Windows itself can do the job, now that optical
media are on the way out.

Why are you not annoyed that Windows has no built-in equivalent of dd?

-- 
Joe


-- 
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/20130228093629.2b77c...@jretrading.com



Re: I wish to advocate linux

2013-02-28 Thread Morel Bérenger

 what? That's absurd. The only people I know who have their OS installed
 at a shop are Apple users.

Sounds like an ideal country. In France, even if it is illegal, all
computers have an installed OS on them. And guess which one?

 Look, I asked for help. Then things got out of hand. Some Linux people
 seem to have a bad attitude.

Analyze yourself, please.


-- 
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/ad593db2fd4a5b7e0f2f6216038147c1.squir...@www.sud-ouest.org



Re: I wish to advocate linux

2013-02-28 Thread Chris Bannister
On Wed, Feb 27, 2013 at 07:07:02PM -0500, Mark Filipak wrote:
 On 2013/2/27 6:53 PM, Miles Fidelman wrote:
 
 First off... stop this bs of sending replies personally (or sending dups to 
 both the list and me).
 
 Why do you keep sending me messages that contain both email addresses? You 
 are CC'ing the list, not me.

Headers from Miles's post

-  To: debian-user debian-user@lists.debian.org
-  Subject: Re: I wish to advocate linux

Headers from Mark's post

-  To: Miles Fidelman mfidel...@meetinghouse.net
-  CC: debian-user debian-user@lists.debian.org
-  Subject: Re: I wish to advocate linux

 I build computers.

So you have full control over the choice of hardware which goes in your
machine?  Now that should make installation a whole lot easier!

If you want help, don't assume people can guess as to what your problems
are. So far your problem descriptions have been very vague. Ask a
specific question and you will get a specific answer.

I suggest you read:
http://www.catb.org/~esr/faqs/smart-questions.html

-- 
If you're not careful, the newspapers will have you hating the people
who are being oppressed, and loving the people who are doing the 
oppressing. --- Malcolm X


-- 
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/20130228094135.GA26791@tal



Re: I wish to advocate linux

2013-02-28 Thread Chris Bannister
On Wed, Feb 27, 2013 at 11:26:01PM -0700, Robert Holtzman wrote:
 On Wed, Feb 27, 2013 at 03:52:24PM -0500, Mark Filipak wrote:
  On 2013/2/27 3:45 PM, Nate Bargmann wrote:
  * On 2013 27 Feb 14:25 -0600, Mark Filipak wrote:
  
  What a nonsensical statement. I've never successfully installed any
  distribution of Linux.
  
  Not even on an empty hard drive on commodity x86 hardware?  I find this
  admission so absurd that I can't get my head around it.  Although, your
  definition of successful may be different than mine.  I define
  successful as the OS booting to a login prompt after installation,
  either GUI or character.
  
  The only result of my attempted installations has been cryptic error 
  messages and non-bootable disks.

Mmmm, could be trying to install the wrong architecture.

-- 
If you're not careful, the newspapers will have you hating the people
who are being oppressed, and loving the people who are doing the 
oppressing. --- Malcolm X


-- 
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/20130228101710.GA28312@tal



Re: I wish to advocate linux

2013-02-28 Thread Chris Bannister
[Please keep attributions, I presume you are not answering yourself!]

On Thu, Feb 28, 2013 at 10:39:09AM +0100, Morel Bérenger wrote:
 
  what? That's absurd. The only people I know who have their OS installed
  at a shop are Apple users.
 
 Sounds like an ideal country. In France, even if it is illegal, all
 computers have an installed OS on them. And guess which one?

have their OS installed at a shop != have an installed OS on them.

Think of having food cooked in front of you versus buying food already
cooked.

Sorry, for being pedantic.

-- 
If you're not careful, the newspapers will have you hating the people
who are being oppressed, and loving the people who are doing the 
oppressing. --- Malcolm X


-- 
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/20130228103255.GB28312@tal



Re: I wish to advocate linux

2013-02-28 Thread Brian
On Thu 28 Feb 2013 at 09:36:29 +, Joe wrote:

 On Wed, 27 Feb 2013 19:04:04 -0500
 Mark Filipak markfilipak.li...@gmail.com wrote:
 
 
  
  Let me give you an example of the kind of insensitivity (or myopic
  stupidity) that seems to be the hallmark of the Linux community. In
  the Debian live page, dd is offered as the way to copy the ISO file
  to a USB stick. But the dd program offered only runs in Linux! What
  good is that to someone who is running Windows at the time? 
 
 A Linux article that proposes the use of Linux (actually Unix) commands
 and not Windows commands? Whatever next?

I think Mark has made a fair point, but not in a fair way. He is
probably referring to

   http://www.debian.org/CD/faq/

which is not particularly nor exclusively aimed at Linux users. He (and
others) might wonder why there is substantial advice for users of
non-Linux OSs on writing an ISO image to a CD but nothing for writing to
a USB device.


-- 
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/20130228123745.GX14686@desktop



Re: I wish to advocate linux

2013-02-28 Thread Brian
On Wed 27 Feb 2013 at 20:01:02 -0500, Miles Fidelman wrote:

 Ralf Mardorf wrote:
 
 However, I recommend to install from a CD or DVD. Download the ISO, burn
 it with your preferred application for what OS ever and then install
 Linux.
 
 echo that - getting USB sticks to work as an install medium is a
 right royal pain

I'd recommend writing a Debian ISO to a USB stick every time. The
writing and booting from the device is a snap.


-- 
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/20130228124911.GY14686@desktop



Re: I wish to advocate linux

2013-02-28 Thread Martin McCormick
There was once a fellow on a list I belong to whose postings
were one tale of woe after another which is not that unusual for
those of us who tinker and work in technology. The trouble with
him was that it was all one big conspiracy against him and he
was just going to get out of the hobby of amateur radio all
together as nothing ever worked for him.

He never read about the how and why of things. His idea
of life was you borrow yourself in to the poor house, buy all
this neat stuff, demand accessible manuals, hook it all together
the way you think it goes and then complain when it blows up and
or just doesn't work.

Never once did I hear him ask why an antenna must be
built a certain way or how do the rest of you solve this or that problem.
It was all along the lines of I spent X Dollars for this or
that and it quit on me in a puff of smoke, bla bla bla.

List members told him about articles he could read,
suggested he contact somebody locally who could help show him
the ropes as to how to do these things right, etc.

Finally, I think everybody just gave up. He left the
list and I have no idea what happened but this present
discussion reminds me much of that very similar discussion. We
were all jerks and just out for ourselves.

In the 35 years I have been involved with modern
computing, my experience has been that if you show you are
making a good effort to help yourself, people will at least
point you at a good reading list and many times, they do a lot
more than the call of duty says they should do.

I know I certainly have not contributed anywhere near
what I have gotten from the community but the experience has
made me a life-long fan of open-source and all the flavors of
free Unix that have emerged in the last couple of decades. I
advocate Linux, FreeBSD and all the other variants because they
aren't owned by anyone person or company and can help everybody. 
How many other things in this world work that way? How many are
familiar with the One Laptop per Child organization? There
goal is to design and build laptop computers for 100 US Dollars
or less and set them up in under-developed countries with zero
infrastructure. The initial computers were powered by, you
guessed it, Linux because nobody had to pay money to do that.

The little computers are built stout and given to school
children to take home each night. The screen is the brightest
light source in the house and the word is that the kids take
excellent care of their computers. Very few have been lost due
to mishandling.

Martin


-- 
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/201302281421.r1selxie095...@x.it.okstate.edu



Re: I wish to advocate linux

2013-02-28 Thread Harvey Kelly
On 28 February 2013 14:21, Martin McCormick mar...@x.it.okstate.edu wrote:
 There was once a fellow on a list I belong to whose postings
 were one tale of woe after another...

Yes, this whole thread/tale is reminding me of when I first installed
a Linux system (SuSE 6.2, back in 1999). It took about 5 or 6 hours as
I had to refer to a very large manual (I always liked that SuSE
shipped with a very good and very large manual back in those days). I
wasn't a computer user at all (I'd just bought a computer, didn't want
Windows on it, so was trying this cool 'Linux' thing out - I'd used my
friend's Windows 95 machine a few times, but that was about it for
'computer knowledge'. (The book I think was removed from the boxset
when SuSE became just so easy to install.)

After getting stuck within the installation at 'mount points' (I seem
to remember after reading the manual that I created about 10
partitions(!) and had seperate partitions for /, /home, /usr,
/usr/local, /boot, /opt, /var and everything else) I ended up with a
desktop running KDE 1.1.

With zero (or very very little) computing knowledge/experience at all.

I don't understand why Mr. Filipak has not downloaded an iso (my
recommendation would be Linux Mint, either Cinnamon or MATE would be
fine), burnt that image to a disc, put that disc in his DVD drive and
installed (or at least run a live session) a Linux system. There seems
to be a lot of complaints but no specific problems.

On 25 February 2013 23:35, Mark Filipak markfilipak.li...@gmail.com wrote:
 Are you a fan of Shakespeare tragedies? I think Linux is a good subject.
 It's so hard to comment constructively without seeming to bitch. It's a
 tragedy.

No, it's not. It really isn't.

Please, for your own sake, go to Linux Mint's site, grab an iso and
try that installation. 99% of hardware is fully supported with Mint -
at least try that. If something goes wrong then tell us the specifics.

http://www.linuxmint.com/download.php

Atb,

H


-- 
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/caerryqircn6coqm_nzstjzatdc-u8wxvoacq0k4-t3xn47u...@mail.gmail.com



Re: I wish to advocate linux

2013-02-28 Thread Lisi Reisz
On Thursday 28 February 2013 14:21:59 Martin McCormick wrote:
 In the 35 years I have been involved with modern
 computing, my experience has been that if you show you are
 making a good effort to help yourself, people will at least
 point you at a good reading list and many times, they do a lot
 more than the call of duty says they should do.

:-)  

I find people on these lists generally outstandingly helpful and prepared to 
go to a lot of trouble to help out.

Smile, and the world smiles with you.  Cry, and you cry alone.

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/201302281505.06299.lisi.re...@gmail.com



Re: I wish to advocate linux

2013-02-28 Thread Kent West

On 02/27/2013 08:32 PM, Miles Fidelman wrote:
I don't think I've ever seen a live CD for either Windows or MacOS 
(well, the install DVD sort of is, but...).


BartPE (Windows). But it's not a full-blown system. Quite minimalistic. 
And of course, there's the licensing issues




--
Kent West*)))
http://kentwest.blogspot.com
Praise Yah! \o/



--
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/512f7934.7020...@acu.edu



Moving from a proprietary OS - unnecessarily inful experience -- was [Re: I wish to advocate linux]

2013-02-28 Thread Richard Owlett

Brian wrote:

On Thu 28 Feb 2013 at 09:36:29 +, Joe wrote:


On Wed, 27 Feb 2013 19:04:04 -0500
Mark Filipak markfilipak.li...@gmail.com wrote:




Let me give you an example of the kind of insensitivity (or myopic
stupidity) that seems to be the hallmark of the Linux community. In
the Debian live page, dd is offered as the way to copy the ISO file
to a USB stick. But the dd program offered only runs in Linux! What
good is that to someone who is running Windows at the time?


A Linux article that proposes the use of Linux (actually Unix) commands
and not Windows commands? Whatever next?


I think Mark has made a fair point, but not in a fair way. He is
probably referring to

http://www.debian.org/CD/faq/

which is not particularly nor exclusively aimed at Linux users. He (and
others) might wonder why there is substantial advice for users of
non-Linux OSs on writing an ISO image to a CD but nothing for writing to
a USB device.




I don't know if he was referring to that FAQ or not.
*HOWEVER*, as a senior citizen moving from Windows(tm) to 
Debian(tm?), I find the transition unnecessarily annoying.
In the main there is not much more than lip service given to 
easing the transition.


I lurk on several lists on lists.debian.org. There are 
currently threads on at least two lists  demonstrating that 
the problem is recognized and is being actively addressed.






 who has been computing {primarily application user, some 
programming} for over



--
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/512f7f3f.2080...@cloud85.net



Re: I wish to advocate linux

2013-02-28 Thread Helmut Wollmersdorfer



Am 28.02.2013 um 04:19 schrieb Ralf Mardorf:


We're using Linux for different reasons, but comparison to Microsoft  
and

Apple are useless.


If I want to do a well defined collection of tasks then a *can*  
compare the platforms.


Remark: I have experience with IBM 360/370+ (DOS, MVS, VM), AS400,  
PDP-8, PDP-11, AIX, MSDOS 2.11+, WinMobile, Win 1 to 7, MacOS X  
(Desktop  Server), iOS, Linux (various distros), various routers.


Office and Groupware: If you work in a company using MS-office  
heavily, then you have nearly no choice. If you get MS Office  
documents often you need MS Office installed (on a virtual or real  
machine - Win or Mac OS - running MS Office).


Special software or hardware: You need the platform where the software  
or drivers are running good enough. E.g. I use Win 7 for ABBY  
Finereader (OCR).


Image processing, pre-press etc.: If you work as professional in this  
field you will need all the Adobe software running only on Win or Mac.  
Here Mac is the best joice.


Development: It depends on the target system. As a Perl developer  
developing for Linux,  I used Win, Mac and Linux. Eclipse runs on all  
three platforms. Compared with Linux Win and Mac have a lot of  
disadvantages in this case. That's why I know it mostly this way in  
large projects: Work with e.g. Eclipse on Win or Mac directly on a  
Samba-share of a Linux server, SVN and Git also on a Linux server.


Server: It depends. For the typical web/mail server IMHO Linux and  
especially Debian is the best choice (high stability and low  
administration). OS X server is horrible (I have to adminster three of  
them here) for such tasks: it freezes sometimes, hard to diagnose,  
hard to configure special components on the console. For inhouse tasks  
like fileserver, ldap etc. OS X and Win are o.k. or maybe better for  
most users, as long as the problems can be solved within the clicky- 
clicky surface.


Desktop: For the mainstream users without special requirements all  
three (Win, Mac and Linux) can be used. IMHO Gnome 2 is easy to use  
and most things are supported out of the box with a default Debian  
install. Mac is very stable and fast if you keep updated with the  
payware (bucks for bugs), but is boring in case of (very seldom)  
problems.


Mobile Devices: I had two Win-Phones in the last 5 years and still use  
one. Win-Mobile is crap. A few months ago I [1] decided for iPhone 5  
(iOS) against the Android world after a lot of googling and reading.


[1] I hate Apple a little bit, have to work on an iMac in the office,  
and know from experience why I hate it.


Don't forget needs of the tablet/touch users: They see the look and  
feel of the hardware, and use Apps. Which operating system (iOS,  
Android, ChromeOS, MozillaOS) runs the whole thing is nearly  
unimportant.


Helmut Wollmersdorfer


--
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/8ab8da7b-1d48-4807-8554-7b182bb63...@fixpunkt.de



Re: I wish to advocate linux

2013-02-28 Thread Richard Owlett

Harvey Kelly wrote:

[SNIP]
Please, for your own sake, go to Linux Mint's site, grab an iso and
try that installation. 99% of hardware is fully supported with Mint -
at least try that. If something goes wrong then tell us the specifics.

http://www.linuxmint.com/download.php



As a long time computer _user_ moving from Windows to *nix, 
I would recommend carrying that advice one step further.


I downloaded as many LiveCD's as I had time for. They were 
based on several distros and came with a variety of desktop 
environments.
It demonstrated the breadth of what can be done. Debian 
seems to be the best fit to ME. I've not settled on a 
desktop environment yet. My investigation show I may not be 
looking for a DE per se but a windows manager. If I had not 
expermented with multiple flavors, I would have ended up 
with a very poor impression of *nix in general.




--
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/512f8626.20...@cloud85.net



Re: Moving from a proprietary OS - unnecessarily inful experience -- was [Re: I wish to advocate linux]

2013-02-28 Thread Stefan Monnier
 I don't know if he was referring to that FAQ or not.
 *HOWEVER*, as a senior citizen moving from Windows(tm) to Debian(tm?),
 I find the transition unnecessarily annoying.

I used http://goodbye-microsoft.org once and it went very smoothly.
AFAICT this site doesn't exist any more, but I have the impression that
the same is available as http://people.debian.org/~rmh/goodbye-microsoft/
and as goodbye-microsoft.com.

Not sure how it relates to goodbye-windows.com, which seem to offer
a similar service.


Stefan


-- 
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/jwvtxowie58.fsf-monnier+gmane.linux.debian.u...@gnu.org



Re: I wish to advocate linux

2013-02-28 Thread Harvey Kelly
On 28 February 2013 16:30, Richard Owlett rowl...@cloud85.net wrote:
 Harvey Kelly wrote:
 [SNIP]
 Please, for your own sake, go to Linux Mint's site, grab an iso and
 try that installation. 99% of hardware is fully supported with Mint -
 at least try that. If something goes wrong then tell us the specifics.
 http://www.linuxmint.com/download.php
 As a long time computer _user_ moving from Windows to *nix, I would
 recommend carrying that advice one step further.

Yes, good point. I started with SuSE in 1999, switched to Debian
around 2001/2002, then had a spell with Slackware, then Ubuntu, and
back to Debian - whilst trying out Fedora, Arch and Mint at times -
and Debian is the best fit for me, but I wouldn't state any distro is
categorically 'best'.

I only stated Mint as it's easy to install, polished, supports loads
of hardware, and *probably* a good fit for a beginner (although if
someone said 'no, Fuduntu is best for someone starting out!' I
wouldn't go on arguing the point.

H


-- 
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/CAErRyQgn2ff-kLfJUEW9g8Eyo94WK=yon-zormsqbnszvt4...@mail.gmail.com



Re: I wish to advocate linux

2013-02-28 Thread Hugo Vanwoerkom

Lisi Reisz wrote:

On Thursday 28 February 2013 14:21:59 Martin McCormick wrote:

In the 35 years I have been involved with modern
computing, my experience has been that if you show you are
making a good effort to help yourself, people will at least
point you at a good reading list and many times, they do a lot
more than the call of duty says they should do.


:-)  

I find people on these lists generally outstandingly helpful and prepared to 
go to a lot of trouble to help out.


Smile, and the world smiles with you.  Cry, and you cry alone.



Indeed.

Hugo


--
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/kgo3m4$qr9$1...@ger.gmane.org



Re: I wish to advocate linux

2013-02-28 Thread Tom H
On Wed, Feb 27, 2013 at 9:32 PM, Miles Fidelman
mfidel...@meetinghouse.net wrote:
 Joao Luis Meloni Assirati wrote:

 So here we have it. You are trying to run a Linux distribution from USB
 stick. Somehing very exotic, not for beginers. Now I dare you to prove
 that it is easier (or even possible) to do this with Windows. If you are
 complaing that doing in Linux something that is impossible in Windows and
 alleges that it is easier to do this thing in Windows is easier than in
 Linux, you are...

 Come to think of it, that's a good point - and even relevant to Linux
 advocacy. I don't think I've ever seen a live CD for either Windows or
 MacOS (well, the install DVD sort of is, but...). And I sure as heck don't
 think you can get Windows or MacOS to run off a USB stick. On the other
 hand, I CAN carry a full copy of Linux (or BSD) on my keyring - for some
 applications that's kind of useful.

You can boot OS X from a USB stick!

You can probably boot Windows too but you might need to buy a DVD and license...


-- 
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/CAOdo=Sw7ZRuZsxf9Chyc-=2tv3tt9exux3btn+pr6d1oxfw...@mail.gmail.com



Re: I wish to advocate linux

2013-02-28 Thread Nate Bargmann
Judging by some reviews I find online, a goodly number of radio amateurs
seem capable of breaking an anvil with a rubber mallet.

- Nate

-- 

The optimist proclaims that we live in the best of all
possible worlds.  The pessimist fears this is true.

Ham radio, Linux, bikes, and more: http://www.n0nb.us


-- 
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/20130228180228.gz31...@n0nb.us



Re: I wish to advocate linux

2013-02-28 Thread Miles Fidelman

Tom H wrote:

On Wed, Feb 27, 2013 at 9:32 PM, Miles Fidelman
mfidel...@meetinghouse.net wrote:

Joao Luis Meloni Assirati wrote:

So here we have it. You are trying to run a Linux distribution from USB
stick. Somehing very exotic, not for beginers. Now I dare you to prove
that it is easier (or even possible) to do this with Windows. If you are
complaing that doing in Linux something that is impossible in Windows and
alleges that it is easier to do this thing in Windows is easier than in
Linux, you are...

Come to think of it, that's a good point - and even relevant to Linux
advocacy. I don't think I've ever seen a live CD for either Windows or
MacOS (well, the install DVD sort of is, but...). And I sure as heck don't
think you can get Windows or MacOS to run off a USB stick. On the other
hand, I CAN carry a full copy of Linux (or BSD) on my keyring - for some
applications that's kind of useful.

You can boot OS X from a USB stick!


Really? Can you point me at build directions?

Miles

--
In theory, there is no difference between theory and practice.
In practice, there is.    Yogi Berra


--
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/512f9dfa.9020...@meetinghouse.net



Re: I wish to advocate linux

2013-02-28 Thread Tom H
On Thu, Feb 28, 2013 at 7:37 AM, Brian a...@cityscape.co.uk wrote:
 On Thu 28 Feb 2013 at 09:36:29 +, Joe wrote:
 On Wed, 27 Feb 2013 19:04:04 -0500
 Mark Filipak markfilipak.li...@gmail.com wrote:

 Let me give you an example of the kind of insensitivity (or myopic
 stupidity) that seems to be the hallmark of the Linux community. In
 the Debian live page, dd is offered as the way to copy the ISO file
 to a USB stick. But the dd program offered only runs in Linux! What
 good is that to someone who is running Windows at the time?

 A Linux article that proposes the use of Linux (actually Unix) commands
 and not Windows commands? Whatever next?

 I think Mark has made a fair point, but not in a fair way. He is
 probably referring to

http://www.debian.org/CD/faq/

 which is not particularly nor exclusively aimed at Linux users. He (and
 others) might wonder why there is substantial advice for users of
 non-Linux OSs on writing an ISO image to a CD but nothing for writing to
 a USB device.

Linux isn't as myopic as people are claiming in this thread.

Ubuntu points users to this page to create a flash installer:

http://www.pendrivelinux.com/universal-usb-installer-easy-as-1-2-3/

And Fedora points users to a Windows version of liveusb-creator here:

http://fedorahosted.org/liveusb-creator/

Debian, unfortunately, only gives instructions to burn to a CD/DVD via
Windows on:
http://www.debian.org/CD/faq/#record-windows


-- 
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/CAOdo=swcpjyqwsx5-vxpjzkzqodl29jznqau-i2qedv3jde...@mail.gmail.com



Re: Moving from a proprietary OS - unnecessarily inful experience -- was [Re: I wish to advocate linux]

2013-02-28 Thread Tom H
On Thu, Feb 28, 2013 at 11:01 AM, Richard Owlett rowl...@cloud85.net wrote:
 Brian wrote:
 On Thu 28 Feb 2013 at 09:36:29 +, Joe wrote:
 On Wed, 27 Feb 2013 19:04:04 -0500
 Mark Filipak markfilipak.li...@gmail.com wrote:

 Let me give you an example of the kind of insensitivity (or myopic
 stupidity) that seems to be the hallmark of the Linux community. In
 the Debian live page, dd is offered as the way to copy the ISO file
 to a USB stick. But the dd program offered only runs in Linux! What
 good is that to someone who is running Windows at the time?

 A Linux article that proposes the use of Linux (actually Unix) commands
 and not Windows commands? Whatever next?

 I think Mark has made a fair point, but not in a fair way. He is
 probably referring to

 http://www.debian.org/CD/faq/

 which is not particularly nor exclusively aimed at Linux users. He (and
 others) might wonder why there is substantial advice for users of
 non-Linux OSs on writing an ISO image to a CD but nothing for writing to
 a USB device.

 I don't know if he was referring to that FAQ or not.
 *HOWEVER*, as a senior citizen moving from Windows(tm) to Debian(tm?), I
 find the transition unnecessarily annoying.
 In the main there is not much more than lip service given to easing the
 transition.

 I lurk on several lists on lists.debian.org. There are currently threads on
 at least two lists  demonstrating that the problem is recognized and is
 being actively addressed.

I'm sorry but your case is completely atypical.

Rather than download an iso and install from it, you want to,
variously, do a minimal install and build it up, do a preseeded
install, do this, do that, with this option, with that option, etc...

It's your right but please don't have us believe that your
requirements and desires are those of the average person who wants to
install Linux. Most users will just launch the installer and click
through. Done!


-- 
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/CAOdo=sxxmie38ehxpnggg40epip6yl0kqwror-hpdqok857...@mail.gmail.com



Re: I wish to advocate linux

2013-02-28 Thread Tom H
On Thu, Feb 28, 2013 at 1:12 PM, Miles Fidelman
mfidel...@meetinghouse.net wrote:
 Tom H wrote:
 On Wed, Feb 27, 2013 at 9:32 PM, Miles Fidelman
 mfidel...@meetinghouse.net wrote:

 Come to think of it, that's a good point - and even relevant to Linux
 advocacy. I don't think I've ever seen a live CD for either Windows or
 MacOS (well, the install DVD sort of is, but...). And I sure as heck
 don't
 think you can get Windows or MacOS to run off a USB stick. On the other
 hand, I CAN carry a full copy of Linux (or BSD) on my keyring - for some
 applications that's kind of useful.

 You can boot OS X from a USB stick!

 Really? Can you point me at build directions?

It's so simple, I doubt that there's any howto anywhere.

You just point the OS X installer to the USB disk!


-- 
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/CAOdo=sz8natmrismppn0b5bqcvm_uc8-sezxe19wof8dp4u...@mail.gmail.com



Re: I wish to advocate linux

2013-02-28 Thread Lisi Reisz
On Thursday 28 February 2013 18:12:14 Tom H wrote:
 Linux isn't as myopic as people are claiming in this thread.

 Ubuntu points users to this page to create a flash installer:

 http://www.pendrivelinux.com/universal-usb-installer-easy-as-1-2-3/

 And Fedora points users to a Windows version of liveusb-creator here:

 http://fedorahosted.org/liveusb-creator/

 Debian, unfortunately, only gives instructions to burn to a CD/DVD via
 Windows on:
 http://www.debian.org/CD/faq/#record-windows

And there is always PCLinuxOS, which was originally designed expressly to make 
the transition to Linux easy for Windows users.

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/201302281854.49467.lisi.re...@gmail.com



Re: Moving from a proprietary OS - unnecessarily inful experience -- was [Re: I wish to advocate linux]

2013-02-28 Thread Lisi Reisz
On Thursday 28 February 2013 16:01:03 Richard Owlett wrote:
  as a senior citizen moving from Windows(tm) to
 Debian(tm?),

Why is your seniority relevant?

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/201302281856.56615.lisi.re...@gmail.com



Re: I wish to advocate linux

2013-02-28 Thread Doug

On 02/28/2013 01:54 PM, Lisi Reisz wrote:

On Thursday 28 February 2013 18:12:14 Tom H wrote:

Linux isn't as myopic as people are claiming in this thread.

Ubuntu points users to this page to create a flash installer:

http://www.pendrivelinux.com/universal-usb-installer-easy-as-1-2-3/

And Fedora points users to a Windows version of liveusb-creator here:

http://fedorahosted.org/liveusb-creator/

Debian, unfortunately, only gives instructions to burn to a CD/DVD via
Windows on:
http://www.debian.org/CD/faq/#record-windows

And there is always PCLinuxOS, which was originally designed expressly to make
the transition to Linux easy for Windows users.

Lisi



Yes, Thank Heaven for PCLOS, and KDE. There are so many other systems
that seem to be designed specifically to confound those users who have
been using the system that Xerox invented close to 40 years ago.
It's as if they put the clutch pedal on the right! Or the high notes on the
left side of the piano keyboard! Now of course, MS has done the same
with their goofy Win8, but there's no good reason for Linux to do so.

--doug


--
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/512fab97.5000...@optonline.net



Re: I wish to advocate linux

2013-02-28 Thread Tom H
On Thu, Feb 28, 2013 at 1:54 PM, Lisi Reisz lisi.re...@gmail.com wrote:
 On Thursday 28 February 2013 18:12:14 Tom H wrote:

 Linux isn't as myopic as people are claiming in this thread.

 Ubuntu points users to this page to create a flash installer:

 http://www.pendrivelinux.com/universal-usb-installer-easy-as-1-2-3/

 And Fedora points users to a Windows version of liveusb-creator here:

 http://fedorahosted.org/liveusb-creator/

 Debian, unfortunately, only gives instructions to burn to a CD/DVD via
 Windows on:
 http://www.debian.org/CD/faq/#record-windows

 And there is always PCLinuxOS, which was originally designed expressly to make
 the transition to Linux easy for Windows users.

I wasn't making an exhaustive list of distributions. I just check
three and found their instructions.

I've just checked PCLinuxOS and there aren't any CD/DVD/Stick-creation
instructions:

http://www.pclinuxos.com/?page_id=10

I can only access a cached wiki page at the moment and it only has CD
burning instructions.


-- 
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/CAOdo=SxY5wLmtgHWQxgb=idplxzbsdgmbjk+7fc2jt+dcfy...@mail.gmail.com



Re: Moving from a proprietary OS - unnecessarily inful experience -- was [Re: I wish to advocate linux]

2013-02-28 Thread Richard Owlett

Lisi Reisz wrote:

On Thursday 28 February 2013 16:01:03 Richard Owlett wrote:

  as a senior citizen moving from Windows(tm) to
Debian(tm?),


Why is your seniority relevant?



Just trying to convey that I've enough real-world experience 
 to have a valid point of reference without heavy handily 
touting that my intro to computers was when the common input 
device was an 026 and core memory involved literal iron. 
I've been chided before ;)




--
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/512fb077.9050...@cloud85.net



Re: I wish to advocate linux

2013-02-28 Thread Doug

On 02/28/2013 02:12 PM, Tom H wrote:

On Thu, Feb 28, 2013 at 1:54 PM, Lisi Reisz lisi.re...@gmail.com wrote:

On Thursday 28 February 2013 18:12:14 Tom H wrote:

Linux isn't as myopic as people are claiming in this thread.

Ubuntu points users to this page to create a flash installer:

http://www.pendrivelinux.com/universal-usb-installer-easy-as-1-2-3/

And Fedora points users to a Windows version of liveusb-creator here:

http://fedorahosted.org/liveusb-creator/

Debian, unfortunately, only gives instructions to burn to a CD/DVD via
Windows on:
http://www.debian.org/CD/faq/#record-windows

And there is always PCLinuxOS, which was originally designed expressly to make
the transition to Linux easy for Windows users.

I wasn't making an exhaustive list of distributions. I just check
three and found their instructions.

I've just checked PCLinuxOS and there aren't any CD/DVD/Stick-creation
instructions:

http://www.pclinuxos.com/?page_id=10

I can only access a cached wiki page at the moment and it only has CD
burning instructions.



The KDE version requires DVD--it's too big for CD. I know you can make
a flash-drive install from an installed system, but I don't know how to
make one from the website.  I will ask in the Forum.

--doug


--
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/512fc29e.5090...@optonline.net



Re: I wish to advocate linux --pclos from flash

2013-02-28 Thread Doug

On 02/28/2013 02:12 PM, Tom H wrote:

On Thu, Feb 28, 2013 at 1:54 PM, Lisi Reisz lisi.re...@gmail.com wrote:

On Thursday 28 February 2013 18:12:14 Tom H wrote:

Linux isn't as myopic as people are claiming in this thread.

Ubuntu points users to this page to create a flash installer:

http://www.pendrivelinux.com/universal-usb-installer-easy-as-1-2-3/

And Fedora points users to a Windows version of liveusb-creator here:

http://fedorahosted.org/liveusb-creator/

Debian, unfortunately, only gives instructions to burn to a CD/DVD via
Windows on:
http://www.debian.org/CD/faq/#record-windows

And there is always PCLinuxOS, which was originally designed expressly to make
the transition to Linux easy for Windows users.

I wasn't making an exhaustive list of distributions. I just check
three and found their instructions.

I've just checked PCLinuxOS and there aren't any CD/DVD/Stick-creation
instructions:

http://www.pclinuxos.com/?page_id=10

I can only access a cached wiki page at the moment and it only has CD
burning instructions.



There are instructions for making a boot flash-drive here:

http://www.pclinuxos.com/forum/index.php/topic,80917.0.html


--
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/512fc39b.9080...@optonline.net



Re: Moving from a proprietary OS - unnecessarily inful experience -- was [Re: I wish to advocate linux]

2013-02-28 Thread Thomas D. Dean

On 02/28/13 11:31, Richard Owlett wrote:

Lisi Reisz wrote:

On Thursday 28 February 2013 16:01:03 Richard Owlett wrote:

  as a senior citizen moving from Windows(tm) to
Debian(tm?),


Why is your seniority relevant?



Just trying to convey that I've enough real-world experience  to have a
valid point of reference without heavy handily touting that my intro to
computers was when the common input device was an 026 and core memory
involved literal iron. I've been chided before ;)




112737 deposit??


--
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/512fc3b2.8070...@speakeasy.org



Re: I wish to advocate linux

2013-02-28 Thread Miles Fidelman

Tom H wrote:

On Thu, Feb 28, 2013 at 1:12 PM, Miles Fidelman
mfidel...@meetinghouse.net wrote:

Tom H wrote:

On Wed, Feb 27, 2013 at 9:32 PM, Miles Fidelman
mfidel...@meetinghouse.net wrote:

Come to think of it, that's a good point - and even relevant to Linux
advocacy. I don't think I've ever seen a live CD for either Windows or
MacOS (well, the install DVD sort of is, but...). And I sure as heck
don't
think you can get Windows or MacOS to run off a USB stick. On the other
hand, I CAN carry a full copy of Linux (or BSD) on my keyring - for some
applications that's kind of useful.

You can boot OS X from a USB stick!

Really? Can you point me at build directions?

It's so simple, I doubt that there's any howto anywhere.

You just point the OS X installer to the USB disk!



Doooh (sound of hand slapping head). that makes sense.

Of course we're talking a pretty big USB disk; probably at the high end 
of what you can do with a solid state keychain USB stick.  Also, still 
tied to Mac hardware.  Probably can't, for example, walk into a library 
and boot one of the machines from MacOnUSB, the way you can from a small 
live version of Linux.


Miles




--
In theory, there is no difference between theory and practice.
In practice, there is.    Yogi Berra


--
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/512fc6db.9080...@meetinghouse.net



Re: Moving from a proprietary OS - unnecessarily inful experience -- was [Re: I wish to advocate linux]

2013-02-28 Thread Miles Fidelman



On 02/28/13 11:31, Richard Owlett wrote:

Lisi Reisz wrote:

On Thursday 28 February 2013 16:01:03 Richard Owlett wrote:

  as a senior citizen moving from Windows(tm) to
Debian(tm?),


Why is your seniority relevant?



Just trying to convey that I've enough real-world experience  to have a
valid point of reference without heavy handily touting that my intro to
computers was when the common input device was an 026 and core memory
involved literal iron. I've been chided before ;)


Pardon me for asking, but what's an 026?

I go pretty far back myself, to the days of front panel toggle switches, 
paper tape, and ASR33 teletypes (and Frieden Flexowriter's for that 
matter) - but 026 is a new one on me.


Miles



--
In theory, there is no difference between theory and practice.
In practice, there is.    Yogi Berra


--
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/512fc79a.8040...@meetinghouse.net



Re: Moving from a proprietary OS - unnecessarily inful experience -- was [Re: I wish to advocate linux]

2013-02-28 Thread Thomas D. Dean

On 02/28/13 13:09, Miles Fidelman wrote:



On 02/28/13 11:31, Richard Owlett wrote:

Lisi Reisz wrote:

On Thursday 28 February 2013 16:01:03 Richard Owlett wrote:

  as a senior citizen moving from Windows(tm) to
Debian(tm?),


Why is your seniority relevant?



Just trying to convey that I've enough real-world experience  to have a
valid point of reference without heavy handily touting that my intro to
computers was when the common input device was an 026 and core memory
involved literal iron. I've been chided before ;)


Pardon me for asking, but what's an 026?

I go pretty far back myself, to the days of front panel toggle switches,
paper tape, and ASR33 teletypes (and Frieden Flexowriter's for that
matter) - but 026 is a new one on me.

Miles




KSR Model 26?


--
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/512fca52.1070...@speakeasy.org



Re: Moving from a proprietary OS - unnecessarily inful experience -- was [Re: I wish to advocate linux]

2013-02-28 Thread Richard Owlett

Thomas D. Dean wrote:

On 02/28/13 13:09, Miles Fidelman wrote:



On 02/28/13 11:31, Richard Owlett wrote:

Lisi Reisz wrote:

On Thursday 28 February 2013 16:01:03 Richard Owlett
wrote:

  as a senior citizen moving from Windows(tm) to
Debian(tm?),


Why is your seniority relevant?



Just trying to convey that I've enough real-world
experience  to have a
valid point of reference without heavy handily touting
that my intro to
computers was when the common input device was an 026
and core memory
involved literal iron. I've been chided before ;)


Pardon me for asking, but what's an 026?

I go pretty far back myself, to the days of front panel
toggle switches,
paper tape, and ASR33 teletypes (and Frieden Flexowriter's
for that
matter) - but 026 is a new one on me.

Miles




KSR Model 26?



Nope ;)
It was the standard IBM keypunch. I spent many hours 
muttering at it in 1961.




--
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/512fce3e.50...@cloud85.net



Re: Moving from a proprietary OS - unnecessarily inful experience -- was [Re: I wish to advocate linux]

2013-02-28 Thread Miles Fidelman

Richard Owlett wrote:


Nope ;)
It was the standard IBM keypunch. I spent many hours muttering at it 
in 1961.


Ok... definitely a bit before my time.  Used keypunches my freshman year 
at college (1971) - in a course that took us from IBM 360 batch, to 
360/TSO, to Multics - but after that, punch cards were primarily a nice 
(and free) source of notecard :-)


Ahh the good old days.

Cheers,

Miles




--
In theory, there is no difference between theory and practice.
In practice, there is.    Yogi Berra


--
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/512fcf71.7040...@meetinghouse.net



  1   2   >