Re: [PLUG] Multi host init system?

2015-07-10 Thread Nathan Williams
i haven't had to actually do this yet, but if i understand the systemd
socket-activation concept correctly, that may be a useful building block
for putting something like this together (service gets started when another
service tries to access it over the network).

thankfully we don't have any super order-dependent services like that (they
just enter a retry loop until their dependencies are available), but i'm
tempted to try it out now :)



On Thu, Jul 9, 2015 at 11:57 PM Martin A. Brown  wrote:

>
> Hello there,
>
> > I have an app that is distributed across a dozen servers.
> >
> > There are several processes involved, some with dependencies on
> > processes running on other servers.
>
> > What app would you recommend for starting the whole thing up in an
> > orderly manner?
>
> Is it possible to adjust the pieces of software so that there is no
> required 'orderly' startup?
>
> I ask because--if the application requires synchronized startup of
> services across multiple machines, then what happens when one of the
> services (or nodes) early in that dependency chain fails during
> operation?
>
> For example, let's imagine services A through I, each of which must
> be launched before the subsequent can launch:
>
>A -> B -> C -> D -> E -> F -> G -> H -> I
>
> Assuming normal, orderly, coordinated startup, great.  Now,
> everything is running.
>
> Suppose that service C fails.
>What happens?
>Will the application still run?
>Do D through I need to be restarted (or just D)?
>
> If it is possible to adjust the individual services so that each of
> them can run and retry, fail gracefully, or even fail hard (as fast
> as possible, please) to contend with dependency issues, I would
> recommend that.
>
> Perhaps you have already addressed that question or are in the
> (unenviable) position of contending with feature-complete software
> that is ready for deployment.
>
> Since you are in the 10+ node realm, I think I'd also agree with
> using some sort of configuration management (somebody suggested
> Ansible).  With this many nodes, it's an operational truism that one
> of them will kick the bucket during your dog's midnight birthday
> party [0] and you'll want to be able to move the service quickly to
> another node.
>
> Hurrah for the well-worn configuration management tools.
>
> This is the modern take on startup script dependencies, just now
> with more network in-between!  Everybody needs more network
> in-between!  Not an easy problem.
>
> Anyway, good luck with this conundrum!
>
> -Martin
>
>   [0] Silicon devices sense these moments and cherish destroying our
>   equanimity.
>
> --
> Martin A. Brown
> http://linux-ip.net/
> ___
> PLUG mailing list
> PLUG@lists.pdxlinux.org
> http://lists.pdxlinux.org/mailman/listinfo/plug
>
___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] Multi host init system?

2015-07-10 Thread Michael Rasmussen
On Thu, Jul 09, 2015 at 11:54:46PM -0700, Martin A. Brown wrote:
> 
> Hello there,
> 
> > I have an app that is distributed across a dozen servers.
> >
> > There are several processes involved, some with dependencies on 
> > processes running on other servers.
> 
> > What app would you recommend for starting the whole thing up in an 
> > orderly manner?
> 
> Is it possible to adjust the pieces of software so that there is no 
> required 'orderly' startup?
> 
> I ask because--if the application requires synchronized startup of 
> services across multiple machines, then what happens when one of the 
> services (or nodes) early in that dependency chain fails during 
> operation?
> 
> For example, let's imagine services A through I, each of which must 
> be launched before the subsequent can launch:
> 
>A -> B -> C -> D -> E -> F -> G -> H -> I
> 
> Assuming normal, orderly, coordinated startup, great.  Now, 
> everything is running.
> 
> Suppose that service C fails.
>What happens?

Given your chain, each node consumes data from the following one. 
Node I generates the raw data. The system is designed on a pull 
model. If C fails B and A think there's no work to do - and eventually 
generate alarms because they expect there always should be something 
to do.  D will write to local storage. When C is brought back it will 
process the queued data on D. 

