Announcement

Collapse
No announcement yet.

sreadahead upstart

Collapse
This topic is closed.
X
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    sreadahead upstart

    I have separate home and system partitions, moreover my system partition (created as extended one) contains several logical parts - / , /usr, /var are separate.

    In such environment sreadahead reports onto console (while booting) exit status -1

    I have revised upstart config for sreadahead and found that:
    Code:
    description   "Read required files in advance"
    
    start on starting mountall
    stop on stopped rc
    I am not sure, since I dont know how to debug sreadahead starting via upstart, but I suspect that it does not do the job due to my /var still not mounted.

    How I can patch this situation and configure the correct state in which sreadahead will start correctly?

    #2
    Re: sreadahead upstart

    Originally posted by molostoff

    How I can patch this situation and configure the correct state in which sreadahead will start correctly?#start on starting mountall
    start on filesystem
    hi, molostoff, good question!

    try the following:
    Code:
    #start on starting mountall
    start on filesystem
    this should help...

    Comment

    Working...
    X