Question. login to fluxbox. autostart command. don't sudo. ?

The system includes a normal user (via the console).
He called FLUXBOX.
How can I make this addition to the three revealed a terminal window as root with some of these teams?
p.s: without using sudo. all automatically should be.

I'm sorry. I don't understand. Is this correct?
boot -> normal user login -> start X and Fluxbox -> autostart terminal window as root
Add "sudo xterm &" in the file "~/.fluxbox/startup".
To remove the "sudo" password, use "visudo". http://wiki.archlinux.org/index.php/Sudo
I think an automatic xterm with root is dangerous.

Similar Messages

  • Actions; how do I find what commands don't work in actions?

    [Photoshop CS4, MacOS 10.5.8]
    I'm frustrated in trying to create an action make a channel into a layer. 
    Sounds easy, right?
    I'm got hung up on several issues though, which raised a bigger question:
    • In the approach I'm taking, I want to select the target channel during the action. 
    When I click on Channel X during recording, the action records the step as
    "Select X Channel"
    Unfortunately the particular channel is hardwired into this command so that would
    mean making three different versions of the action.  I have tried looking for a
    more general form of the command, like Select Channel that then takes the
    particular channel as a parameter, e.g. from a drop-down menu.  That at least
    would work in an action. But no such.  (I tried some other ideas like using
    Calculate or Channel Mixer which come close but not close enough.)
    There's a more lame design: selecting the channel before recording the action, then
    creating and deleting extra "internal" channels in the action -- it does work but it
    isn't where I started so I lost a lot of time trying to find something that appears not
    to exist.
    • The lurking question here is how you find
    (a) whether there even exists an actual generic form of a command
      (b) whether the command works in a way that makes it possible to use in an action
    Web searches don't lend themselves to finding information like "what commands
    don't work in actions".  I would really appreciate pointers to any in-depth documents
    on what commands a user can't get at for recording in actions.

    Sorry about the last post, but i knew i had recorded selecting channels by the number instead of the name.
    Well i found one of my older actions which must have been recorded in an old version of photoshop that named the channels with numbers.
    Anyway, see if this action helps you any. (you have to copy the steps to your action)
    https://acrobat.com/#d=DgfhMCZzmUgKlefycUsnJg
    In an RGB color image: channel 1 is the red channel
                             and
    channel 9 is the alpha 6 channel
    Message was edited by: R_Kelly

  • Inconsistant Question Login Behavior

    Hello all,
    I am working on implementing our requirements for forgotten password authentication questions. We have a somewhat unique policy regarding this. We want to always have a specific question asked. Then have 2 questions asked that are chosen from a random set. Then have 1 user defined question asked. Since there is no out of the box policy that captures this, I have been working to implement a solution. What I came up with was to redefine the fieldloop in the Question Login Form. Instead of looping through 'questions[*].name' I have it evaluate an expression I wrote. The expression selects questions based on the policy I outlined above. The form is working great. It displays the proper questions in line with our policy. The problem is the authentication of the questions. I have the policy set to 'any'. If I set it to 4 questions, which is how many I am asking, then the application will never let me authenticate. It will continually give me the 'Please answer at least 4 questions' error. At the suggestion of Dana from Aegis, I set the any policy to require only 1 question. The two required questions (the user defined and the admin defined questions) always work fine. However the two random questions work only sporadically. Sometimes I have to enter the answer for one of the random questions as many as 3 or 4 times before it will get excepted. This behavior seems weird. It is not consistent at all.
    We are using IdM 6.0 with no service packs. Has anyone ran into this before? Does anyone have any advice about it?

    Hi Jim, I had to build the following workflow to implement the password reset. You can tweak activity 3 'Select Questions' to do what you need. This workflow is not finished; it always selects the first three questions; but it I think it is usable.
    Have fun with it. Theo
    <?xml version='1.0' encoding='UTF-8'?>
    <!DOCTYPE TaskDefinition PUBLIC 'waveset.dtd' 'waveset.dtd'>
    <TaskDefinition authType='UserAdminTask' name='Task-FindLostPassword' creator='therijn' createDate='1145528788789' lastModifier='therijn' lastModDate='1146135380583' lastMod='536' wstype='ProvisioningTask' taskType='Workflow' executor='com.waveset.workflow.WorkflowExecutor' syncControlAllowed='true' execMode='sync' execLimit='0' resultLimit='3600' resultOption='delete' visibility='run' progressInterval='0'>
      <Extension>
        <WFProcess name='Task-FindLostPassword' title='Find Lost Password' maxSteps='0'>
          <Comments>This process allows an anonymous user to authenticate using the security questions and reset the password.</Comments>
          <Variable name='actionWF' value='findPassword'>
            <Comments>This attribute is used to distinguish between the various actions on the forms.</Comments>
          </Variable>
          <Variable name='userview'/>
          <Variable name='selectedQuestions'/>
          <Variable name='answersOK'>
            <Boolean>true</Boolean>
          </Variable>
          <Variable name='attemptsCount'>
            <Integer>0</Integer>
          </Variable>
          <Activity id='0' name='start'>
            <Transition to='Get Questions'/>
            <WorkflowEditor x='43' y='10'/>
          </Activity>
          <Activity id='1' name='Get Questions'>
            <Action id='0' application='com.waveset.session.WorkflowServices'>
              <Argument name='op' value='getView'/>
              <Argument name='type' value='User'/>
              <Argument name='id'>
                <ref>accountId</ref>
              </Argument>
              <Argument name='options'>
                <Map>
                  <MapEntry key='noFetch' value='true'/>
                </Map>
              </Argument>
              <Return from='view' to='userview'/>
            </Action>
            <Transition to='Check Email'/>
            <WorkflowEditor x='122' y='10'/>
          </Activity>
          <Activity id='2' name='Check Email'>
            <Transition to='SetExitMessage'>
              <isnull>
                <ref>userview.accounts[LDAP].email</ref>
              </isnull>
            </Transition>
            <Transition to='SetExitMessage'>
              <isFalse>
                <rule name='RLE-emailValidityAndDomainCheck'>
                  <argument name='emailAddress' value='$(userview.accounts[LDAP].email)'/>
                </rule>
              </isFalse>
            </Transition>
            <Transition to='Select Questions'/>
            <WorkflowEditor x='217' y='10'/>
          </Activity>
          <Activity id='3' name='Select Questions'>
            <Action id='0' name='Select questions'>
              <expression>
                <block>
                  <defvar name='counter'>
                    <i>0</i>
                  </defvar>
                <dolist name='iterator'>
                  <ref>userview.waveset.questions</ref>
                  <block>
                    <cond>
                        <and>
                          <lt>
                            <ref>counter</ref>
                            <i>3</i>
                          </lt>
                          <not>
                            <isnull>
                              <invoke name='get'>
                                <ref>iterator</ref>
                                <s>answer</s>
                              </invoke>
                            </isnull>
                          </not>
                        </and>
                        <block>
                          <set name='counter'>
                            <add>
                              <ref>counter</ref>
                              <i>1</i>
                            </add>
                          </set>
                        <set name='selectedQuestions[$(name)].answer'>
                          <s></s>
                        </set>
                        <set name='selectedQuestions[$(name)].origional_answer'>
                          <invoke name='get'>
                            <ref>iterator</ref>
                            <s>answer</s>
                          </invoke>
                        </set>
                        <set name='selectedQuestions[$(name)].question'>
                          <invoke name='get'>
                            <ref>iterator</ref>
                            <s>question</s>
                          </invoke>
                        </set>
                        <set name='selectedQuestions[$(name)].name'>
                          <invoke name='get'>
                            <ref>iterator</ref>
                            <s>name</s>
                          </invoke>
                        </set>
                      </block>
                    </cond>
                  </block>
                </dolist>
                </block>
              </expression>
            </Action>
            <Transition to='SetExitMessage'>
              <lt>
                <length>
                  <ref>selectedQuestions</ref>
                </length>
                <i>3</i>
              </lt>
            </Transition>
            <Transition to='Get Answers'/>
            <WorkflowEditor x='318' y='125'/>
          </Activity>
          <Activity id='4' name='Get Answers'>
            <Variable name='formButton'/>
            <ManualAction id='0' name='Show Authentication Answers' timeout='15' syncExec='true'>
              <WorkItemDescription>
                <s>Show Authentication Answers</s>
              </WorkItemDescription>
              <Owner>
                <ref>WF_CASE_OWNER</ref>
              </Owner>
              <Form noDefaultButtons='true'>
                <Display class='EditForm'>
                  <Property name='title' value='Answers Authentication Questions'/>
                  <Property name='subTitle' value='If you answer all questions correct your password will be reset and send to your email address. The answers and not case sensitive. Do not attempt to guess the answers if the name is not your name.'/>
                </Display>
                <Field name='variables.userview.accounts[LDAP].fullname'>
                  <Display class='Label'>
                    <Property name='title' value='_FM_FULLNAME'/>
                  </Display>
                </Field>
                <Field>
                  <Display class='Label'>
                    <Property name='value' value='Please answer all questions correct.'/>
                    <Property name='font' value='testFontStyle'/>
                    <Property name='color' value='#ff0000'/>
                  </Display>
                  <Disable>
                    <isTrue>
                      <ref>variables.answersOK</ref>
                    </isTrue>
                  </Disable>
                </Field>
                <Field>
                  <FieldLoop for='name' in='variables.selectedQuestions[*].name'>
                    <Field name='variables.selectedQuestions[$(name)].answer'>
                      <Display class='Text'>
                        <Property name='title'>
                          <concat>
                            <ref>variables.selectedQuestions[<ref>name</ref>].question</ref>
                            <s>:</s>
                          </concat>
                        </Property>
                        <Property name='width' value='300'/>
                      </Display>
                    </Field>
                  </FieldLoop>
                </Field>
                <Field name='complete' type='string'>
                  <Default>
                    <s>true</s>
                  </Default>
                </Field>
                <Field button='true'>
                  <Display class='Button'>
                    <Property name='name' value='variables.formButton'/>
                    <Property name='label' value='Continue'/>
                    <Property name='command' value='Save'/>
                    <Property name='value' value='continue'/>
                  </Display>
                </Field>
                <Field button='true'>
                  <Display class='Button'>
                    <Property name='name' value='variables.formButton'/>
                    <Property name='label' value='Cancel'/>
                    <Property name='command' value='SaveNoValidate'/>
                    <Property name='value' value='cancel'/>
                  </Display>
                </Field>
              </Form>
            </ManualAction>
            <Transition to='SetCanceledMessage'>
              <eq>
                <ref>formButton</ref>
                <s>cancel</s>
              </eq>
            </Transition>
            <Transition to='Check Attempts'/>
            <WorkflowEditor x='421' y='137'/>
          </Activity>
          <Activity id='5' name='Check Attempts'>
            <Action id='0'>
              <expression>
                <set name='attemptsCount'>
                  <add>
                    <i>1</i>
                    <ref>attemptsCount</ref>
                  </add>
                </set>
              </expression>
            </Action>
            <Transition to='SetTooManyAttemptsMessage'>
              <gt>
                <ref>attemptsCount</ref>
                <i>3</i>
              </gt>
            </Transition>
            <Transition to='Check Answers'/>
            <WorkflowEditor x='540' y='137'/>
          </Activity>
          <Activity id='6' name='Check Answers'>
            <Action id='0'>
              <expression>
                <block>
                  <set name='answersOK'>
                    <Boolean>true</Boolean>
                  </set>
                  <dolist name='iterator'>
                    <ref>selectedQuestions</ref>
                    <cond>
                      <neq>
                        <upcase>
                          <trim>
                            <invoke name='get'>
                              <ref>iterator</ref>
                              <s>answer</s>
                            </invoke>
                          </trim>
                        </upcase>
                        <invoke name='get'>
                          <ref>iterator</ref>
                          <s>origional_answer</s>
                        </invoke>
                      </neq>
                      <set name='answersOK'>
                        <Boolean>false</Boolean>
                      </set>
                    </cond>
                  </dolist>
                  <cond>
                    <isFalse>
                      <ref>answersOK</ref>
                    </isFalse>
                    <s>You must correctly answer all 3 questions</s>
                  </cond>
                </block>
              </expression>
            </Action>
            <Transition to='Get Answers'>
              <isFalse>
                <ref>answersOK</ref>
              </isFalse>
            </Transition>
            <Transition to='resetPassword'/>
            <WorkflowEditor x='468' y='248'/>
          </Activity>
          <Activity id='7' name='SetResetPasswordMessage'>
            <Comments>Too many attemps; lock the account will be locked for the next 30 minutes.</Comments>
            <Action id='0' application='SET_RESULT'>
              <Argument name='name' value='WFExitMessage'/>
              <Argument name='type' value='String'/>
              <Argument name='value' value='Your password has been reset. Please check your email.'/>
            </Action>
            <Transition to='end'/>
            <WorkflowEditor x='618' y='166'/>
          </Activity>
          <Activity id='8' name='SetTooManyAttemptsMessage'>
            <Comments>Too many attemps; lock the account will be locked for the next 30 minutes.</Comments>
            <Action id='0' application='SET_RESULT'>
              <Argument name='name' value='WFExitMessage'/>
              <Argument name='type' value='String'/>
              <Argument name='value' value='Too many attemps; your account will be locked for the next 30 minutes.'/>
            </Action>
            <Transition to='end'/>
            <WorkflowEditor x='626' y='27'/>
          </Activity>
          <Activity id='9' name='SetExitMessage'>
            <Comments>Give one common error message so that hackers cannot 'guess' information about or users.</Comments>
            <Action id='0' application='SET_RESULT'>
              <Argument name='name' value='WFExitMessage'/>
              <Argument name='type' value='String'/>
              <Argument name='value' value='Due to a problem with your data we cannot authenticate you using the security questions. Your UserID does not exists, your email address is missing or invalid or you have not answered the security questions.'/>
            </Action>
            <Transition to='end'/>
            <WorkflowEditor x='319' y='10'/>
          </Activity>
          <Activity id='10' name='end'>
            <WorkflowEditor x='421' y='10'/>
          </Activity>
          <Activity id='11' name='resetPassword'>
            <Action id='0' name='Prelude'>
              <expression>
                <set name='actionWF'>
                  <s>resetPassword</s>
                </set>
              </expression>
            </Action>
            <Action id='1' process='Reset the Password'>
              <Argument name='adminEmailAddress'/>
              <Argument name='notificationEmailToAddress'>
                <Boolean>false</Boolean>
              </Argument>
              <Argument name='accountId' value='$(accountId)'/>
              <Return from='result' to='result'/>
              <SubProcess>
                <ObjectRef type='Configuration' name='TaskSubProc-ResetPassword'/>
              </SubProcess>
            </Action>
            <Transition to='SetResetPasswordMessage'/>
            <WorkflowEditor x='698' y='248'/>
          </Activity>
          <Activity id='12' name='SetCanceledMessage'>
            <Comments>Set the message that the action is canceled.</Comments>
            <Action id='0' application='SET_RESULT'>
              <Argument name='name' value='WFExitMessage'/>
              <Argument name='type' value='String'/>
              <Argument name='value' value='You canceled answering the authentication questions.'/>
            </Action>
            <Transition to='end'/>
            <WorkflowEditor x='403' y='90'/>
          </Activity>
        </WFProcess>
      </Extension>
      <Description>Reset the User's password after the security questions are answered correctly.</Description>
      <MemberObjectGroups>
        <ObjectRef type='ObjectGroup' id='#ID#Top' name='Top'/>
      </MemberObjectGroups>
    </TaskDefinition>

  • TS1702 Asking for security question to be answered that I don't know the answer to.

    Itunes is asking fo security questions to be answered that I don't seem to know the answers to. Need help fixing this problem.

    If you have a rescue email address (which is not the same thing as an alternate email address) set up on your account then you can try going to https://appleid.apple.com/ and click 'Manage your Apple ID' on the right-hand side of that page and log into your account. Then click on 'Password and Security' on the left-hand side of that page and on the right-hand side you might see an option to send security question reset info to your rescue email address.
    If you don't have a rescue email address then see if the instructions on this user tip helps : https://discussions.apple.com/docs/DOC-4551

  • OS X is asking the answer to a security question I never authorized. I don't know the answer. What do I do?

    I upgraded to Mavericks and the security program is asking for answers to security questions I never authorized, so I don't have the answer. What do I do?

    The Three Best Alternatives for Security Questions and Rescue Mail
        1. Use Apple's Express Lane.
              Go to https://expresslane.apple.com ; click 'See all products and services' at the
              bottom of the page. In the next page click 'More Products and Services, then
              'Apple ID'. In the next page select 'Other Apple ID Topics' then 'Forgotten Apple
              ID security questions' and click 'Continue'. Please be patient waiting for the return
              phone call. It will come in time depending on how heavily the servers are being hit.
         2.  Call Apple Support in your country: Customer Service: Contact Apple support.
         3.  Rescue email address and how to reset Apple ID security questions.
    A substitute for using the security questions is to use 2-step verification:
    Two-step verification FAQ Get answers to frequently asked questions about two-step verification for Apple ID.

  • Help please! My macbook air (2015) startup showed a folder with question mark so i tried "Command   R" for internet recovery but after few minutes it stopped and showed error.. Please hepl me!

    Help please! My macbook air (2015) startup showed a folder with question mark so i tried "Command   R" for internet recovery but after few minutes it stopped and showed error.. Please hepl me!

    Startup – Question Mark
    Startup Issues - Resolve
    Startup Issues - Resolve (2)
    Startup Issues - Resolve (3)

  • HT201363 I want to change security question but the problem is i don't know the rescue email what can i do ?

    I want to change security question but the problem is i don't know the rescue email what can i do ?
    Please answer me quickly

    Alternatives for Help Resetting Security Questions and/or Rescue Mail
         1. If you have a valid rescue email address, then use this procedure:
             Rescue email address and how to reset Apple ID security questions.
         2. Fill out and submit this form. Select the topic, Account Security. You must
             have a Rescue Email to use this option.
         3. This is the only option if you do not already have a valid Rescue Email.
             These are telephone numbers for contacting Apple Support in your country.
             Apple ID- Contacting Apple for help with Apple ID account security. Select
             the appropriate country and call. Ask to speak to the Account Security Team.
    Note: If you have already forgotten your security questions, then you cannot
             set up a rescue email address in order to reset them. You must set up
             the rescue email address beforehand.
    Your Apple ID: Manage My Apple ID.
                             Apple ID- All about Apple ID security questions.

  • Function Keys and Power Commands Don't Respond

    I've encountered an odd intermittent problem with my iBook G3 900. On certain boots the following issues crop up:
    - Function keys are non-responsive. Expose, Volume, Brightness, and Eject all stop working.
    - Power button doesn't respond. Also, software power commands don't respond. The only way to shut down the system is to do a force shutdown by holding down the power button for four seconds (or other unpleasant things like unplugging the power and the battery, which I refuse to do except under the most dire circumstances).
    - "About This Mac" refuses to load. Sometimes I see the window appear, but it parks itself at the top left of the screen where I can't get to the window bar, and Expose obviously doesn't help.
    Now as I said, this problem is intermittent. It only seems to occur on certain boots, but it's incomprehensibly annoying when it does appear. The iBook is a secondary system, so I have barely anything on it and I don't do anything crazy with as far as software goes. All I know is that the problem appeared after I rebooted after installing SideTrack, but try as I can I can't seem to link my problem with aforementioned app. If the problem does assert itself, I force a shutdown, and it goes away on the next boot.
    Any thoughts?
    iBook G3 900 Dual USB   Mac OS X (10.4.7)  

    Hi, and welcome to Apple Discussions.
    One of the first troubleshooting procedures to try when you are seeing operational anomalies is to reset the PMU.
    What is the hard drive capacity and how much space remains available on it? Sometimes strange things start to happen when you get down to less than 5 GB of free hard drive space.

  • HT5312 How do I reset my security questions in my apple account, I don´t remember the answers!

    How do I reset my security questions in my apple account, I don´t remember the answers!

    Apple ID security issues -
    Call Apple Care and ask for the Account Security Team. They can assist you with your issue.

  • Verify Email for Question Login

    Hello all,
    I am trying to verify another data value, such as a users email (just an example) during the forgotten password process. I can add the field to the Question Login Form, but I do not see how to carry it over to the Question Login workflow. The Question Login workflow seems to take in information after an valid or not valid login decision has been made. Where is this decision made? I need to modify this decision making process to include my own variables...

    As requested:
    getRandomIndexes:
    <Rule name='getRandomIndexes'>
    <Description>Return a list of random indexes in the range provided.</Description>
    <RuleArgument name='startOfRange'>
    <Comments>The begining of the range for the indexes.</Comments>
    </RuleArgument>
    <RuleArgument name='endOfRange'>
    <Comments>The end of the range for the indexes.</Comments>
    </RuleArgument>
    <RuleArgument name='numberOfIndexes'>
    <Comments>The number of random indexes to return.</Comments>
    </RuleArgument>
    <block>
    <defvar name='randomInt'>
    <rule name='getRandomIndex'>
    <argument name='startOfRange' value='$(startOfRange)'/>
    <argument name='endOfRange' value='$(endOfRange)'/>
    </rule>
    </defvar>
    <defvar name='indexList'>
    <list/>
    </defvar>
    <defvar name='forLoopIndex'>
    <i>0</i>
    </defvar>
    <while>
    <gt>
    <ref>numberOfIndexes</ref>
    <ref>forLoopIndex</ref>
    </gt>
    <while>
    <contains>
    <ref>indexList</ref>
    <ref>randomInt</ref>
    </contains>
    <set name='randomInt'>
    <rule name='getRandomIndex'>
    <argument name='startOfRange' value='$(startOfRange)'/>
    <argument name='endOfRange' value='$(endOfRange)'/>
    </rule>
    </set>
    </while>
    <append name='indexList'>
    <ref>randomInt</ref>
    </append>
    <set name='forLoopIndex'>
    <add>
    <ref>forLoopIndex</ref>
    <i>1</i>
    </add>
    </set>
    </while>
    <ref>indexList</ref>
    </block>
    </Rule>
    And just for fun, here is getRandomIndex:
    <Rule name='getRandomIndex'>
    <Description>Return a random index in the range provided.</Description>
    <RuleArgument name='startOfRange'>
    <Comments>The begining of the index range.</Comments>
    </RuleArgument>
    <RuleArgument name='endOfRange'>
    <Comments>The ed of the range to provide an index between.</Comments>
    </RuleArgument>
    <block>
    <defvar name='possibleIndex'>
    <mod>
    <invoke name='nextInt' class='com.waveset.util.RandomGen'/>
    <sub>
    <ref>endOfRange</ref>
    <ref>startOfRange</ref>
    </sub>
    </mod>
    </defvar>
    <set name='possibleIndex'>
    <cond>
    <lt>
    <ref>possibleIndex</ref>
    <i>0</i>
    </lt>
    <mult>
    <i>-1</i>
    <ref>possibleIndex</ref>
    </mult>
    <ref>possibleIndex</ref>
    </cond>
    </set>
    <set name='possibleIndex'>
    <add>
    <ref>possibleIndex</ref>
    <ref>startOfRange</ref>
    </add>
    </set>
    <ref>possibleIndex</ref>
    </block>
    </Rule>

  • Please can someone help, I have a question in my coursework that I don't know the answer to! Explain how PostScript fits into the design process?

    Please can someone help, I have a question in my coursework that I don't know the answer to! Explain how PostScript fits into the design process?

    The simple answer is that today PostScript really doesn't fit at all into the Graphic Design process, at least in terms of what the graphic designer needs to know.
    Historically, though, the PostScript imaging model, first introduced circa 1984 provided the basis for the initial publishing software including PageMaker, Illustrator, QuarkXPress, and even Ventura Publisher. This imaging model included support for continuously scalable text, vector, and raster imagery as well as the concepts of a current transformation matrix that allowed arbitrary scaling, rotation, etc. and multiple color spaces (grayscale, RGB, CMYK, spot, device independent, and color-managed).
    The PostScript imaging model was effectively replaced by the PDF imaging model, a significant superset of the PostScript imaging model, by the time Illustrator 9 and InDesign 2 were released in terms of support of ICC color management, transparency, etc.
    The fact is that a good graphic designed doesn't need to know anything about PostScript or PDF per sé, but rather about the basics of color (such as issues associated with color gamut and what how that affects display and printing), use of text versus vector versus raster images and why one should keep content at the highest level of abstraction all the way to the rendering (or screen) or RIP process for printing. Some knowledge of typography also helps.
              - Dov

  • I am trying to reset my security questions but I want to send my reset security questions to this email that I don't know what it is because I forgot and I can't change it PLEAAAAASE HELP I JUST BOUGHT A HEAP OF MONEY AND I CANT USE IT PLZ :'(

    I am trying to reset my security questions but I want to send my reset security questions to this email that I don't know what it is because I forgot and I can't change it PLEAAAAASE HELP I JUST BOUGHT A HEAP OF MONEY AND I CANT USE IT PLZ :'(

    I would call Apple.

  • When I go to Login and it says "I don't have an account" it doesn't allow me to register

    I had to ask a question in order to register.
    So I answered a question with a question and had to create a new question, when what I really wanted to do was to answer a question which was already there.
    Is this a bug or is it just counter-intuitive?
    Either way I couldn't register without asking a question.
    I would have thought that if you click on "I don't have an account" on the login page that it would take you to a registration page.

    Hi,
    This is a bug. See https://bugzilla.mozilla.org/show_bug.cgi?id=972269
    One of the developers for this site posted in another thread
    ''Ricky Rosario [https://support.mozilla.org/en-US/questions/986343#answer-533597 said]''<blockquote>Looks like you were able to register to ask this question! We just want users to register through the ask a question workflow instead of registering for real need to do so. </blockquote>
    ''Ricky Rosario [https://support.mozilla.org/en-US/questions/986343#answer-533598 said]''
    <blockquote>If you want to help out, we want you to register through the "Get Involved" workflow:
    https://support.mozilla.org/en-US/get-involved </blockquote>
    Hope this answers your question!

  • Questions regarding using the .monitor command to retur a animated image and we would like feedback to a designed webpage that is monitoring a 5kW windturbine:)

    I'm embedding a front panel image in an existing HTML dokument. I would like to use the command .monitor in the URL together with the refresh command so the VI automatic will reload every 20 secund. This actual work, but simultaneous I want to have the possibility to refresh manually so I don't have to wait 20 sec before new values is shown in the display. Is this possible to do?
    Another question: Since the real time display updates 1-2 times a secund the command .monitor is used to get a animated picture of the Real Time Display.
    There are several ways to add animation on to web pages. The techniques used h
    ere are the �server push� and �client pull�which makes the browser repeatedly reloads a changing inline image to provide crude animated sequences. This is not the most efficient way as this result�s in an image being re-transmitted for each frame of the animation. The command .monitor with the attribute refresh and lifespan in the URL trigger this �server push� and �client pull� techniques.
    I use this automatic refresh uploading of the display so that it each time shows different values, is this called crude animation?Then I'm wondering what I'm suppose to use the command lifespan to?I can't see the use of it in my display.....?
    link to the webpage so you can have a look at the display:
    http://134.7.139.176/.monitor?Real%20Time%20Performance.vi&refresh=20
    This is a project that I'm working together with another Norwegian friend. WE are very happy for feedback on our web page and displays go to: http://www.ece.curtin.edu.au/~peersena/ if you would like to view itThanks

    Annis,
    One of the other things to keep in mind is that the generation of an image does take some computing power so having the generation and the acquistion on the same machine is not always ideal. If you're using the machine that is publishing the front panel just to collect data it's not so much of an issue.
    If you really want to monitor in "Real-Time" using Remote Panels (requies LabVIEW 6.1) is your best option. This posting has more information on using Remote Panels and links to some live examples:
    http://exchange.ni.com/servlet/ProcessRequest?RHIVEID=101&RPAGEID=135&HOID=506500000008000000C0660000&UCATEGORY_0=_49_%24_6_&UCATEGORY_S=0&USEARCHCONTEXT_TIER_0=0&USEARCHCONTEXT_TIER_S=0&USEARCHCONTEXT_QUESTION_0=web+control&USEARCHCONTEXT_QUESTION_S=0
    Remote panels makes it possible to control the application remotely as well.
    With .monitor the only way I've been able to manually refresh is to "Shift+Refresh" on the browser.
    Regards,
    Kamran

  • How can I get login.c, passwd.c command source code in Solaris 8.0 ?

    Hi, Everybody,
    How are you doing?
    I have lots of questions.
    Q1)
    I can't rebuild kernel of Solaris 8.0 source.
    If someone has an answer, would you give it to me ?
    It will help for me.
    Q2)
    In addition I want get login.c and passwd.c command source.
    I unziped the CD of Solaris 8.0 source, buf I cannot find the source code for login.c and passwd.c command.
    Would you help me ?
    Thank you

    http://www.4shared.com/file/210566155/c080d93a/db_online.html

Maybe you are looking for

  • Hourglass next to each PDF document in Explorer

    Hi! I am using Acrobat X and running XP Pro SP3. When I am Windows Explorer, whenever I highlight a PDF file with the cursor, the cursor turns into a hourglass for a second or two. Is this normal behavior? If so, can I disable it? I does not happen w

  • No error in PL/SQL, but error in Apex

    Hi All. I have configured the code from the How-to on uploading a spreadsheet to suit my own needs. It is the cut and paste method. In SQL developer I run: BEGIN conversion_upload.process_text('Argentina     Peso     0.3243000     3.0836 Australia   

  • Acrobat reader in Lion?

    I cannot open documents coming into me needing Acrobat since I installed Lion? Can anyone give me advice please?

  • Sharepoint 2013 : Css for Content in WP

    Hello, I Would like to change the colors of the text that is exist in  the Web Part. I use F12 But every Value has different Class . Is ther any class that is general for all content that is displayed in WP ? Thanks! Css for Content in WP

  • Can't download Photoshop CC

    When I try to download Photoshop CC I get this: You are running an operating system that Photoshop no longer supports. Refer to the system requirements for a full list of supported platforms. The creative cloud app lists Photoshop CS6 extended.  Will