Aside from getting disk arrays, databases and message queuing services started
there are no actual hard dependencies. The desire to control and coordinate 
startups is threefold.

 - ensure health of component before going forward
 - not populate logs with messages about lack of services
 - not generate a backlog of data to be processed when the full system is up.


-- 
  Michael Rasmussen, Portland Oregon  
Be Appropriate && Follow Your Curiosity
Complaining is silly. Either act or forget.
~ Sagmeister
___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] Problems running GUI programs as root under Jessie (MATE as DE)

2015-07-10 Thread Richard Owlett
Derek Loree wrote:
>
>> On Jul 9, 2015, at 1:56 PM, Richard Owlett  wrote:
>>
> [snip]
>> Script started on Mon 30 Jun 2014 08:58:50 AM CDT
>> richard@jessie:~$ su
>> Password:
>
> It might be as simple as using “su -“ instead of just “su”.  Just “su” will
>  run as root in the environment of the user that initiated the 
command, using
>  the “-“ will change to the root environment.
>

I think that's going to be the key. Digging deeper will have to 
wait until the weekend.
Thanks all.


___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] Multi host init system?

2015-07-10 Thread Bill Barry
On Jul 10, 2015 6:10 AM, "Michael Rasmussen"  wrote:
>

>
> Given your chain, each node consumes data from the following one.
> Node I generates the raw data. The system is designed on a pull
> model. If C fails B and A think there's no work to do - and eventually
> generate alarms because they expect there always should be something
> to do.  D will write to local storage. When C is brought back it will
> process the queued data on D.
>
> Aside from getting disk arrays, databases and message queuing services
started
> there are no actual hard dependencies. The desire to control and
coordinate
> startups is threefold.
>
>  - ensure health of component before going forward
>  - not populate logs with messages about lack of services
>  - not generate a backlog of data to be processed when the full system is
up.
>
>

If instead of a pull model there was a push model then the pushing node
could start the downstream service when it had something to push. Nothing
would be started until it was needed the first time. Also if it can't start
or find anything to push to it can send a message upstream pausing the rest
of the nodesl much like the kill switch in the Toyota production line. No
matter how finely it is tuned one of the nodes will be a bottleneck and
will have to pause the upstream line occasionally even under normal
conditions.

Bill

> --
>   Michael Rasmussen, Portland Oregon
> Be Appropriate && Follow Your Curiosity
> Complaining is silly. Either act or forget.
> ~ Sagmeister
> ___
> PLUG mailing list
> PLUG@lists.pdxlinux.org
> http://lists.pdxlinux.org/mailman/listinfo/plug
___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


[PLUG] What CMS to use ?

2015-07-10 Thread Pete Lancashire
It is time for me to start posting 'stuff' on one of my domains.

Looking for comments good and bad on a CMS to use.

My hosting company provides Wordpress, Drupal and Joomla

Other then must be close to 7 years ago I played around with
Drupal and Joomla. That is about the limit of my experience

-pete
___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] What CMS to use ?

2015-07-10 Thread Rich Shepard
On Fri, 10 Jul 2015, Pete Lancashire wrote:

> My hosting company provides Wordpress, Drupal and Joomla Other then must
> be close to 7 years ago I played around with Drupal and Joomla. That is
> about the limit of my experience

pete,

   Lookie here:


:-)

Rich
___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] What CMS to use ?

2015-07-10 Thread Mark Phillips
The link did not work for me (it was truncated). Here is the full line -
http://www.rackspace.com/knowledge_center/article/cms-comparison-drupal-joomla-and-wordpress

Personally, I prefer Python to PHP, so I prefer working with the django
framework. There is django-cms, mezzanine, and wagtail, to name a few CMS
that are based on dhango. There are others as well.

Mark

On Fri, Jul 10, 2015 at 10:05 AM, Rich Shepard 
wrote:

