crontab 命令

* * * * * - - - - - | | | | | | | | | +----- 星期中星期几 (0 - 7) (星期天 为0) | | ...

Read More


如何修改 Laravel 5.2 的认证用户表 users

需求如何修改 users 数据库表为 user_list,并且保证 Laravel 默认的授权功能不受影响?解决方案修改数据库表代码迁移:public function up() { Schema::create('user_list', functio...

Read More


ubuntu切换root用户

打开Ubuntu,输入命令:su root,回车提示输入密码,怎么输入都不对1、给root用户设置密码:sudo passwd root 输入本次登陆账号的密码,确认后输入root密码。2、重新输入命令:su root 然后输入密码:发现可以切换到roo...

Read More


linux压缩和解压缩命令

tar 解包:tar zxvf filename.tar 打包:tar czvf filename.tar dirnamegz命令 解压1:gunzip filename.gz 解压2:gzip -d filename.gz 压缩:gzip f...

Read More


laravel 清理缓存清理

这些编译好了的视图缓存。php artisan view:clear 清除运行缓存:php artisan cache:clear Laravel修改配置后一定要清理缓存,清除配置缓存:php artisan config:clear清除路由缓存:p...

Read More