Ubuntu 14.04 folder is locked out how to solve
Ls-ll See permissions, and then chmod 777 permissions, which is the same as NTFS under Windows set the user rights, you do not have access to this directory permissions, natural can not create files. If you don't understand these two commands, you can have a man.
Mans LS
Mans chmod
This allows you to view command Help.
Ubuntu 14.04 Right-click Terminal settings
First, to install a package, you can add a "open terminal" menu in the right-click.
sudo apt-get install nautilus-open-terminal
Modify the folder and its subfolder permissions-ubuntu Open the terminal into the directory you need to modify
< Span style= "color: #454545; Font-family:tahoma,helvetica,arial,stheiti; line-height:21px; " > then executes the following command
chmod -r 777 * //
To view the permissions for a Linux file: Ls-l file name
To view permissions for a Linux folder: Ls-ld folder name (in the same directory)
To modify file and folder permissions:
sudo chmod-(on behalf of type) XXX (owner) xxx (group user) xxx (other users)
Common commands for modifying permissions:
sudo chmod 600xxx (only the owner has read and write permissions)
sudo chmod 644xxx (owner has read and write permissions, group user only Read permissions)
sudo chmod 700xxx (only the owner has read and write and Execute permissions)
sudo chmod 666xxx (everyone has access to read and write)
sudo chmod 777xxx (everyone has access to read and write and execute)
Modify folder permissions and right-click Terminal settings