> On Fri, 10 Jul 2015, Pete Lancashire wrote:
>
> > My hosting company provides Wordpress, Drupal and Joomla Other then must
> > be close to 7 years ago I played around with Drupal and Joomla. That is
> > about the limit of my experience
>
> pete,
>
>Lookie here:
> 
>
> :-)
>
> Rich
> ___
> PLUG mailing list
> PLUG@lists.pdxlinux.org
> http://lists.pdxlinux.org/mailman/listinfo/plug
>
___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] What CMS to use ?

2015-07-10 Thread Rich Shepard
On Fri, 10 Jul 2015, Mark Phillips wrote:

> The link did not work for me (it was truncated). Here is the full line -

   Oops! Thought I captured the entire URL.

> http://www.rackspace.com/knowledge_center/article/cms-comparison-drupal-joomla-and-wordpress
>
> Personally, I prefer Python to PHP, so I prefer working with the django
> framework. There is django-cms, mezzanine, and wagtail, to name a few CMS
> that are based on dhango. There are others as well.

   I was going to suggest django but that was not on Pete's list. His ISP
might not support it so he needs to use what they provide.

Rich
___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] What CMS to use ?

2015-07-10 Thread Pete Lancashire
Thanks nice basic comparison

On Fri, Jul 10, 2015 at 10:40 AM, Rich Shepard 
wrote:

> On Fri, 10 Jul 2015, Mark Phillips wrote:
>
> > The link did not work for me (it was truncated). Here is the full line -
>
>Oops! Thought I captured the entire URL.
>
> >
> http://www.rackspace.com/knowledge_center/article/cms-comparison-drupal-joomla-and-wordpress
> >
> > Personally, I prefer Python to PHP, so I prefer working with the django
> > framework. There is django-cms, mezzanine, and wagtail, to name a few CMS
> > that are based on dhango. There are others as well.
>
>I was going to suggest django but that was not on Pete's list. His ISP
> might not support it so he needs to use what they provide.
>
> Rich
> ___
> PLUG mailing list
> PLUG@lists.pdxlinux.org
> http://lists.pdxlinux.org/mailman/listinfo/plug
>
___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] What CMS to use ?

2015-07-10 Thread Pete Lancashire
You asked for the list, here it is

*Blogs*
* b2evolution

* feedonfeeds

* WordPress

*CMS & Portals*
* e107

* Joomla

* Mambo CMS

* PHP Nuke

* PhpWiki

* xoops

*Forums*
* phpBB

* SM Forum

* XMB Forum

*E-Commerce*
* CubeCart

* OpenX

* osCommerce

* phpcoin

* SugarCRM

* Zen Cart

*Support Systems*
* CS Live Helper

* helpcenterlive

* phpMyFAQ

*Galleries*
* Coppermine Photo Gallery

* Gallery (1)

*Misc.*
* DokuWiki

* FormMail

* phpESP

* phpgroupware

* phpmycounter

* PHProjekt

* Advanced Poll

* SiteBar

* sRecommender


Re: [PLUG] What CMS to use ?

2015-07-10 Thread Pete Lancashire
Sorry that was meant for different destination

On Fri, Jul 10, 2015 at 12:02 PM, Pete Lancashire 
wrote:

> You asked for the list, here it is
>
> *Blogs*
> * b2evolution
> 
> * feedonfeeds
> 
> * WordPress
> 
> *CMS & Portals*
> * e107
> 
> * Joomla
> 
> * Mambo CMS
> 
> * PHP Nuke
> 
> * PhpWiki
> 
> * xoops
> 
> *Forums*
> * phpBB
> 
> * SM Forum
> 
> * XMB Forum
> 
> *E-Commerce*
> * CubeCart
> 
> * OpenX
> 
> * osCommerce
> 
> * phpcoin
> 
> * SugarCRM
> 
> * Zen Cart
> 
> *Support Systems*
> * CS Live Helper
> 
> * helpcenterlive
> 
> * phpMyFAQ
> 
> *Galleries*
> * Coppermine Photo Gallery
> 
> * Gallery (1)
> 
> *Misc.*
> * DokuWiki
> 
> * FormMail
> 
> * phpESP
> 
> * phpgroupware
> 
> * phpmycounter
> 
> * PHProjekt
> 
> * Advanced Poll
> 
> * SiteBar
> <

