<html>
  <head>
    <meta content="text/html; charset=ISO-8859-1"
      http-equiv="Content-Type">
  </head>
  <body bgcolor="#FFFFFF" text="#000000">
    <div class="moz-cite-prefix">On 08/29/2013 08:27 AM, Daryl McDonald
      wrote:<br>
    </div>
    <blockquote
cite="mid:CAMwtTBBT5GY1B9GYdo+vRUQC-XkMGELFP=4Wra9n-7ZFnLf-rg@mail.gmail.com"
      type="cite">
      <div dir="ltr"><br>
        <div class="gmail_extra"><br>
          <br>
          <div class="gmail_quote">On Thu, Aug 29, 2013 at 11:11 AM,
            Michael <span dir="ltr">&lt;<a moz-do-not-send="true"
                href="mailto:mythtv@blandford.net" target="_blank">mythtv@blandford.net</a>&gt;</span>
            wrote:<br>
            <blockquote class="gmail_quote" style="margin:0px 0px 0px
0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex">
              <div class="im">On 08/29/2013 07:59 AM, Daryl McDonald
                wrote:<br>
                <blockquote class="gmail_quote" style="margin:0px 0px
                  0px
0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex"><br>
                  Of the three commands the first one gets no complaint,
                  with the second attempt I did add the "sudo" preface
                  and still I'm denied:<br>
                  <br>
                  daryl@daryl-A780L3C:~$ SECS=`date -u --date
                  "2013-08-29 10:50:00" +%s`<br>
                  daryl@daryl-A780L3C:~$ sudo echo 0 &gt;
                  /sys/class/rtc/rtc0/wakealarm<br>
                  bash: /sys/class/rtc/rtc0/wakealarm: Permission denied<br>
                  daryl@daryl-A780L3C:~$ sudo echo $SECS &gt;
                  /sys/class/rtc/rtc0/wakealarm<br>
                  bash: /sys/class/rtc/rtc0/wakealarm: Permission denied<br>
                  <br>
                  See! I remain open to suggestions.<br>
                  <br>
                </blockquote>
                <br>
                <br>
              </div>
              This is because the echo is running as root, but the
              redirect is not, hence the permission denied. &nbsp;If you want
              to use sudo you would need to do something like:<br>
              <br>
              sudo sh -c 'echo 0 &gt; /sys/class/rtc/rtc0/wakealarm'<br>
              <br>
              Or just become root and run the command.<span class=""><font
                  color="#888888"><br>
                  <br>
                  Michael</font></span>
              <div class="">
                <div class="h5"><br>
                  <br>
                  _______________________________________________<br>
                  mythtv-users mailing list<br>
                  <a moz-do-not-send="true"
                    href="mailto:mythtv-users@mythtv.org"
                    target="_blank">mythtv-users@mythtv.org</a><br>
                  <a moz-do-not-send="true"
                    href="http://www.mythtv.org/mailman/listinfo/mythtv-users"
                    target="_blank">http://www.mythtv.org/mailman/listinfo/mythtv-users</a></div>
              </div>
            </blockquote>
            <div><br>
            </div>
            <div>My son warned me about becoming root, I am still quite
              a newbie, and it shows, below is what happened when I
              tried the first option:</div>
            <div><br>
            </div>
            <div>&nbsp;daryl@daryl-A780L3C:~$ SECS=`date -u --date
              "2013-08-29 11:45:00" +%s`</div>
            <div>daryl@daryl-A780L3C:~$ sudo sh -c echo 0 &gt;
              /sys/class/rtc/rtc0/wakealarm</div>
            <div>bash: /sys/class/rtc/rtc0/wakealarm: Permission denied</div>
            <div>daryl@daryl-A780L3C:~$ sudo sh -c echo $SECS &gt;
              /sys/class/rtc/rtc0/wakealarm</div>
            <div>bash: /sys/class/rtc/rtc0/wakealarm: Permission denied</div>
            <div>daryl@daryl-A780L3C:~$&nbsp;</div>
            <div><br>
            </div>
            <div>I'm still looking at bricks, this shouldn't be that
              complicated, should it?</div>
            <div><br>
            </div>
            <div>Daryl</div>
          </div>
          <br>
        </div>
      </div>
      <br>
    </blockquote>
    <br>
    You seem to be missing the ' marks before the echo and at the end of
    the line.<br>
    <br>
    Michael<br>
    <br>
  </body>
</html>