Menu bar empty

Hi, 

after an update we did on an instance ( using a simple mdl that installs a new module ) the top menu bar is completely empty. Could this been happening due to file permissions on the server? What files are used to build up the main menu? 

Parents Reply
  • The {} is the output of the find, so it runs the chmod on whatever the find finds. 
    The \; closes the command.

    So,
    sudo find . -type d -exec chmod 775 {} \;

    is basically "find things of type directory", "execute chmod 775 on what you found and nothing more". 

    I suppose you could have multiple commands to execute on what you found and the \; would just indicate the end of your series of commands. Though, personally, I've never used it with more than one at a time.

Children