Re: [PLUG] What CMS to use ?

2015-07-10 Thread Nat Taylor
You can read about them here: http://www.opensourcecms.com/

IMO, WordPress simplest, drupal is super powerful and extensible, and
joomla has a pretty admin interface.
On Jul 10, 2015 12:04 PM, "Pete Lancashire"  wrote:

> Sorry that was meant for different destination
>
> On Fri, Jul 10, 2015 at 12:02 PM, Pete Lancashire  >
> wrote:
>
> > You asked for the list, here it is
> >
> > *Blogs*
> > * b2evolution
> > <
> https://cp14.ixwebhosting.com/psoft/servlet/psoft.hsphere.CP/C298946/111599_0/psoft.hsphere.CP?template_name=easy_app/easyapp.html&stype=2
> >
> > * feedonfeeds
> > <
> https://cp14.ixwebhosting.com/psoft/servlet/psoft.hsphere.CP/C298946/111599_0/psoft.hsphere.CP?template_name=easy_app/easyapp.html&stype=8
> >
> > * WordPress
> > <
> https://cp14.ixwebhosting.com/psoft/servlet/psoft.hsphere.CP/C298946/111599_0/psoft.hsphere.CP?template_name=easy_app/easyapp.html&stype=34
> >
> > *CMS & Portals*
> > * e107
> > <
> https://cp14.ixwebhosting.com/psoft/servlet/psoft.hsphere.CP/C298946/111599_0/psoft.hsphere.CP?template_name=easy_app/easyapp.html&stype=28
> >
> > * Joomla
> > <
> https://cp14.ixwebhosting.com/psoft/servlet/psoft.hsphere.CP/C298946/111599_0/psoft.hsphere.CP?template_name=easy_app/easyapp.html&stype=35
> >
> > * Mambo CMS
> > <
> https://cp14.ixwebhosting.com/psoft/servlet/psoft.hsphere.CP/C298946/111599_0/psoft.hsphere.CP?template_name=easy_app/easyapp.html&stype=1
> >
> > * PHP Nuke
> > <
> https://cp14.ixwebhosting.com/psoft/servlet/psoft.hsphere.CP/C298946/111599_0/psoft.hsphere.CP?template_name=easy_app/easyapp.html&stype=16
> >
> > * PhpWiki
> > <
> https://cp14.ixwebhosting.com/psoft/servlet/psoft.hsphere.CP/C298946/111599_0/psoft.hsphere.CP?template_name=easy_app/easyapp.html&stype=5
> >
> > * xoops
> > <
> https://cp14.ixwebhosting.com/psoft/servlet/psoft.hsphere.CP/C298946/111599_0/psoft.hsphere.CP?template_name=easy_app/easyapp.html&stype=20
> >
> > *Forums*
> > * phpBB
> > <
> https://cp14.ixwebhosting.com/psoft/servlet/psoft.hsphere.CP/C298946/111599_0/psoft.hsphere.CP?template_name=easy_app/easyapp.html&stype=25
> >
> > * SM Forum
> > <
> https://cp14.ixwebhosting.com/psoft/servlet/psoft.hsphere.CP/C298946/111599_0/psoft.hsphere.CP?template_name=easy_app/easyapp.html&stype=24
> >
> > * XMB Forum
> > <
> https://cp14.ixwebhosting.com/psoft/servlet/psoft.hsphere.CP/C298946/111599_0/psoft.hsphere.CP?template_name=easy_app/easyapp.html&stype=15
> >
> > *E-Commerce*
> > * CubeCart
> > <
> https://cp14.ixwebhosting.com/psoft/servlet/psoft.hsphere.CP/C298946/111599_0/psoft.hsphere.CP?template_name=easy_app/easyapp.html&stype=13
> >
> > * OpenX
> > <
> https://cp14.ixwebhosting.com/psoft/servlet/psoft.hsphere.CP/C298946/111599_0/psoft.hsphere.CP?template_name=easy_app/easyapp.html&stype=33
> >
> > * osCommerce
> > <
> https://cp14.ixwebhosting.com/psoft/servlet/psoft.hsphere.CP/C298946/111599_0/psoft.hsphere.CP?template_name=easy_app/easyapp.html&stype=26
> >
> > * phpcoin
> > <
> https://cp14.ixwebhosting.com/psoft/servlet/psoft.hsphere.CP/C298946/111599_0/psoft.hsphere.CP?template_name=easy_app/easyapp.html&stype=14
> >
> > * SugarCRM
> > <
> https://cp14.ixwebhosting.com/psoft/servlet/psoft.hsphere.CP/C298946/111599_0/psoft.hsphere.CP?template_name=easy_app/easyapp.html&stype=7
> >
> > * Zen Cart
> > <
> https://cp14.ixwebhosting.com/psoft/servlet/psoft.hsphere.CP/C298946/111599_0/psoft.hsphere.CP?template_name=easy_app/easyapp.html&stype=37
> >
> > *Support Systems*
> > * CS Live Helper
> > <
> https://cp14.ixwebhosting.com/psoft/servlet/psoft.hsphere.CP/C298946/111599_0/psoft.hsphere.CP?template_name=easy_app/easyapp.html&stype=22
> >
> > * helpcenterlive
> > <
> https://cp14.ixwebhosting.com/psoft/servlet/psoft.hsphere.CP/C298946/111599_0/psoft.hsphere.CP?template_name=easy_app/easyapp.html&stype=10
> >
> > * phpMyFAQ
> > <
> https://cp14.ixwebhosting.com/psoft/servlet/psoft.hsphere.CP/C298946/111599_0/psoft.hsphere.CP?template_name=easy_app/easyapp.html&stype=21
> >
> > *Galleries*
> > * Coppermine Photo Gallery
> > <
> https://cp14.ixwebhosting.com/psoft/servlet/psoft.hsphere.CP/C298946/111599_0/psoft.hsphere.CP?template_name=easy_app/easyapp.html&stype=4
> >
> > * Gallery (1)
> > <
> https://cp14.ixwebhosting.com/psoft/servlet/psoft.hsphere.CP/C298946/111599_0/psoft.hsphere.CP?template_name=easy_app/easyapp.html&stype=23
> >
> > *Misc.*
> > * DokuWiki
> > <
> https://cp14.ixwebhosting.com/psoft/servlet/psoft.hsphere.CP/C298946/111599_0/psoft.hsphere.CP?template_name=easy_app/easyapp.html&stype=31
> >
> > * FormMail
> > <
> https://cp14.ixwebhosting.com/psoft/servlet/psoft.hsphere.CP/C298946/111599_0/psoft.hsphere.CP?template_name=easy_app/easyapp.html&stype=32
> >
> > * phpESP
> > <
> https://cp14.ixwebhosting.com/psoft/servlet/psoft.hsphere.CP/C298946/111599_0/psoft.hsphere.CP?template_name=easy_app/easyapp.html&stype=11
> >
> > * phpgroupware
> > <
> https://cp14.ixwebhosting.com/psoft/servlet/psoft.hsphere.CP/C298946/111599_0/psoft.hsphere.CP?template_name=easy_app/ea

