Monday, November 30, 2009

Re: [BLUG] uptime no reset at 1024

I stand corrected.

It might be interesting to see how 'uptime(1)' gets the information.

A man of times(2) shows the return value (a clock_t) was the time when
the system was booted for 2.4 series kernels, but that's no longer the
case for 2.6 kernels.

Cheers,
Steven Black

On Mon, Nov 30, 2009 at 05:12:03PM +0000, Mark Krenz wrote:
>
> Your Occam's Razor smack down has been canceled out by evidence.
>
> Linux kernels USED TO wrap around their uptime at 497 days. This was
> due to how the uptime was stored in the kernel. As a measument of
> jiffies. Jiffies used to be set to 100 per second, but can now be
> adjusted to even 1000 per second. This is what that 100Hz, 250Hz, 1000Hz
> setting is in the kernel config. Thus the time stored in the uptime
> used to be limited to 2^32 seconds / 100jiffies / 86400 sec/day = 497days
>
> I noticed once that the shell server at Kiva, which is still running
> on the 2.2 kernel, wrapped around its uptime at 497 days like this.
>
>
> Anyways, I had heard offhand comments that the number of days might
> wrap around at 1024 days, so I was curious if something might happen at
> 1024 days. It wasn't really based on the above, it was just based on
> heresay and anecdotal evidence.
>
> After all, I found that the load average itself wraps around at
> 1024.0 on 2.4 kernels at least. And yes, I did see a machine reach a 1
> minute load average of over 15000. I had to determine this by using some
> logs I had that showed that it was wrapping around. The machine in
> question wasn't really using that much CPU, it was load that was based
> on deadlocking samba processes that were trying to run 'df' on a machine
> with hung NFS mounts.
>
> Mark
>
> On Mon, Nov 30, 2009 at 04:43:58PM GMT, Steven Black [blacks@indiana.edu] said the following:
> > Let's think realisticly. (Or, perhaps, provide an Occam's Razor smack
> > down.)
> >
> > The uptime is a time, so it is likely stored in a time_t. This means it
> > would normally be subject to the same year 2038 Unix Epoch wrap provided
> > the system used 32-bit time_t values.
> >
> > However, it is stored as a relative time, so the that the beginning of
> > this particular epoch was when the machine was started up. This means it
> > wouldn't be expected to wrap until (2038 - 1970 =) 68 years from when
> > you started it up. And again, this is only if it is a 32-bit machine
> > with a 32-bit time_t.
> >
> > Cheers,
> > Steven Black
> >
> > On Mon, Nov 30, 2009 at 01:49:10PM +0000, Mark Krenz wrote:
> > >
> > > # w
> > > 08:48:11 up 1028 days, 0 min, 6 users, load average: 0.03, 0.19, 0.17
> > >
> > > I was wondering if the days would wrap around at 1024 days. I guess
> > > they don't.
> > >
> > >
> > > --
> > > Mark Krenz
> > > Bloomington Linux Users Group
> > > http://www.bloomingtonlinux.org/
> >
> > _______________________________________________
> > BLUG mailing list
> > BLUG@linuxfan.com
> > http://mailman.cs.indiana.edu/mailman/listinfo/blug
> >
>
> --
> Mark Krenz
> Bloomington Linux Users Group
> http://www.bloomingtonlinux.org/
> _______________________________________________
> BLUG mailing list
> BLUG@linuxfan.com
> http://mailman.cs.indiana.edu/mailman/listinfo/blug

--
Cheers,
Steven Black

_______________________________________________
BLUG mailing list
BLUG@linuxfan.com
http://mailman.cs.indiana.edu/mailman/listinfo/blug

Re: [BLUG] uptime no reset at 1024

Your Occam's Razor smack down has been canceled out by evidence.

Linux kernels USED TO wrap around their uptime at 497 days. This was
due to how the uptime was stored in the kernel. As a measument of
jiffies. Jiffies used to be set to 100 per second, but can now be
adjusted to even 1000 per second. This is what that 100Hz, 250Hz, 1000Hz
setting is in the kernel config. Thus the time stored in the uptime
used to be limited to 2^32 seconds / 100jiffies / 86400 sec/day = 497days

I noticed once that the shell server at Kiva, which is still running
on the 2.2 kernel, wrapped around its uptime at 497 days like this.


Anyways, I had heard offhand comments that the number of days might
wrap around at 1024 days, so I was curious if something might happen at
1024 days. It wasn't really based on the above, it was just based on
heresay and anecdotal evidence.

After all, I found that the load average itself wraps around at
1024.0 on 2.4 kernels at least. And yes, I did see a machine reach a 1
minute load average of over 15000. I had to determine this by using some
logs I had that showed that it was wrapping around. The machine in
question wasn't really using that much CPU, it was load that was based
on deadlocking samba processes that were trying to run 'df' on a machine
with hung NFS mounts.

Mark

On Mon, Nov 30, 2009 at 04:43:58PM GMT, Steven Black [blacks@indiana.edu] said the following:
> Let's think realisticly. (Or, perhaps, provide an Occam's Razor smack
> down.)
>
> The uptime is a time, so it is likely stored in a time_t. This means it
> would normally be subject to the same year 2038 Unix Epoch wrap provided
> the system used 32-bit time_t values.
>
> However, it is stored as a relative time, so the that the beginning of
> this particular epoch was when the machine was started up. This means it
> wouldn't be expected to wrap until (2038 - 1970 =) 68 years from when
> you started it up. And again, this is only if it is a 32-bit machine
> with a 32-bit time_t.
>
> Cheers,
> Steven Black
>
> On Mon, Nov 30, 2009 at 01:49:10PM +0000, Mark Krenz wrote:
> >
> > # w
> > 08:48:11 up 1028 days, 0 min, 6 users, load average: 0.03, 0.19, 0.17
> >
> > I was wondering if the days would wrap around at 1024 days. I guess
> > they don't.
> >
> >
> > --
> > Mark Krenz
> > Bloomington Linux Users Group
> > http://www.bloomingtonlinux.org/
>
> _______________________________________________
> BLUG mailing list
> BLUG@linuxfan.com
> http://mailman.cs.indiana.edu/mailman/listinfo/blug
>

--
Mark Krenz
Bloomington Linux Users Group
http://www.bloomingtonlinux.org/
_______________________________________________
BLUG mailing list
BLUG@linuxfan.com
http://mailman.cs.indiana.edu/mailman/listinfo/blug

Re: [BLUG] uptime no reset at 1024

Let's think realisticly. (Or, perhaps, provide an Occam's Razor smack
down.)

The uptime is a time, so it is likely stored in a time_t. This means it
would normally be subject to the same year 2038 Unix Epoch wrap provided
the system used 32-bit time_t values.

However, it is stored as a relative time, so the that the beginning of
this particular epoch was when the machine was started up. This means it
wouldn't be expected to wrap until (2038 - 1970 =) 68 years from when
you started it up. And again, this is only if it is a 32-bit machine
with a 32-bit time_t.

Cheers,
Steven Black

On Mon, Nov 30, 2009 at 01:49:10PM +0000, Mark Krenz wrote:
>
> # w
> 08:48:11 up 1028 days, 0 min, 6 users, load average: 0.03, 0.19, 0.17
>
> I was wondering if the days would wrap around at 1024 days. I guess
> they don't.
>
>
> --
> Mark Krenz
> Bloomington Linux Users Group
> http://www.bloomingtonlinux.org/

_______________________________________________
BLUG mailing list
BLUG@linuxfan.com
http://mailman.cs.indiana.edu/mailman/listinfo/blug

[BLUG] uptime no reset at 1024

# w
08:48:11 up 1028 days, 0 min, 6 users, load average: 0.03, 0.19, 0.17

I was wondering if the days would wrap around at 1024 days. I guess
they don't.


--
Mark Krenz
Bloomington Linux Users Group
http://www.bloomingtonlinux.org/
_______________________________________________
BLUG mailing list
BLUG@linuxfan.com
http://mailman.cs.indiana.edu/mailman/listinfo/blug

Saturday, November 28, 2009

[BLUG] [rescue] FS: NeXT Cube

I'm selling a NeXT Cube I got in a palette of stuff. I've already got a
turbo color slab so I really don't need a cube :) I'm located in
Bloomington, IN and I'm not going to ship this!

NeXT Cube N1000A
P/N: 2115
S/N: ABA0003988

* 68040 @ 25MHz
* 64M RAM
* Floppy
* Broken 5.25 FH HD. Spins up then down. I'll supply a 2G HH Drive
* Non-ADB Keyboard
* Non-ADB Mouse -- damaged. It looks like someone let it sit in glue or
a solvent. The ball still rolls, but I can't open it to check to see if
the rollers work.
* Monochrome monitor. Readable, but like all monitors of that vintage
its a bit faded.

I'm asking $150

Brian
_______________________________________________
rescue list - http://www.sunhelp.org/mailman/listinfo/rescue

_______________________________________________
BLUG mailing list
BLUG@linuxfan.com
http://mailman.cs.indiana.edu/mailman/listinfo/blug

[BLUG] FS: NeXT Cube

I'm selling a NeXT Cube I got in a palette of stuff. I've already got a
turbo color slab so I really don't need a cube :) I'm located in
Bloomington, IN and I'm not going to ship this!

NeXT Cube N1000A
P/N: 2115
S/N: ABA0003988

* 68040 @ 25MHz
* 64M RAM
* Floppy
* Broken 5.25 FH HD. Spins up then down. I'll supply a 2G HH Drive
* Non-ADB Keyboard
* Non-ADB Mouse -- damaged. It looks like someone let it sit in glue or
a solvent. The ball still rolls, but I can't open it to check to see if
the rollers work.
* Monochrome monitor. Readable, but like all monitors of that vintage
its a bit faded.

I'm asking $150

Brian


_______________________________________________
BLUG mailing list
BLUG@linuxfan.com
http://mailman.cs.indiana.edu/mailman/listinfo/blug

Friday, November 27, 2009

[BLUG] [OT] 36" Sony SD TV for free

Ok, sorry for the spam, but its not really spam since I'll give away
the TV to anyone on this list. Its a BLUG list special deal because you
are all so great.

