赋予文件夹权限
sudo chmod -R 777 /home/hanshanyang/Projects
添加写入权限
chmod a+w 文件名
赋予脚本运行权限
sudo chmod +x xxx.sh
端口被占用
lsof -i :3000(3000是你被占用的端口)查出占用3000的进程号PID
kill -9 3655(PID号进程号 结束他)
赋予文件夹权限
sudo chmod -R 777 /home/hanshanyang/Projects
添加写入权限
chmod a+w 文件名
赋予脚本运行权限
sudo chmod +x xxx.sh
端口被占用
lsof -i :3000(3000是你被占用的端口)查出占用3000的进程号PID
kill -9 3655(PID号进程号 结束他)