The FinalsShell software view directory cannot be opened

When FinalsShell cannot open the directory or always displays "loading" when clicking on the directory, it is caused by the permission problem of the directory

Just switch to the root account and add 777 permissions to this directory.

The command is:

sudo -i                    # 切换到root账户
chmod 777 /root/.cache     # 给root这个目录777权限

Guess you like

Origin blog.csdn.net/edsoki/article/details/129096187