I bought an HDTV and now I have my old standard def TV that I need to
get rid of. It still works great, its just 480 resolution.

The specific model is Sony KV-36FS10 36" Wega Trinitron TV. This is
one of the nice Sony TVs with a flat screen. Its not a flat panel TV,
but it does have a flat screen. I bought it in 1999 for $1300 and its
been a great TV. It still works and can be used for anything that has
RCA, S-video or Component output, which is pretty much everything.

I'd keep it, but I just don't have room for it. I tried to sell it on
craigslist for $100 and even $25. But I guess that's too much. :-/

So anyone on the BLUG list is welcome to have it for free, provided
that you come over and pick it up yourself and with someone else to help
you.

If you are interested, please write me directly.

--
Mark Krenz
Bloomington Linux Users Group
http://www.bloomingtonlinux.org/
_______________________________________________
BLUG mailing list
BLUG@linuxfan.com
http://mailman.cs.indiana.edu/mailman/listinfo/blug

Thursday, November 26, 2009

[BLUG] [OT] Need 2-3 IDE hard drives

If anybody has any old IDE 3.5 hard drives (20G+) laying around, I could
use a couple for some charity jobs I'm doing over the weekend. Could
pick up this evening or any other time that's convenient.

--
Mark Warner
MEPIS Linux
Registered Linux User #415318

_______________________________________________
BLUG mailing list
BLUG@linuxfan.com
http://mailman.cs.indiana.edu/mailman/listinfo/blug

Monday, November 23, 2009

[BLUG] Linux sysadmin positions

The company I work for during the day is hiring a couple linux system
administrators. If you are interested, please e-mail me and I will send
you details. Sorry, I can't send the details to the list.

Remember, the list default is to auto-reply to the list, so you'll have
to address the e-mail to me specifically. ;-)

--
Mark Krenz
Bloomington Linux Users Group
http://www.bloomingtonlinux.org/
_______________________________________________
BLUG mailing list
BLUG@linuxfan.com
http://mailman.cs.indiana.edu/mailman/listinfo/blug

Friday, November 20, 2009

Re: [BLUG] ZFS: the future of computing?

Some of the features you're talking about are clearly aspects of
OpenSolaris. For instance, the automounting stuff? That's not a
filesystem-layer activity. That's an OS layer activity that interacts
with various filesystems. (For instance, the ext2 family of filesystems
(including ext3 and ext4) have the capacity to store their mount
point in the metadata, and as such it would be possible to write an
automounter that mounts them without an fstab file.)

ZFS does have a lot of features, it is true.
http://en.wikipedia.org/wiki/ZFS

I suspect that a number of the "attention to fine detail" aspects of it
may well be integrated deeply within the OS itself -- and not inherant
aspects of ZFS.

The whole "incompatible with the GPL as used in the Linux kernel" thing
makes it less interesting to me.

It's like saying BeOS has really great (that is low) audio latency.
It does me no good, as I'm not going to actually use BeOS. I may as
well wait for a free software guy to adapt features in to a system I
can actually use. (Unless, say, they can't do that because they're all
patented...)

I have more interest in the Hurd than I do in OpenSolaris. Jumping
between Linux distributions is minor work compared to going between
entirely different operating systems. (If I get the Debian distribution
of the Hurd the only big thing different would be the kernel.)

Side note: Even though the Hurd isn't done yet, the upcoming release of
Debian (codename: Squeeze) will include kFreeBSD as a core supported
architecture. (For the folks unaware, it'll be Debian but with the
FreeBSD kernel instead of the Linux kernel.)

Solaris, in particular, is like an odd cousin with funny coloured hair
and a weird accent when compared to Linux. They grew up in totally
different places, and different underlying decisions were made so long
ago that neither family even remembers that it was once a decision.

Cheers,
Steven Black

On Thu, Nov 19, 2009 at 09:06:57PM -0500, Joe Auty wrote:
> I've been testing and evaluating ZFS over the last several days, and
> I've been thoroughly impressed. ZFS is one of those products where there
> is so much attention to little details that it is literally a joy to
> use. This is Sun's masterpiece!
>
> I'm only testing ZFS in an OpenSolaris VM for now so I can't report
> really back on performance and resource consumption, but from what I can
> gather there are a lot of people who consider ZFS to be highly stable,
> some companies and universities using it on production servers, and as
> you know it is the default file system in OpenSolaris. That being said,
> here is why I've been so impressed with it...
>
> ZFS seems to sort of combine LVM and hardware RAID into a single
> product. It even includes a mini-NFS and iSCSI client for very easy file
> system sharing, it will automount all of your file sytems at boot so
> that you don't have to much around with the Solaris equivalent to fstab,
> and the interface is very thoughtful and easy-to-use with so many little
> thoughtful features and little touches that make life easy. In fact, it
> is so straight forward that it would be very easy to wrap a
> configuration GUI around, I think, and hence the subject of this message...
>
> One of the biggest problems with consumer PCs are the fact that the
> machine is dependent on a single disk which are prone to going bad.
> Given the availability of high capacity 2.5" SATA disks and Flash
> increasing in capacity and reducing in size constantly, isn't it only a
> matter of time before it makes sense to ship computers (even laptops)
> with multiple disks? It is so incredibly easy to setup a mirror of your
> filesystem in ZFS, and with a hot spare in your storage pool you can
> automatically set it up to failover and notify you. Perhaps someday
> storage in a PC will be as simple as it is with a digital camera or
> something? I don't see how this sort of thing would be that far off...
>
> The other incredibly nice feature of ZFS that is a huge net gain for
> almost all of us is its snapshot ability. Snapshots are block level,
> meaning that whenever a file is changed you don't need to keep a
> complete copy of that file, a mess of hard links and all of that sort of
> stuff you'd find in a solution such as Apple's Time Machine or many of
> the backup snapshot solutions we concoct with shell scripts. Taking
> snapshots is *incredibly fast*, incredibly easy to manage, and you can
> browse these snapshots without having to create new inodes and hard
> links - these are, as I understand it, simply very low level references
> to files, but not files themselves. Still, you can copy individual files
> from snapshots as you would copy any file, or restore an entire file
> system from a snapshot. This is so easy to do and takes up so little
> disk space that not only is this a great way to do backups, but it is
> also a great way to create yourself an "oh shit" safety net should you
> want to back out of an update that has gone bad, etc.
>
> I could go on about the many features and nice aspects to using ZFS,
> features like self healing, zpool iostat, etc. It's pretty cool stuff,
> but I'll leave my gushing for another time. Like I said, I'm just
> speaking to the features here...
>
> Still, I wanted to see what you guys thought about the future of modern
> file systems such as ZFS? I realize that it will be a long time before
> BTRFS is ready, perhaps even longer for this sort of thing to make its
> way to OS X and/or Windows, but now that the bar as been set I'm sure it
> is only a matter of time before the copycats emerge. However things end
> up, who owns what, licenses, product names, etc. This seems like a very
> big deal to me. It is definitely changing the way I think of my data,
> and I'm surprised how easy it is to setup a storage appliance like the
> one I'm testing.
>
> OpenSolaris is actually pretty nice. There are a few proprietary Sun
> things included, but a lot of it seems pretty familiar to me - bash,
> Gnome, etc. I would say that if you are looking for a storage solution
> that OpenSolaris shouldn't really be a deterrent. FreeBSD 8 is in RC3,
> and it will include full ZFS support (previous versions include partial
> support), so this is another option.
>
> Any other ZFS users/enthusiasts here?
>
>
>
>
>
> --
> Joe Auty
> NetMusician: web publishing software for musicians
> http://www.netmusician.org
> joe@netmusician.org
> _______________________________________________
> BLUG mailing list
> BLUG@linuxfan.com
> http://mailman.cs.indiana.edu/mailman/listinfo/blug

_______________________________________________
BLUG mailing list
BLUG@linuxfan.com
http://mailman.cs.indiana.edu/mailman/listinfo/blug

Thursday, November 19, 2009

[BLUG] ZFS: the future of computing?

I've been testing and evaluating ZFS over the last several days, and
I've been thoroughly impressed. ZFS is one of those products where there
is so much attention to little details that it is literally a joy to
use. This is Sun's masterpiece!

I'm only testing ZFS in an OpenSolaris VM for now so I can't report
really back on performance and resource consumption, but from what I can
gather there are a lot of people who consider ZFS to be highly stable,
some companies and universities using it on production servers, and as
you know it is the default file system in OpenSolaris. That being said,
here is why I've been so impressed with it...

ZFS seems to sort of combine LVM and hardware RAID into a single
product. It even includes a mini-NFS and iSCSI client for very easy file
system sharing, it will automount all of your file sytems at boot so
that you don't have to much around with the Solaris equivalent to fstab,
and the interface is very thoughtful and easy-to-use with so many little
thoughtful features and little touches that make life easy. In fact, it
is so straight forward that it would be very easy to wrap a
configuration GUI around, I think, and hence the subject of this message...

One of the biggest problems with consumer PCs are the fact that the
machine is dependent on a single disk which are prone to going bad.
Given the availability of high capacity 2.5" SATA disks and Flash
increasing in capacity and reducing in size constantly, isn't it only a
matter of time before it makes sense to ship computers (even laptops)
with multiple disks? It is so incredibly easy to setup a mirror of your
filesystem in ZFS, and with a hot spare in your storage pool you can
automatically set it up to failover and notify you. Perhaps someday
storage in a PC will be as simple as it is with a digital camera or
something? I don't see how this sort of thing would be that far off...

The other incredibly nice feature of ZFS that is a huge net gain for
almost all of us is its snapshot ability. Snapshots are block level,
meaning that whenever a file is changed you don't need to keep a
complete copy of that file, a mess of hard links and all of that sort of
stuff you'd find in a solution such as Apple's Time Machine or many of
the backup snapshot solutions we concoct with shell scripts. Taking
snapshots is *incredibly fast*, incredibly easy to manage, and you can
browse these snapshots without having to create new inodes and hard
links - these are, as I understand it, simply very low level references
to files, but not files themselves. Still, you can copy individual files
from snapshots as you would copy any file, or restore an entire file
system from a snapshot. This is so easy to do and takes up so little
disk space that not only is this a great way to do backups, but it is
also a great way to create yourself an "oh shit" safety net should you
want to back out of an update that has gone bad, etc.