Re: [PLUG] What CMS to use ?

2015-07-10 Thread Louis Kowolowski
If you go with something that is PHP based, be careful. There are *lots* of 
exploits for PHP.

What kind of requirements do you have?


> On Jul 10, 2015, at 12:18 PM, Nat Taylor  wrote:
> 
> You can read about them here: http://www.opensourcecms.com/
> 
> IMO, WordPress simplest, drupal is super powerful and extensible, and
> joomla has a pretty admin interface.
> …
> ___
> PLUG mailing list
> PLUG@lists.pdxlinux.org
> http://lists.pdxlinux.org/mailman/listinfo/plug

--
Louis Kowolowskilou...@cryptomonkeys.org 

Cryptomonkeys:   http://www.cryptomonkeys.com/ 


Making life more interesting for people since 1977

___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


[PLUG] Using GitHub Download

2015-07-10 Thread Rich Shepard
   An update to a 5-year-old book is being written with code available on the
project's github page. The author asks for feedback on the developing second
edition, and I need to learn how to use the subject of the book (ggplot2 for
R graphics).

   My Web search taught me that there's a 'download everything as a .zip
file' button on each project page. I used that link and now have a local 
directory
that is supposed to be the entire source, but I cannot find the *.tex files
to compile. Do I need a github account to get everything needed to build the
document locally?

   Suggestions and advice appreciated.