I could go on about the many features and nice aspects to using ZFS,
features like self healing, zpool iostat, etc. It's pretty cool stuff,
but I'll leave my gushing for another time. Like I said, I'm just
speaking to the features here...

Still, I wanted to see what you guys thought about the future of modern
file systems such as ZFS? I realize that it will be a long time before
BTRFS is ready, perhaps even longer for this sort of thing to make its
way to OS X and/or Windows, but now that the bar as been set I'm sure it
is only a matter of time before the copycats emerge. However things end
up, who owns what, licenses, product names, etc. This seems like a very
big deal to me. It is definitely changing the way I think of my data,
and I'm surprised how easy it is to setup a storage appliance like the
one I'm testing.

OpenSolaris is actually pretty nice. There are a few proprietary Sun
things included, but a lot of it seems pretty familiar to me - bash,
Gnome, etc. I would say that if you are looking for a storage solution
that OpenSolaris shouldn't really be a deterrent. FreeBSD 8 is in RC3,
and it will include full ZFS support (previous versions include partial
support), so this is another option.

Any other ZFS users/enthusiasts here?

--
Joe Auty
NetMusician: web publishing software for musicians
http://www.netmusician.org
joe@netmusician.org
_______________________________________________
BLUG mailing list
BLUG@linuxfan.com
http://mailman.cs.indiana.edu/mailman/listinfo/blug

Tuesday, November 17, 2009

Re: [BLUG] My Ubuntu/Linux bitch

On Tue, Nov 17, 2009 at 08:32:29AM -0500, jim marple wrote:
> Yes I did i am distro hopper try most of them. The problem stems from the
> type of celeron used the 701 4g's use the old modified p4 moblie (p3
> updated) the 900's problems are the same if you get one that was intended
> for european market it is a old celery not a new one. Ones with the newer
> i think its a 353 will be fine. Only reason i even figured this out was
> taking the things apart to see what actual chips were inside.
>
> Jim marple

Jim,

Are you familiar with /proc/cpuinfo and lspci ?

Learning to read the information provided by those tools can unlock a
world of diagnostic goodness. When I encounter unknown hardware the
first thing I try is booting from a Linux LiveCD and running those two
commands.

/proc/cpuinfo will tell you the "stepping" for a CPU, as well as flag a
number of CPU idiosyncrasies. If you know how to read the information,
you can find out if it is an old Celeron or a newer one.

Cheers,
Steven Black

_______________________________________________
BLUG mailing list
BLUG@linuxfan.com
http://mailman.cs.indiana.edu/mailman/listinfo/blug

Re: [BLUG] My Ubuntu/Linux bitch

Yes I did i am distro hopper try most of them. The problem stems from the type of celeron used the 701 4g's use the old modified p4 moblie (p3 updated) the 900's problems are the same if you get one that was intended for european market it is a old celery not a new one. Ones with the newer i think its a 353 will be fine. Only reason i even figured this out was taking the things apart to see what actual chips were inside.


Jim marple


> Date: Sun, 15 Nov 2009 11:05:51 -0500
> From: presgas@gmail.com
> To: blug@cs.indiana.edu
> Subject: Re: [BLUG] My Ubuntu/Linux bitch
>
> -----BEGIN PGP SIGNED MESSAGE-----
> Hash: SHA1
>
> Jim,
>
> Did you try the Ubu 9.10 netbook remix? I was using the alpha builds on
> my eee 900 (Celery processor) and they worked quite nicely.
>
>
>
> On Sat, 14 Nov 2009, jim marple wrote:
>
> > Date: Sat, 14 Nov 2009 22:14:04 -0500
> > From: jim marple <jimmarple@hotmail.com>
> > Reply-To: Bloomington LINUX Users Group <blug@cs.indiana.edu>
> > To: blug@cs.indiana.edu
> > Subject: Re: [BLUG] My Ubuntu/Linux bitch
> >
> >
> > Just for some info ubuntu 9.10 will not work correctly on a eeepc 701 4g and some 900 & certain 900a's (all Celeron's) without major tweaking.
> > The overclocking and acpi utilities in 9.10 are targeted for the atom eeepc.
> >
> >
> > The array.org kernel has most of the hard stuff already compiled into it. You should look at eeebuntu distro for that version of the eeepc.
> >
> >
> > proud owner of a 701 4g, 900a(atom version) and 1005hab.
> >
> >
> > jim marple
> >
> > _________________________________________________________________
> > Windows 7: I wanted simpler, now it's simpler. I'm a rock star.
> > http://www.microsoft.com/Windows/windows-7/default.aspx?h=myidea?ocid=PID24727::T:WLMTAGL:ON:WL:en-US:WWL_WIN_myidea:112009
>
> - ---Robert Freeman-Day
> - ---------------
> I would really like you to be on my side,
> but the side you show me isn't what I had in mind.
>
> - -Judybats
> GPG Public Key:
> http:keyserver.ubuntu.com:11371/pks/lookup?op=get&search=0xBA9DF9ED3E4C7D36
>
> -----BEGIN PGP SIGNATURE-----
> Version: GnuPG v1.4.9 (GNU/Linux)
>
> iEYEARECAAYFAksAJt8ACgkQup357T5MfTbl0gCguKLtnty0ZzV3b5mR+v9m4li3
> PpkAn1Dn7OnBBMzg8OFzn+Jc2GHrTzfd
> =yUC7
> -----END PGP SIGNATURE-----
> _______________________________________________
> BLUG mailing list
> BLUG@linuxfan.com
> http://mailman.cs.indiana.edu/mailman/listinfo/blug


Hotmail: Trusted email with Microsoft's powerful SPAM protection. Sign up now.

Monday, November 16, 2009

Re: [BLUG] My Ubuntu/Linux bitch

Hey there,

For each given system, I would say that installing most software most of
the time just works, provided that you learn what you need to do. Even a
fairly novice user can learn to build SlackBuilds, and they only have to
do that when a prebuilt package does not already exist. It's not much more
work than anything else. Dragging and Dropping in Mac, Installer Wizards
on Windows, and Package Managers on Linux machines are all fairly easy.
When things work the way they are supposed to, it's fairly
straightforward on any system. Removing software can be more hairy on
some than others, but most users don't care about that as much.

The problem isn't in the perfect situation, but rather the case where
things break. They will, especially when installing software. Debian
faithful can argue all day long that this shouldn't happen on the stable
platform, but the truth is: the normal desktop user isn't going to be
running Debian stable, and certainly isn't going to be content with the
normal software installed in a Debian repository (it's either too out of
date, or they want something they saw somewhere else). Even if they can
manage to stay within the repositories, bugs are bound to happen when
running the unstable versions, and when that happens, no matter what OS
you are using, it takes more than the novice user to figure out what to
do. Many people end up learning a thing or two about their OS and learn
how to fix them, but as soon as you move to a new OS, you have to
relearn this stuff.

I don't know of any way to fix this so that everyone is happy. The
Windows solution is usually to provide a few different installers, so
one of them will likely succeed. The Mac solution is to go into the
package contents of an App file and figure out what's going wrong,
assuming that you don't already get some support from your application
provider. The Debian Package manager solution is to hopefully limit this
problem by having huge, well tested repositories, so that they don't
every "get out of the safe zone." The Slackware solution is to make the
package process as simple as possible so it is easy to fix. The solution
with RPMs is usually to find a new RPM from some other place. :-)

None of these solutions is going to work for everyone. I don't know if
there is a solution that works for everyone.

--On Monday, November 16, 2009 05:53:03 PM -0500 Mark Warner
<markwarner1954@att.net> wrote:

> As my experience is limited to mostly apt/Synaptic distros, I'd venture
> to say that installing software is far *easier* for a Linux user than a
> Windows user... as long as you can break them of the habit of trying to
> download an installer and running it from the desktop. :-)


_______________________________________________
BLUG mailing list
BLUG@linuxfan.com
http://mailman.cs.indiana.edu/mailman/listinfo/blug

Re: [BLUG] My Ubuntu/Linux bitch

On Mon, Nov 16, 2009 at 04:54:58PM GMT, Mark Krenz [mark@slugbug.org] said the following:
>
> But there are still some things that you have to do from the
> terminal in OS X. Unless someone knows how to mount a samba filesystem
> through the GUI (without installing some 3rd party app).
>

And I solved it myself simply by searching the web for Mac OS X samba
and found out that there is a simple way to do is from the finder.
Go -> Connect to Server and insert smb://server/share into the server
field.

Under Gnome, its Places -> Connect to server, then select Windows
Share in service type and then insert the information in the fields
provided.

Pretty easy on both systems.

--
Mark Krenz
Bloomington Linux Users Group
http://www.bloomingtonlinux.org/
_______________________________________________
BLUG mailing list
BLUG@linuxfan.com
http://mailman.cs.indiana.edu/mailman/listinfo/blug

Re: [BLUG] My Ubuntu/Linux bitch

Aaron W. Hsu wrote:
> Mark Warner wrote:
>>
>> That presumes, of course, that you *are* able to install on the hardware
>> at hand, but does *not* presume that the user is the one doing the
>> installing. I dare say the people I/we are referring to wouldn't be able
>> to install Windows cleanly either, especially in a situation where
>> drivers weren't available natively in the Win OS.
>
> Indeed, Slackware is amazingly user-friendly if you let the user begin
> his experience at the same point where most people begin their
> experiences: at a pre-installed, ready to run box with the system
> already installed. The only slightly tricky part is installing software,
> which is still tricky no matter what OS you use.

As my experience is limited to mostly apt/Synaptic distros, I'd venture
to say that installing software is far *easier* for a Linux user than a
Windows user... as long as you can break them of the habit of trying to
download an installer and running it from the desktop. :-)

--
Mark Warner
MEPIS Linux
Registered Linux User #415318

_______________________________________________
BLUG mailing list
BLUG@linuxfan.com
http://mailman.cs.indiana.edu/mailman/listinfo/blug

Re: [BLUG] My Ubuntu/Linux bitch

Barry Schatz wrote:
> Mark Warner wrote:
>> Mark Krenz wrote:
>>>
>>> Sometimes after I upgrade to a new version of Gnome, I login thinking
>>> "Wow, this is gonna be cool, I can't wait to see how different it looks"
>>> and then I login and think, hmmmm, it looks about the same. ;-)
>>
>> I envy you Gnomies in that regard. I'm not looking forward to making the
>> leap to KDE 4.
>
> By the time you make the switch, KDE4 will be ready for you.

That's what I'm counting on. Warren Woodford is nothing if not anal
about stability and "solidity". He's been working on his deployment of
KDE 4.x for some time, and from what I understand is only now beginning
to get it nailed down. As has always been the case with his releases
(with one notable exception that I won't bother going into detail
about), I fully expect it to be "ready" when he pulls the trigger.

Whether *I* am ready is another question altogether.

--
Mark Warner
MEPIS Linux
Registered Linux User #415318

_______________________________________________
BLUG mailing list
BLUG@linuxfan.com
http://mailman.cs.indiana.edu/mailman/listinfo/blug

Re: [BLUG] My Ubuntu/Linux bitch

Mark Warner wrote:
> Mark Krenz wrote:
>
>>
>> Sometimes after I upgrade to a new version of Gnome, I login thinking
>> "Wow, this is gonna be cool, I can't wait to see how different it looks"
>> and then I login and think, hmmmm, it looks about the same. ;-)
>>
>
> I envy you Gnomies in that regard. I'm not looking forward to making the
> leap to KDE 4.
>
>
By the time you make the switch, KDE4 will be ready for you. They made a
nasty mistake with 4.0.0, but they codenamed it "will eat your children"
for a reason. I have nothing but praise for the 4.3.x series, and 4.4
will have even more to love.
> Then again, if I was using Windows, it would be W2K.
>
At work, I dual book WinXP and Win7. I have both themed to look like
Win2K. By avoiding the fancy bling and empty features I have avoided the
Microsoft tithe (when you have to reinstall the OS because it's slow or
infected) for 2 years and counting.

-Barry
_______________________________________________
BLUG mailing list
BLUG@linuxfan.com
http://mailman.cs.indiana.edu/mailman/listinfo/blug

Re: [BLUG] My Ubuntu/Linux bitch

Aaron W. Hsu wrote:
> Mark Warner wrote:
>>
>> I'm not looking forward to making the
>> leap to KDE 4.
>
> The leap to KDE 4 may be great, but KDE 4 is actually a pretty good
> Desktop Environment, IMO.

So I'm told. It's been a while since I last took a look at it. Between
my aversion to anything totally new and different and where KDE was at
the time, I wasn't impressed. I'm hoping that by the time my distro of
choice leaves v3.5 behind, I and it (KDE) will be ready.

--
Mark Warner
_______________________________________________
BLUG mailing list
BLUG@linuxfan.com
http://mailman.cs.indiana.edu/mailman/listinfo/blug

Re: [BLUG] My Ubuntu/Linux bitch

On Mon, Nov 16, 2009 at 03:06:23PM -0500, Mark Warner wrote:
> Mark Krenz wrote:
> > Sometimes after I upgrade to a new version of Gnome, I login thinking
> > "Wow, this is gonna be cool, I can't wait to see how different it looks"
> > and then I login and think, hmmmm, it looks about the same. ;-)
>
> I envy you Gnomies in that regard. I'm not looking forward to making the
> leap to KDE 4.

I'm looking forward to KDE 4 settling down. By "settling down" I mean
being that all applications are at feature-parity with their KDE 3.5
equivalents plus being as stable as the 3.5 line.

Though, as I've said before, I really like Phonon. It works in an easy
to understand, easy to use way *and* (more importantly) the way it works
is how I want it to work.

The SVG support in KDE4 is really nice, particularly for the games.
Note, though, that SVG support is old hat for GNOME. It was missing
functionality in KDE 3.5.

> Then again, if I was using Windows, it would be W2K.

New or unfamiliar users like big flashy changes. These appear to be
clear reasons why X is better (or frequently just different) than Y.
Experienced users on the other hand, tend to be far less fond of big
radical changes -- particularly when the big changes do not clearly make
things better for the way they want to use the system.

--
Cheers,
Steven Black

_______________________________________________
BLUG mailing list
BLUG@linuxfan.com
http://mailman.cs.indiana.edu/mailman/listinfo/blug

Re: [BLUG] My Ubuntu/Linux bitch

The leap to KDE 4 may be great, but KDE 4 is actually a pretty good
Desktop Environment, IMO.

Aaron W. Hsu

--On Monday, November 16, 2009 03:06:23 PM -0500 Mark Warner
<markwarner1954@att.net> wrote:

> I'm not looking forward to making the
> leap to KDE 4.


_______________________________________________
BLUG mailing list
BLUG@linuxfan.com
http://mailman.cs.indiana.edu/mailman/listinfo/blug

Re: [BLUG] My Ubuntu/Linux bitch

Mark Krenz wrote:
>
> Sometimes after I upgrade to a new version of Gnome, I login thinking
> "Wow, this is gonna be cool, I can't wait to see how different it looks"
> and then I login and think, hmmmm, it looks about the same. ;-)

I envy you Gnomies in that regard. I'm not looking forward to making the
leap to KDE 4.

Then again, if I was using Windows, it would be W2K.

--
Mark Warner
_______________________________________________
BLUG mailing list
BLUG@linuxfan.com
http://mailman.cs.indiana.edu/mailman/listinfo/blug

Re: [BLUG] My Ubuntu/Linux bitch

Mark Krenz wrote:
On Mon, Nov 16, 2009 at 07:02:29PM GMT, Joe Auty [joe@netmusician.org] said the following:   
 My real gripe here is the regression.     
   Regression happens in software.  Linux and Ubuntu didn't invent the word regression. That word was used in medicine and probably even applied to computers long before Linus was even born.    Again, all OSes and Applications are victims of this.  Some more than others. Sometimes a development process is flawed and you get regression every other version.  For instance, I remember the original version of RedHat we would see a bug come up every other version and our theory at Kiva on it was that they had two development teams at Redhat working on two different major versions.    And there have been several instances of OSes that were major mistakes.    Windows Vista   Windows ME   RedHat 8   Maybe Ubuntu 9.10 falls into this category.   I know there are more but can't think of them right now.    It happens.  Its unfortunate when people jump into an operating system at one of these points and get the wrong impression of it. Its equally unfortunate when someone gets an OS that turns out to be great (Windows 7), but don't know what hell they are in for in the next version    
It definitely happens, but it's simultaneously frustrating when the issues are this major and fundamental and not something obscure that would only affect a small population of users.

It is satisfying feeling a sense of progress and improvement being made when one upgrades from one OS to a newer version of that OS. It is deflating when one feels that they have actually made their system worse by the upgrade.

I guess my experience is unique though because I've never suffered through any of the OS upgrades you have listed above :)  This is uncharted territory for me!

On a completely personal note, as much as I have a serious love/hate relationship with Apple, I've come to realize that I'd much rather spend my time working on my servers or programming than messing around with my desktop. I truly appreciate Apple for delivering a desktop environment I can be productive on as per this criteria.


   
Not with these sorts of problems, no. Grandma and Grandpa might be able to use KDE or Gnome if everything was setup for them already and working beautifully and they learned things by rote, but troubleshooting these sorts of problems? No chance in hell...They'll probably have to live with some minor annoyances as well. Understanding the GUI? It depends on what they do with their computers, I guess.     
  I often here this argument about learning things by rote and its funny because things have been more consistent on open source desktops and have lasted longer than on Windows. Almost every version of Windows looks different and puts icons in different places.    Sometimes after I upgrade to a new version of Gnome, I login thinking "Wow, this is gonna be cool, I can't wait to see how different it looks" and then I login and think, hmmmm, it looks about the same. ;-)    


--
Joe Auty
NetMusician: web publishing software for musicians
http://www.netmusician.org
joe@netmusician.org

Re: [BLUG] My Ubuntu/Linux bitch

On Mon, Nov 16, 2009 at 07:02:29PM GMT, Joe Auty [joe@netmusician.org] said the following:
> My real gripe here is the regression.

Regression happens in software. Linux and Ubuntu didn't invent the
word regression. That word was used in medicine and probably even
applied to computers long before Linus was even born.

Again, all OSes and Applications are victims of this. Some more than
others. Sometimes a development process is flawed and you get regression
every other version. For instance, I remember the original version of
RedHat we would see a bug come up every other version and our theory at
Kiva on it was that they had two development teams at Redhat working on
two different major versions.

And there have been several instances of OSes that were major
mistakes.

Windows Vista
Windows ME
RedHat 8
Maybe Ubuntu 9.10 falls into this category.
I know there are more but can't think of them right now.

It happens. Its unfortunate when people jump into an operating system
at one of these points and get the wrong impression of it. Its
equally unfortunate when someone gets an OS that turns out to be great
(Windows 7), but don't know what hell they are in for in the next
version

> Not with these sorts of problems, no. Grandma and Grandpa might be able
> to use KDE or Gnome if everything was setup for them already and working
> beautifully and they learned things by rote, but troubleshooting these
> sorts of problems? No chance in hell...They'll probably have to live
> with some minor annoyances as well. Understanding the GUI? It depends on
> what they do with their computers, I guess.

I often here this argument about learning things by rote and its funny
because things have been more consistent on open source desktops and
have lasted longer than on Windows. Almost every version of Windows
looks different and puts icons in different places.

Sometimes after I upgrade to a new version of Gnome, I login thinking
"Wow, this is gonna be cool, I can't wait to see how different it looks"
and then I login and think, hmmmm, it looks about the same. ;-)

--
Mark Krenz
Bloomington Linux Users Group
http://www.bloomingtonlinux.org/
_______________________________________________
BLUG mailing list
BLUG@linuxfan.com
http://mailman.cs.indiana.edu/mailman/listinfo/blug

Re: [BLUG] My Ubuntu/Linux bitch

Mark Krenz wrote:
On Mon, Nov 16, 2009 at 06:12:57PM GMT, Joe Auty [joe@netmusician.org] said the following:   
         