Rich
___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] Using GitHub Download

2015-07-10 Thread Larry Brigman
The zip file from a release should have everything from that project that
is expected to use the project.  If not then that should probably be opened
as an issue.
To open an issue you probably do need a github account.


On Fri, Jul 10, 2015 at 2:44 PM, Rich Shepard 
wrote:

>An update to a 5-year-old book is being written with code available on
> the
> project's github page. The author asks for feedback on the developing
> second
> edition, and I need to learn how to use the subject of the book (ggplot2
> for
> R graphics).
>
>My Web search taught me that there's a 'download everything as a .zip
> file' button on each project page. I used that link and now have a local
> directory
> that is supposed to be the entire source, but I cannot find the *.tex files
> to compile. Do I need a github account to get everything needed to build
> the
> document locally?
>
>Suggestions and advice appreciated.
>
> Rich
> ___
> PLUG mailing list
> PLUG@lists.pdxlinux.org
> http://lists.pdxlinux.org/mailman/listinfo/plug
>
___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] Using GitHub Download

2015-07-10 Thread Larry Brigman
You could try it from a git clone of the project.

On Fri, Jul 10, 2015 at 2:53 PM, Larry Brigman 
wrote:

> The zip file from a release should have everything from that project that
> is expected to use the project.  If not then that should probably be opened
> as an issue.
> To open an issue you probably do need a github account.
>
>
> On Fri, Jul 10, 2015 at 2:44 PM, Rich Shepard 
> wrote:
>
>>An update to a 5-year-old book is being written with code available on
>> the
>> project's github page. The author asks for feedback on the developing
>> second
>> edition, and I need to learn how to use the subject of the book (ggplot2
>> for
>> R graphics).
>>
>>My Web search taught me that there's a 'download everything as a .zip
>> file' button on each project page. I used that link and now have a local
>> directory
>> that is supposed to be the entire source, but I cannot find the *.tex
>> files
>> to compile. Do I need a github account to get everything needed to build
>> the
>> document locally?
>>
>>Suggestions and advice appreciated.
>>
>> Rich
>> ___
>> PLUG mailing list
>> PLUG@lists.pdxlinux.org
>> http://lists.pdxlinux.org/mailman/listinfo/plug
>>
>
>
___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] Using GitHub Download

2015-07-10 Thread Rich Shepard
On Fri, 10 Jul 2015, Larry Brigman wrote:

> You could try it from a git clone of the project.

   Thanks, Larry. I'll work on this over the weekend. Either the download or
another approach.

Rich
___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


[PLUG] Desktop machine failures