Yes, but you are an uber geek :)     
   Thank you, but no.  I'm only a geek in the respect that I do a lot of computer stuff.  I'm not a "kernel developer" level geek that eats and breathes binary.  I enjoy assembling a computer, but I don't really care about writing drivers and delving into the deep level modules, drivers and heavy stuff.  My goal is to do stuff with my computer, not do stuff for it.    I think some people think that I do something special when I setup my computer to get it working, but not really.  Seriously, my installation of Ubuntu or whatever other distribution is pretty standard and I haven't done anything special to get sound, video or networking working. It just works.    There is one thing that I do do[1] though and that's make sure that I buy hardware that is compatible with Linux.  Mac has the same issue where people think they can just go out and buy any piece of hardware they want and it should work, but it doesn't because.  Mac is a bit better because some stores have Mac specific sections for hardware.     
Which is what makes my problems particularly disappointing, as we're talking about my ethernet controller built into my motherboard and USB audio, both of which were working flawlessly in Jaunty. My real gripe here is the regression.


   
ourselves, but for the masses. Linux is very far away from being consumable by the masses, at least using Ubuntu as a metric... See monitor management, getting sound to work, video, etc.. Then, you have the whole category of usability which is a little hit and miss, in my opinion.     
  In the long term, Ubuntu has been a big step forward in getting hardware working.  I have had much better luck on Ubuntu than on any other distribution.  Although it could just be a coincidence and some hardware that I had suddenly had kernel drivers. Nevertheless, prior to Ubuntu, I had these hardware problems that had to be resolved by doing something special.    o HP laserjet printers and some printers in general didn't work.   o Nvidia and ATI cards both required doing a lot of extra stuff on the      command line to get the commercial driver installed.   o Wireless configuration on a laptop was much more difficult.    o Installing Flash and Java installed and working with your browser   o Better GUI tools for system management.   At least this is the way I saw things happen.    
I'm in the same boat in terms of my Nvidia driver, and I obtained an Nvidia video card because I knew it would work better in Linux than an ATI one. I can't complain about problems in this category over the last few releases of Ubuntu though.

   
Consider yourself lucky. I'm struggling with kernel errors such as "NETDEV WATCHDOG: eth0 (via-rhine): transmit queue 0 timed out" that render my ethernet useless, and "Clocksource tsc unstable (delta = -285503362 ns)", neither of which Grandma has a fighting chance of figuring out.  Both of these are new to Ubuntu 9.10 for me, so I don't necessarily fault Linux as a whole for this     
   All OSes usually have problems when a new version is released, sometimes they are major. I almost never upgrade right away. This is the first time I've seen this specific problem, but its most likely a problem with the via-rhine driver.    
There are threads about this problem in 2007. It seems either this is a brand new problem that is generating the same error message, or a regression of the old one. Either way, it's not a good sign of Ubuntu QA these days. I'm far from the only one who has had problems with 9.10, there was a whole Slashdot article about the bumpy upgrade. Like I said, I've never *ever* seen this problem until 9.10, and I'm not the only one getting it now. The clocksource stuff seems to come and go between releases, there are a gazillion threads about that. It seems to lead to crashing. There are several people whose shared printing stopped working with this release too. There are a whole host of issues with 9.10. It would seem that 9.10 has been the least impressive release to date, at least based on my perceptions and personal experiences.

I'm not bitching too aggressively looking for sympathy because I could have held off upgrading, but on the other hand, it looks to me like 9.10 was not release worthy. This step forward/step back approach to improvements is very frustrating.


 And I think you don't give Grandma and Grandpa enough credit. They defeated Hitler and the Communists and they can't use KDE or Gnome? Come on, give me a break. People have become too lazy.    
Not with these sorts of problems, no. Grandma and Grandpa might be able to use KDE or Gnome if everything was setup for them already and working beautifully and they learned things by rote, but troubleshooting these sorts of problems? No chance in hell...They'll probably have to live with some minor annoyances as well. Understanding the GUI? It depends on what they do with their computers, I guess.


Just my two cents...


--
Joe Auty
NetMusician: web publishing software for musicians
http://www.netmusician.org
joe@netmusician.org

Re: [BLUG] My Ubuntu/Linux bitch

Hello,

--On Monday, November 16, 2009 01:40:09 PM -0500 Mark Warner
<markwarner1954@att.net> wrote:

> That presumes, of course, that you *are* able to install on the hardware
> at hand, but does *not* presume that the user is the one doing the
> installing. I dare say the people I/we are referring to wouldn't be able
> to install Windows cleanly either, especially in a situation where
> drivers weren't available natively in the Win OS.

Indeed, Slackware is amazingly user-friendly if you let the user begin
his experience at the same point where most people begin their
experiences: at a pre-installed, ready to run box with the system
already installed. The only slightly tricky part is installing software,
which is still tricky no matter what OS you use.

Aaron W. hsu

_______________________________________________
BLUG mailing list
BLUG@linuxfan.com
http://mailman.cs.indiana.edu/mailman/listinfo/blug

Re: [BLUG] My Ubuntu/Linux bitch

Hello,

--On Monday, November 16, 2009 01:12:57 PM -0500 Joe Auty
<joe@netmusician.org> wrote:

> if Ubuntu is supposed to be the most user friendly of the bunch, this
> does not bode well.

>From my personal experience with other Linux users, the most popular
distributions are hardly the most user-friendly and stable. Ubuntu gets
a lot of attention, but I'm not sure it is because of some innate
improvement that it makes to the community in terms of technical
stability or Windows -> Linux User Friendliness.

Ubuntu managed to get a big community with good marketing, and it isn't
a shabby system. However, it's not the most stable by a long shot,
because a thriving active community often moves forward in the name of
progress at rapid rates if stability is not one of their primary goals
above new features.

Fedora Core is another example of a very popular Linux distribution that
is very unstable. Why is it popular? Well, it just is, and the community
surrounding it causes some of that, I would guess.

I am just trying to point out that the most popular system in Linux land
are usually not the most stable.

As for user-fiendliness, until the attitude and metric of
user-fiendliness switches from "deos it work like Windows" to something
else, there will always be this issue. This is changing, I think.

We can argue for things "Just Working" all day long, but the truth
is,many users will give that up in exchange for other things, and many
times there are technical walls from hardware vendors that create these
problems.

Aaron W. Hsu

_______________________________________________
BLUG mailing list
BLUG@linuxfan.com
http://mailman.cs.indiana.edu/mailman/listinfo/blug

Re: [BLUG] My Ubuntu/Linux bitch

On Mon, Nov 16, 2009 at 06:12:57PM GMT, Joe Auty [joe@netmusician.org] said the following:
> >
> Yes, but you are an uber geek :)

Thank you, but no. I'm only a geek in the respect that I do a lot of
computer stuff. I'm not a "kernel developer" level geek that eats and
breathes binary. I enjoy assembling a computer, but I don't really care
about writing drivers and delving into the deep level modules, drivers
and heavy stuff. My goal is to do stuff with my computer, not do stuff
for it.

I think some people think that I do something special when I setup my
computer to get it working, but not really. Seriously, my installation
of Ubuntu or whatever other distribution is pretty standard and I
haven't done anything special to get sound, video or networking working.
It just works.

There is one thing that I do do[1] though and that's make sure that I
buy hardware that is compatible with Linux. Mac has the same issue
where people think they can just go out and buy any piece of hardware
they want and it should work, but it doesn't because. Mac is a bit
better because some stores have Mac specific sections for hardware.


> ourselves, but for the masses. Linux is very far away from being
> consumable by the masses, at least using Ubuntu as a metric... See
> monitor management, getting sound to work, video, etc.. Then, you have
> the whole category of usability which is a little hit and miss, in my
> opinion.

In the long term, Ubuntu has been a big step forward in getting
hardware working. I have had much better luck on Ubuntu than on any
other distribution. Although it could just be a coincidence and some
hardware that I had suddenly had kernel drivers. Nevertheless, prior to
Ubuntu, I had these hardware problems that had to be resolved by doing
something special.

o HP laserjet printers and some printers in general didn't work.
o Nvidia and ATI cards both required doing a lot of extra stuff on the
command line to get the commercial driver installed.
o Wireless configuration on a laptop was much more difficult.
o Installing Flash and Java installed and working with your browser
o Better GUI tools for system management.

At least this is the way I saw things happen.

> Consider yourself lucky. I'm struggling with kernel errors such as
> "NETDEV WATCHDOG: eth0 (via-rhine): transmit queue 0 timed out" that
> render my ethernet useless, and "Clocksource tsc unstable (delta =
> -285503362 ns)", neither of which Grandma has a fighting chance of
> figuring out.
>
> Both of these are new to Ubuntu 9.10 for me, so I don't necessarily
> fault Linux as a whole for this

All OSes usually have problems when a new version is released,
sometimes they are major. I almost never upgrade right away. This is
the first time I've seen this specific problem, but its most likely a
problem with the via-rhine driver.

And I think you don't give Grandma and Grandpa enough credit. They
defeated Hitler and the Communists and they can't use KDE or Gnome? Come
on, give me a break. People have become too lazy.


[1] - Why do I keep ending up with sentences with two of the same word
next to one another? Like do do and that that.


--
Mark Krenz
Bloomington Linux Users Group
http://www.bloomingtonlinux.org/
_______________________________________________
BLUG mailing list
BLUG@linuxfan.com
http://mailman.cs.indiana.edu/mailman/listinfo/blug

Re: [BLUG] My Ubuntu/Linux bitch

Joe Auty wrote:
>
> The whole "year of the Desktop" proposition has always implied (to me)
> that it would be the year of the Desktop not only for geeks like
> ourselves, but for the masses. Linux is very far away from being
> consumable by the masses, at least using Ubuntu as a metric... See
> monitor management, getting sound to work, video, etc.. Then, you have
> the whole category of usability which is a little hit and miss, in my
> opinion.

I can only speak from my own limited experience, installing and setting
up desktop Linux (PCLinuxOS and SimplyMEPIS, specifically, as I feel KDE
3.5.10 is the most "intuitive" DTE for Joe User) distros for a handful
of folks: once installed, set up, and configured, I've yet to have an
unsophisticated home user have any problem using Linux just as they
would Windows. My 14-year-old niece is the latest example.