2015-07-10 Thread Denis Heidtmann
Well, it is at it again.  Second boot of the day I got the same error I got
a 6 days ago:  "Error 16: Inconsistent file system structure. Press any key
to continue."
A key press gets me to the menu of OS versions.  On choosing the usual
(12.04) I get partway into the Ubuntu startup, then a black screen with a
flashing cursor.  ^ALT DEL soon produces the msg.
"Busybox v 1.18.5 (Ubuntu1:1.18.5-1ubuntu 4.1) built-in shell (ash)"
"Enter help for a list of built-in commands"
Prompt is (initramfs).  I enter exit.  Then I get the kernel panic
messages.  (They are identical to those I got the last time.

This time I used e2fsck -fvp /dev/sda1 from the Ubuntu 12.04 live CD.  No
errors found.

Then I ran the smart self-test in palimpsest (a gui).  It took two hours,
but found nothing wrong, as far as I can tell from the report.

System seems fine at the moment.

Short of a new computer, any ideas?

Thanks,

-Denis
___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] Desktop machine failures

2015-07-10 Thread David
A shot in the dark, but what kind of drive are you using for your root 
filesystem? I read recently about TRIM on SSD being broken in some 
cases, so if you have traditional spinning platters this is going down 
the wrong path.

david


On 07/10/2015 06:03 PM, Denis Heidtmann wrote:
> Well, it is at it again.  Second boot of the day I got the same error I got
> a 6 days ago:  "Error 16: Inconsistent file system structure. Press any key
> to continue."
> A key press gets me to the menu of OS versions.  On choosing the usual
> (12.04) I get partway into the Ubuntu startup, then a black screen with a
> flashing cursor.  ^ALT DEL soon produces the msg.
> "Busybox v 1.18.5 (Ubuntu1:1.18.5-1ubuntu 4.1) built-in shell (ash)"
> "Enter help for a list of built-in commands"
> Prompt is (initramfs).  I enter exit.  Then I get the kernel panic
> messages.  (They are identical to those I got the last time.
>
> This time I used e2fsck -fvp /dev/sda1 from the Ubuntu 12.04 live CD.  No
> errors found.
>
> Then I ran the smart self-test in palimpsest (a gui).  It took two hours,
> but found nothing wrong, as far as I can tell from the report.
>
> System seems fine at the moment.
>
> Short of a new computer, any ideas?
>
> Thanks,
>
> -Denis
> ___
> PLUG mailing list
> PLUG@lists.pdxlinux.org
> http://lists.pdxlinux.org/mailman/listinfo/plug
>

___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] Using GitHub Download

2015-07-10 Thread Nat Taylor
Read the README.md file that comes with the project.  If you scroll down
its going to be printed out on the screen, too, at the bottom of the list
of files.

If this is the one: https://github.com/hadley/ggplot2-book
then you read the README.md which I have pasted below.  Ideally you have
RStudio installed, note the highlighted part.  Otherwise you type the
commands on the command line.

You're going to need git installed, you can install it in memory using the
package manager of the liveCD if its not included, otherwise install it on
your linux machine first, and you are also going to need gcc (I think) and
the dependencies listed in the next section:
Build the book

You can build the pdf by cloning this repo and running make:

$ git clone https://github.com/hadley/ggplot2-book.git
$ cd ggplot2-book
$ make

If you use RStudio, you can press Cmd/Ctrl + Shift + B to run make.



Installing dependencies

To successfully build this book, you'll need R package development
prerequisites

, pandoc and pandoc-citeproc ,
potentially the Inconsolata font
, and a number of R
packages. The CRAN packages we depend on are listed in the DESCRIPTION, so
you can install them quickly via devtools
:

devtools::install_deps("path/to/ggplot2-book", dependencies = TRUE)

There are also a couple GitHub packages which we depend on:

devtools::install_github(c("adletaw/captioner", "hadley/bookdown"))


On Fri, Jul 10, 2015 at 2:59 PM, Rich Shepard 
wrote:

> On Fri, 10 Jul 2015, Larry Brigman wrote:
>
> > You could try it from a git clone of the project.
>
>Thanks, Larry. I'll work on this over the weekend. Either the download
> or
> another approach.
>
> Rich
> ___
> PLUG mailing list
> PLUG@lists.pdxlinux.org
> http://lists.pdxlinux.org/mailman/listinfo/plug
>
___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] Desktop machine failures