That presumes, of course, that you *are* able to install on the hardware
at hand, but does *not* presume that the user is the one doing the
installing. I dare say the people I/we are referring to wouldn't be able
to install Windows cleanly either, especially in a situation where
drivers weren't available natively in the Win OS.

--
Mark Warner
_______________________________________________
BLUG mailing list
BLUG@linuxfan.com
http://mailman.cs.indiana.edu/mailman/listinfo/blug

Re: [BLUG] My Ubuntu/Linux bitch

Presenting the grub prompt is a good indication that there is no grub
config file present. 0.97 is the first version of Grub, so most of
the documentation should be talking about that version unless they
explicitly mention the version as being "1.x", "grub2", or references to
an experimental "pupa" version.

Here's the history: The first version of GRUB was version 0.x. It was
rewritten from scratch and the earlier stages of that process was called
"pupa". This rewrite is what became the official 1.x line. As it was the
second major release of GRUB, the Debian packages are called "grub2".
Other folks and documentation probably also call it "grub2". Note,
however, that Debian has a habit of going with names which are contrary
to officially sanctioned names due to convention. (In particular, they
call Apache HTTPd 2.x "apache2", even though this is like calling the
Microsoft Office 2002 product Microsoft 2002. Apache is a group name,
not a product name.)

With the correct commands you can boot your target partition directly
from the grub prompt. With a boot disk you may be able to resolve
the issue simply by booting to CD, mounting your /boot partition and
creating a "/boot/grub/menu.lst" file.

Please note, though, that the exact location of the grub menu.lst file
varies by distribution. I know RedHat has used other locations (or was
that other file names -- like /boot/grub.conf) instead, but I do not
know what location your version of CentOS uses.

Cheers and good luck,
Steven Black

On Fri, Nov 13, 2009 at 04:06:41PM -0500, Kelly McEvilly wrote:
> I've got a knoppix disk I boot bad windows machines with. Suppose I'll give that a try.
>
> The box actually reads:
>
> GNU GRUB version 0.97
>
> so I suppose I'll start my googling there. I'm guessing the GRUB thing
> is coming up because it can't figure out what to boot to.
>

_______________________________________________
BLUG mailing list
BLUG@linuxfan.com
http://mailman.cs.indiana.edu/mailman/listinfo/blug

Re: [BLUG] My Ubuntu/Linux bitch

Mark Krenz wrote:
On Fri, Nov 13, 2009 at 07:58:50PM GMT, Joe Auty [joe@netmusician.org] said the following:   
I like Ubuntu, and I like Linux (especially on the server end of things), but we are so incredibly far away from the "year of Linux on the Desktop" it's sort of laughable.      
   That is funny.  I laugh everytime someone says year of Linux on the desktop because I've actually been using Linux as my sole desktop on all my computers for something like 8 years now. The last 5 years of which have been really great with no major issues and all the applications I need. And Virtualbox ensures that I'll always have a solution for running Windows easily if anything special comes up (not often).    
Yes, but you are an uber geek :)

The whole "year of the Desktop" proposition has always implied (to me) that it would be the year of the Desktop not only for geeks like ourselves, but for the masses. Linux is very far away from being consumable by the masses, at least using Ubuntu as a metric... See monitor management, getting sound to work, video, etc.. Then, you have the whole category of usability which is a little hit and miss, in my opinion.


  Does that sound familiar to anyone?  I hear those exact complaints about Linux and people think its Linux, but its not, its simply lack of familiarity. For me, Linux works in a predictable way. And when it breaks, it usually breaks in a way I understand and can easily fix.  If it doesn't, I can easily get at the internals to fix it and often searching for an error message on Google reveals the solution. And the solution usually works.  I usually have my workstation running for 30-60 days before I have to reboot.  Usually I end up breaking things because I try to do too much, like foolishly trying to run some huge scene in Blender that requires several GB of RAM.    
Consider yourself lucky. I'm struggling with kernel errors such as "NETDEV WATCHDOG: eth0 (via-rhine): transmit queue 0 timed out" that render my ethernet useless, and "Clocksource tsc unstable (delta = -285503362 ns)", neither of which Grandma has a fighting chance of figuring out.

Both of these are new to Ubuntu 9.10 for me, so I don't necessarily fault Linux as a whole for this, but if Ubuntu is supposed to be the most user friendly of the bunch, this does not bode well. These are not obscure problems that are triggered doing obscure things, I'm not running anything unusual, and both are pretty random and unpredictable.


  As for Mac, I can't say anything about the Mac Mini I have because it hasn't really broken on me yet.  Its actually pretty nice and I respect Apple for making something better for the consumer. But there are still some things that you have to do from the terminal in OS X. Unless someone knows how to mount a samba filesystem through the GUI (without installing some 3rd party app).  OS X will be my mistress OS.    

I'm not a Mac fanboy, but let me reiterate my original plea: Ubuntu needs some Macifying in terms of getting things to "just work".


--
Joe Auty
NetMusician: web publishing software for musicians
http://www.netmusician.org
joe@netmusician.org

Re: [BLUG] My Ubuntu/Linux bitch

On Fri, Nov 13, 2009 at 08:21:36PM GMT, Barry Schatz [sorbetninja@gmail.com] said the following:
> >
> Another flaw in the human character is that everybody wants to build and
> nobody wants to do maintenance. -- Kurt Vonnegut
>

Fortunately not all developers are like this. There are a good number
of open source developers who are good at fixing bugs and being
responsible for their code.

Someone may think that being paid for development makes all the
difference, but in reality, there are enough longstanding bugs that
exist in commercial operating systems and applications to cast doubt on
that theory.

I think for a lot of serious programmers, their application is like
their baby. While they may like to see it grow into some big superstar,
they still want to take care of it, repair it when it has a boo boo and
make sure it can keep up with the other kids so it doesn't get picked
on. Of course take that with a grain of salt because I'm writing this
almost 5 years to the day since I last released a version of num-utils.

But there are people out there that do some things that defy all the
expectations that open source programmers aren't interested in doing the
hard business-important stuff. I think they don't get nearly as much
limelight as they should. For instance, the WINE developers. Here are
some people who spent almost 15 years trying to make Linux do what
seems impossible. For many years they slaved away writing code with
little reward until they have finally made something that still knocks
my socks off everytime I see it run something because I know what crazy
stuff its trying to do. Its miraculous!

--
Mark Krenz
Bloomington Linux Users Group
http://www.bloomingtonlinux.org/
_______________________________________________
BLUG mailing list
BLUG@linuxfan.com
http://mailman.cs.indiana.edu/mailman/listinfo/blug

Re: [BLUG] My Ubuntu/Linux bitch

On Fri, Nov 13, 2009 at 07:58:50PM GMT, Joe Auty [joe@netmusician.org] said the following:
>
> I like Ubuntu, and I like Linux (especially on the server end of
> things), but we are so incredibly far away from the "year of Linux on
> the Desktop" it's sort of laughable.
>

That is funny. I laugh everytime someone says year of Linux on the
desktop because I've actually been using Linux as my sole desktop on all
my computers for something like 8 years now. The last 5 years of which
have been really great with no major issues and all the applications I
need. And Virtualbox ensures that I'll always have a solution for
running Windows easily if anything special comes up (not often).

The only issue I do have are ones that can't really be helped easily like
Flash crashing frequently in 32-bit firefox on a 64-bit machine. But I
usually get around that by running Galeon for flash stuff and keeping
Firefox for non-flash stuff.

Most people critize what they don't understand. I do it too. For
instance, recently I've been going back to Windows sometimes to learn
new things there and I sit in front of it and wonder how I'm going to go
about running a program or configuring Windows to do something or fix
something that is wrong. The same thing happens when I sit in front of
a Mac. I know what I want to do and I have a general idea of how to do
it, but I don't know how to get started.

Does that sound familiar to anyone? I hear those exact complaints
about Linux and people think its Linux, but its not, its simply lack of
familiarity. For me, Linux works in a predictable way. And when it
breaks, it usually breaks in a way I understand and can easily fix. If
it doesn't, I can easily get at the internals to fix it and often
searching for an error message on Google reveals the solution. And the
solution usually works. I usually have my workstation running for
30-60 days before I have to reboot. Usually I end up breaking
things because I try to do too much, like foolishly trying to run some
huge scene in Blender that requires several GB of RAM.

On Windows, I can't tell you how many times I became frustrated with
Windows because it gave me some obscure error message or situation that
offered me no way to fix, get at the internals, and few people online
talked about the same issue. As Tim Bradshaw once said:

"Sure it's `easier' but this is in the same way that Windows is easier
than Unix: it's faster to learn, but eventually you just get so
frustrated you have to take an angle-grinder to the computer, and it
really takes ages to get all the little bits of computer out of the
carpet."

This is why I don't like Windows, it doesn't break in realiable ways.
Its like having a crazy girlfriend. Its really annoying and hard to
break things off with. If they've somehow fixed that in the past 8 years
by giving it a prozac, then I'm sorry but its too late, I've already
found my soul mate of an operating system and until it becomes old and
decrepit I ain't leaving. But probably by that time I will be old and
decrepit too so it will work out ok.

As for Mac, I can't say anything about the Mac Mini I have because it
hasn't really broken on me yet. Its actually pretty nice and I respect
Apple for making something better for the consumer. But there are still
some things that you have to do from the terminal in OS X. Unless
someone knows how to mount a samba filesystem through the GUI (without
installing some 3rd party app). OS X will be my mistress OS.

--
Mark Krenz
Bloomington Linux Users Group
http://www.bloomingtonlinux.org/
_______________________________________________
BLUG mailing list
BLUG@linuxfan.com
http://mailman.cs.indiana.edu/mailman/listinfo/blug

Sunday, November 15, 2009

Re: [BLUG] My Ubuntu/Linux bitch


Jim,

Did you try the Ubu 9.10 netbook remix?  I was using the alpha builds on
my eee 900 (Celery processor) and they worked quite nicely.



On Sat, 14 Nov 2009, jim marple wrote:

> Date: Sat, 14 Nov 2009 22:14:04 -0500
> From: jim marple <jimmarple@hotmail.com>
> Reply-To: Bloomington LINUX Users Group <blug@cs.indiana.edu>
> To: blug@cs.indiana.edu
> Subject: Re: [BLUG] My Ubuntu/Linux bitch
>
>
> Just for some info ubuntu 9.10 will not work correctly on a eeepc 701 4g and some 900 & certain 900a's (all Celeron's) without major tweaking.
> The overclocking and acpi utilities in 9.10 are targeted for the atom eeepc.
>
>
> The array.org kernel has most of the hard stuff already compiled into it. You should look at eeebuntu distro for that version of the eeepc.
>
>
> proud owner of a 701 4g, 900a(atom version) and 1005hab.
>
>
> jim marple
>
> __

Hey guys,

I don't normally complain, but my kids do see this computer, and since the topic has evidently changed, would you mind changing the name of the thread? I keep deleting it and it keeps popping up...

On topic (present that is), however, I have recently installed 9.10 NBR to two different eeepcs and it seems to work really well - looks and acts real polished. Mine is a 1000he, and everything works flawlessly. My mom's is a 1001ha, and the only problem with it is that the n wireless card that it has gets a week signal, which I am working on, and have hopes of fixing soon.

Thanks for your consideration of others who choose to be little more careful with their vocab...

Matthew
 

Re: [BLUG] My Ubuntu/Linux bitch

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Jim,

Did you try the Ubu 9.10 netbook remix? I was using the alpha builds on
my eee 900 (Celery processor) and they worked quite nicely.

On Sat, 14 Nov 2009, jim marple wrote:

> Date: Sat, 14 Nov 2009 22:14:04 -0500
> From: jim marple <jimmarple@hotmail.com>
> Reply-To: Bloomington LINUX Users Group <blug@cs.indiana.edu>
> To: blug@cs.indiana.edu
> Subject: Re: [BLUG] My Ubuntu/Linux bitch
>
>
> Just for some info ubuntu 9.10 will not work correctly on a eeepc 701 4g and some 900 & certain 900a's (all Celeron's) without major tweaking.
> The overclocking and acpi utilities in 9.10 are targeted for the atom eeepc.
>
>
> The array.org kernel has most of the hard stuff already compiled into it. You should look at eeebuntu distro for that version of the eeepc.
>
>
> proud owner of a 701 4g, 900a(atom version) and 1005hab.
>
>
> jim marple
>
> _________________________________________________________________
> Windows 7: I wanted simpler, now it's simpler. I'm a rock star.
> http://www.microsoft.com/Windows/windows-7/default.aspx?h=myidea?ocid=PID24727::T:WLMTAGL:ON:WL:en-US:WWL_WIN_myidea:112009

- ---Robert Freeman-Day
- ---------------
I would really like you to be on my side,
but the side you show me isn't what I had in mind.

- -Judybats
GPG Public Key:
http:keyserver.ubuntu.com:11371/pks/lookup?op=get&search=0xBA9DF9ED3E4C7D36

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.9 (GNU/Linux)

iEYEARECAAYFAksAJt8ACgkQup357T5MfTbl0gCguKLtnty0ZzV3b5mR+v9m4li3
PpkAn1Dn7OnBBMzg8OFzn+Jc2GHrTzfd
=yUC7
-----END PGP SIGNATURE-----
_______________________________________________
BLUG mailing list
BLUG@linuxfan.com
http://mailman.cs.indiana.edu/mailman/listinfo/blug

Saturday, November 14, 2009

Re: [BLUG] My Ubuntu/Linux bitch

Just for some info ubuntu 9.10 will not work correctly on a eeepc 701 4g and some 900 & certain 900a's (all Celeron's) without major tweaking.
The overclocking and acpi utilities in 9.10 are targeted for the atom eeepc.


The array.org kernel has most of the hard stuff already compiled into it. You should look at eeebuntu distro for that version of the eeepc.


proud owner of a 701 4g, 900a(atom version) and 1005hab.


jim marple


Windows 7: I wanted simpler, now it's simpler. I'm a rock star.

Re: [BLUG] My Ubuntu/Linux bitch

On Fri, 13 Nov 2009, Kelly McEvilly wrote:

> well, the 'cat (hd0,0)/grub/grub.conf' got me about 300 ? marks and that was it.
>
> i'll be googling all weekend long!

Seriously, first try looking around

http://www.supergrubdisk.org/


--
Beartooth Staffwright, Erstwhile Historian of Tongues
Sclerotic Squirreler, Double Retiree, Linux Evangelist
_______________________________________________
BLUG mailing list
BLUG@linuxfan.com
http://mailman.cs.indiana.edu/mailman/listinfo/blug

Friday, November 13, 2009

Re: [BLUG] My Ubuntu/Linux bitch

Joe Auty wrote:
[...]
> I like Ubuntu, and I like Linux (especially on the server end of
> things), but we are so incredibly far away from the "year of Linux on
> the Desktop" it's sort of laughable.
>
> The upgrade to Ubuntu 9.10 has been a disaster for many, this has been
> widely documented online.
[...]
> I realize that every OS has its strengths and weaknesses, and I realize
> that Ubuntu is not designed to be a more conservative sort of Linux OS
> like Debian.
[...]
> My main point is more of a question. Why doesn't the Ubuntu team put a
> hold on adding new features and just work their butts off getting the
> mundane unsexy stuff to work, and in improving performance overall?
[...]
> I realize that Ubuntu may not be the most conservative choice for this
> criteria, but it is also the first Desktop Linux OS that comes to mind
> for most people.

You've answered your own question. Ubuntu is *not* a conservative,
stability-oriented distro. If that's what you want, then don't use
Ubuntu. There are plenty of other distros out there that are more
conservative, more stable, reasonably current, and yet are still known
as "user-friendly". My distro of choice, SimplyMEPIS, is one of them.
I'll grant you that Ubuntu has the largest "mind share" and gets the
most publicity, but I'll argue that it's not the best choice for an
unsophisticated user wanting to migrate from Windows.

IMO, the best Ubuntu release was Dapper. You might recall that Dapper is
v6.06, *not* v6.04 as originally intended. Why? Because it wasn't ready
in April; it wasn't until June that they had it stabilized to the point
that they felt it could/should be released. Since then, they've met
their target release dates, stability be damned.

--
Mark Warner
MEPIS Linux
Registered Linux User #415318

_______________________________________________
BLUG mailing list
BLUG@linuxfan.com
http://mailman.cs.indiana.edu/mailman/listinfo/blug

Re: [BLUG] My Ubuntu/Linux bitch

That explains why the boot procedure stops at the GRUB> prompt since your grub.conf was trashed.  If you know how to create one, all you have to do is to boot to the Centos CD/DVD and at the stage when it's about to start installation, hit Ctrl-Alt-F2 to go to the alternative console and try to mount your / and /boot partitions.  This way, you can use vim to create a correct grub.conf.  E.g., at the shell prompt of the alternative console, do (assuming that your /boot is on /dev/sdb1 and / is on /dev/sdb3),

mkdir foo
mount /dev/sdb3 /foo
mount /dev/sdb1 /foo/boot
vi /foo/boot/grub/grub.conf
    # create a correct one here
/foo/sbin/grub
grub> root (hd0,0)
grub> setup (hd0)
grub> exit
umount /foo/boot
umount /foo


Reboot.  Let me know if you need help.

Good luck!
Shing-Shong

well, the 'cat (hd0,0)/grub/grub.conf' got me about 300 ? marks and that was it.  i'll be googling all weekend long!   

Re: [BLUG] My Ubuntu/Linux bitch

well, the 'cat (hd0,0)/grub/grub.conf' got me about 300 ? marks and that was it.

i'll be googling all weekend long!

----- Original Message -----
From: "Shing-Shong Shei" <shei@cs.indiana.edu>
To: "Bloomington LINUX Users Group" <blug@cs.indiana.edu>
Sent: Friday, November 13, 2009 5:16:55 PM GMT -05:00 US/Canada Eastern
Subject: Re: [BLUG] My Ubuntu/Linux bitch

You need to give more information before I can help:

1) what's your partition layout? Do you have a separate /boot
partition? If so, do you know its partition number? In my case, I have
/boot in /dev/sda1 which corresponds to (hd0,0) in grub's term. So I
can do 'cat (hd0,0)/grub/grub.conf' at the 'GRUB>' prompt to check the
contents of the grub.conf.
2) if you can see the contents of grub.conf, there are two things to try:

a) enter 'configfile (hd0,0)/grub/grub.conf' at the 'GRUB>' prompt
and see if you can boot to the kernel specified in the grub.conf
b) if it works (booting to the system you just updated), then do
'/sbin/grub' and try to set up the MBA as in
grub> root (hd0,0)
grub> setup (hd0)
grub> exit

then reboot hoping the grub will work this time.

Good luck!
Shing-Shong

> happy? i did an update on my CentOS box today and now have a black screen with:
>
> GRUB>
>
> gonna have to google that one!
>
> ah, the adventures of noobiness...
>
>
_______________________________________________
BLUG mailing list
BLUG@linuxfan.com
http://mailman.cs.indiana.edu/mailman/listinfo/blug
_______________________________________________
BLUG mailing list
BLUG@linuxfan.com
http://mailman.cs.indiana.edu/mailman/listinfo/blug

Re: [BLUG] My Ubuntu/Linux bitch

You need to give more information before I can help:

1) what's your partition layout? Do you have a separate /boot
partition? If so, do you know its partition number? In my case, I have
/boot in /dev/sda1 which corresponds to (hd0,0) in grub's term. So I
can do 'cat (hd0,0)/grub/grub.conf' at the 'GRUB>' prompt to check the
contents of the grub.conf.
2) if you can see the contents of grub.conf, there are two things to try:

a) enter 'configfile (hd0,0)/grub/grub.conf' at the 'GRUB>' prompt
and see if you can boot to the kernel specified in the grub.conf
b) if it works (booting to the system you just updated), then do
'/sbin/grub' and try to set up the MBA as in
grub> root (hd0,0)
grub> setup (hd0)
grub> exit

then reboot hoping the grub will work this time.

Good luck!
Shing-Shong

> happy? i did an update on my CentOS box today and now have a black screen with:
>
> GRUB>
>
> gonna have to google that one!
>
> ah, the adventures of noobiness...
>
>
_______________________________________________
BLUG mailing list
BLUG@linuxfan.com
http://mailman.cs.indiana.edu/mailman/listinfo/blug

Re: [BLUG] My Ubuntu/Linux bitch

I've got a knoppix disk I boot bad windows machines with. Suppose I'll give that a try.

The box actually reads:

GNU GRUB version 0.97

so I suppose I'll start my googling there. I'm guessing the GRUB thing is coming up because it can't figure out what to boot to.


----- Original Message -----
From: "Beartooth" <beartooth@Beartooth.Info>
To: "Bloomington LINUX Users Group" <blug@cs.indiana.edu>
Sent: Friday, November 13, 2009 3:55:04 PM GMT -05:00 US/Canada Eastern
Subject: Re: [BLUG] My Ubuntu/Linux bitch

On Fri, 13 Nov 2009, Barry Schatz wrote:

> I have to say grub errors taught me a lot in a very short time.
> This was because I first tried Linux in college on my laptop
> (my only computer at the time) and still needed Windows to do
> school work. When I couldn't boot to Windows, I learned FAST.
>
> That said, there are ways to recover from the grub prompt.
> Which grub version (0.x aka "legacy" grub or 1.x aka grub2)? If
> you type help what does it say? You can also boot with a liveCD
> (knoppix, SystemRescueCD, etc.) and reinstall/update grub that
> way. I don't remember much else off the top of my head, but
> there are many ways to get your system back.

One of those is something called a SuperGrubDisk; I've
had good luck with it (with the greatest of ease!) a couple of
times.

--
Beartooth Staffwright, Erstwhile Historian of Tongues
Sclerotic Squirreler, Double Retiree, Linux Evangelist
_______________________________________________
BLUG mailing list
BLUG@linuxfan.com
http://mailman.cs.indiana.edu/mailman/listinfo/blug
_______________________________________________
BLUG mailing list
BLUG@linuxfan.com
http://mailman.cs.indiana.edu/mailman/listinfo/blug

Re: [BLUG] My Ubuntu/Linux bitch

On Fri, Nov 13, 2009 at 03:21:36PM -0500, Barry Schatz wrote:
> Joe Auty wrote:
> > I realize that every OS has its strengths and weaknesses,
> Stability would be Ubuntu's kryptonite in this case. It's the yellow to
> Ubuntu's Green Lantern.

If they can't maintain stability they'll start seeing folks jump the
boat. The Linux distro space is vast, and nobody wants core features to
be broken.

It's not like Microsoft where switching to a new OS means walking
away from a potentially massive cash investment. (Or when moving from
Microsoft to Apple and you're walking away from one cash investment
to another... Though when it comes to Microsoft they have a habit of
requiring new cash investments so -- depending on what you do -- you're
always going from one massive cash investment to another.)

> > Again, I know that my problems here are pretty vague and sketchy...
> >
> > My main point is more of a question. Why doesn't the Ubuntu team put a
> > hold on adding new features and just work their butts off getting the
> > mundane unsexy stuff to work, and in improving performance overall?
> >
> Another flaw in the human character is that everybody wants to build and
> nobody wants to do maintenance. -- Kurt Vonnegut
>
> New features are sexy. Fixing bugs means admitting you were wrong. To
> keep gaining mindshare, Ubuntu needs to keep adding the sexy and never
> look back. It's great that they've come this far, but I really don't
> like to get onboard with fast-growing projects because of situations
> like this.

This is particularly a problem with the GNOME stuff. The GNOME folks
create a server/library, bring it up to 0.9x -- never getting to 1.0 --
and then create a new server/library partially basing it off the earlier
code, but dropping all the bugs. (Yes, you read that right, as they're
keeping *some* of the code, *some* of the earlier bugs remain.)

Personally I wish I could get all my ALSA applications sending their
audio to Phonon, KDE 4's sound server, as it is -- by far -- better
than that PulseAudio crap. (It is easy to configure it so that when
I plug in USB headphones the running audio switches automatically to
the headphones.) As it is, there's an ALSA driver to send the audio to
PulseAudio but not one to do the same thing with Phonon. (By the way,
that may well clear up some of your audio issues -- though if it is
blocking the application it is probably using OSS, and you may need the
alsa-oss package to turn the OSS calls in to ALSA calls.)

PulseAudio has no concept of priorities for backends. You can configure
it for the USB headphones, but if you then unplug the headphones you get
no audio at all until you reconfigure by hand.

> If you still want to use a bleeding-edge distro, I hear good things
> about Arch. That said, I've been a happy Debian user since 2004.

In truth, Debian's biggest failure was their slow release cycle. If you
actually wanted to stick with "stable", you could be way behind the
times. They've changed their release cycle, though, so that should no
longer be an issue.

If Ubuntu stops being stable for me, I've no reason not to switch to
Debian.

Cheers,
Steven Black

_______________________________________________
BLUG mailing list
BLUG@linuxfan.com
http://mailman.cs.indiana.edu/mailman/listinfo/blug

Re: [BLUG] My Ubuntu/Linux bitch

Barry Schatz wrote:
> *SNIP*
>
> If you still want to use a bleeding-edge distro, I hear good things
> about Arch. That said, I've been a happy Debian user since 2004.
>
> -Barry
>

This happens on Debian too. Somehow I'm just lucky enough to not have it
happen to me.
http://daniel.haxx.se/blog/2009/11/12/debian-black-out/


_______________________________________________
BLUG mailing list
BLUG@linuxfan.com
http://mailman.cs.indiana.edu/mailman/listinfo/blug

Re: [BLUG] My Ubuntu/Linux bitch

On Fri, 13 Nov 2009, Barry Schatz wrote:

> I have to say grub errors taught me a lot in a very short time.
> This was because I first tried Linux in college on my laptop
> (my only computer at the time) and still needed Windows to do
> school work. When I couldn't boot to Windows, I learned FAST.
>
> That said, there are ways to recover from the grub prompt.
> Which grub version (0.x aka "legacy" grub or 1.x aka grub2)? If
> you type help what does it say? You can also boot with a liveCD
> (knoppix, SystemRescueCD, etc.) and reinstall/update grub that
> way. I don't remember much else off the top of my head, but
> there are many ways to get your system back.

One of those is something called a SuperGrubDisk; I've
had good luck with it (with the greatest of ease!) a couple of
times.

--
Beartooth Staffwright, Erstwhile Historian of Tongues
Sclerotic Squirreler, Double Retiree, Linux Evangelist
_______________________________________________
BLUG mailing list
BLUG@linuxfan.com
http://mailman.cs.indiana.edu/mailman/listinfo/blug

Re: [BLUG] My Ubuntu/Linux bitch

I have to say grub errors taught me a lot in a very short time. This was
because I first tried Linux in college on my laptop (my only computer at
the time) and still needed Windows to do school work. When I couldn't
boot to Windows, I learned FAST.

That said, there are ways to recover from the grub prompt. Which grub
version (0.x aka "legacy" grub or 1.x aka grub2)? If you type help what
does it say? You can also boot with a liveCD (knoppix, SystemRescueCD,
etc.) and reinstall/update grub that way. I don't remember much else off
the top of my head, but there are many ways to get your system back.

-Barry

Kelly McEvilly wrote:
> happy? i did an update on my CentOS box today and now have a black screen with:
>
> GRUB>
>
> gonna have to google that one!
>
> ah, the adventures of noobiness...
>
>
> ----- Original Message -----
> From: "Barry Schatz" <sorbetninja@gmail.com>
> To: "Bloomington LINUX Users Group" <blug@cs.indiana.edu>
> Sent: Friday, November 13, 2009 3:21:36 PM GMT -05:00 US/Canada Eastern
> Subject: Re: [BLUG] My Ubuntu/Linux bitch
>
> Joe Auty wrote:
>
>> I'm not here to ruffle feathers or troll or anything like that. I
>> realize that nobody is putting a gun to my head forcing me to upgrade,
>> and my machine isn't really that important so I don't mind the
>> adventures, up to a certain point. I'm sure that one could pick apart
>> each of these following points, suggest a fix, call me an idiot, more
>> things to try, blame something, whatever... I'm sure that many of these
>> arguments would be sane and reasonable to some extent. There is no
>> particular castle I want to storm, and I'm not advocating one OS over
>> another or trying to attack. With this disclaimer, read on... :)
>>
>>
> In other words "Incoming flamebait." No worries. My counter-flame
> follows. :)
>
>> I like Ubuntu, and I like Linux (especially on the server end of
>> things), but we are so incredibly far away from the "year of Linux on
>> the Desktop" it's sort of laughable.
>>
>>
> There will never be a "year of Linux on the
> {desktop,server,netbook,toaster,etc}." The process is way too gradual to
> fit in a year. Best-case is "decade of Linux on the $whatever". Even
> century is optimistic.
>
>> I realize that every OS has its strengths and weaknesses,
>>
> Stability would be Ubuntu's kryptonite in this case. It's the yellow to
> Ubuntu's Green Lantern.
>
>
>> Again, I know that my problems here are pretty vague and sketchy...
>>
>> My main point is more of a question. Why doesn't the Ubuntu team put a
>> hold on adding new features and just work their butts off getting the
>> mundane unsexy stuff to work, and in improving performance overall?
>>
>>
>>
> Another flaw in the human character is that everybody wants to build and
> nobody wants to do maintenance. -- Kurt Vonnegut
>
> New features are sexy. Fixing bugs means admitting you were wrong. To
> keep gaining mindshare, Ubuntu needs to keep adding the sexy and never
> look back. It's great that they've come this far, but I really don't
> like to get onboard with fast-growing projects because of situations
> like this.
>
> If you still want to use a bleeding-edge distro, I hear good things
> about Arch. That said, I've been a happy Debian user since 2004.
>
> -Barry
> _______________________________________________
> BLUG mailing list
> BLUG@linuxfan.com
> http://mailman.cs.indiana.edu/mailman/listinfo/blug
> _______________________________________________
> BLUG mailing list
> BLUG@linuxfan.com
> http://mailman.cs.indiana.edu/mailman/listinfo/blug
>

_______________________________________________
BLUG mailing list
BLUG@linuxfan.com
http://mailman.cs.indiana.edu/mailman/listinfo/blug