2015-07-10 Thread Denis Heidtmann
They spin.  Thanks for trying.

-Denis

On Fri, Jul 10, 2015 at 6:20 PM, David  wrote:

> A shot in the dark, but what kind of drive are you using for your root
> filesystem? I read recently about TRIM on SSD being broken in some
> cases, so if you have traditional spinning platters this is going down
> the wrong path.
>
> david
>
>
> On 07/10/2015 06:03 PM, Denis Heidtmann wrote:
> > Well, it is at it again.  Second boot of the day I got the same error I
> got
> > a 6 days ago:  "Error 16: Inconsistent file system structure. Press any
> key
> > to continue."
> > A key press gets me to the menu of OS versions.  On choosing the usual
> > (12.04) I get partway into the Ubuntu startup, then a black screen with a
> > flashing cursor.  ^ALT DEL soon produces the msg.
> > "Busybox v 1.18.5 (Ubuntu1:1.18.5-1ubuntu 4.1) built-in shell (ash)"
> > "Enter help for a list of built-in commands"
> > Prompt is (initramfs).  I enter exit.  Then I get the kernel panic
> > messages.  (They are identical to those I got the last time.
> >
> > This time I used e2fsck -fvp /dev/sda1 from the Ubuntu 12.04 live CD.  No
> > errors found.
> >
> > Then I ran the smart self-test in palimpsest (a gui).  It took two hours,
> > but found nothing wrong, as far as I can tell from the report.
> >
> > System seems fine at the moment.
> >
> > Short of a new computer, any ideas?
> >
> > Thanks,
> >
> > -Denis
> > ___
> > PLUG mailing list
> > PLUG@lists.pdxlinux.org
> > http://lists.pdxlinux.org/mailman/listinfo/plug
> >
>
> ___
> PLUG mailing list
> PLUG@lists.pdxlinux.org
> http://lists.pdxlinux.org/mailman/listinfo/plug
>
___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] Desktop machine failures

2015-07-10 Thread Jim Garrison
On 7/10/2015 8:00 PM, Denis Heidtmann wrote:
>>> This time I used e2fsck -fvp /dev/sda1 from the Ubuntu 12.04 live CD.  No
>>> errors found.

How is your disk partitioned? /dev/sda1 may not be the
damaged partition.

-- 
Jim Garrison (j...@acm.org)
PGP Keys at http://www.jhmg.net RSA 0x04B73B7F DH 0x70738D88
___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] Desktop machine failures

2015-07-10 Thread Galen Seitz
On 07/10/15 18:03, Denis Heidtmann wrote:
> Well, it is at it again.  Second boot of the day I got the same error I got
> a 6 days ago:  "Error 16: Inconsistent file system structure. Press any key
> to continue."
> A key press gets me to the menu of OS versions.  On choosing the usual
> (12.04) I get partway into the Ubuntu startup, then a black screen with a
> flashing cursor.  ^ALT DEL soon produces the msg.
> "Busybox v 1.18.5 (Ubuntu1:1.18.5-1ubuntu 4.1) built-in shell (ash)"
> "Enter help for a list of built-in commands"
> Prompt is (initramfs).  I enter exit.  Then I get the kernel panic
> messages.  (They are identical to those I got the last time.
> 
> This time I used e2fsck -fvp /dev/sda1 from the Ubuntu 12.04 live CD.  No
> errors found.
> 
> Then I ran the smart self-test in palimpsest (a gui).  It took two hours,
> but found nothing wrong, as far as I can tell from the report.
> 
> System seems fine at the moment.
> 
> Short of a new computer, any ideas?

As someone else mentioned, how is your disk partitioned?  You are
checking sda1, but are there other partitions/filesystems on your disk?
 You should confirm that it's not actually a different filesystem that
is failing.

Re-seat all cables and connectors.

Confirm all fans are operating.

Swap power supplies.

Swap disks.


galen
-- 
Galen Seitz
gal...@seitzassoc.com
___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug