页次: 1
参考这篇文章: http://felix-lin.com/linux/busybox-%E6%87%89%E7%94%A8-udhcpc/
BusyBox 應用 – udhcpc
qter wrote:
感谢分享, 这个链接更详细: https://learnku.com/articles/30215
里面有说建立 git 账户 和 禁止git 登陆shell等操作,
我也去研究一下。
感谢分享, 今天上午用 去年双十一买的年付88元的腾讯云服务器搭了git 服务器, 终于用起来了。
步奏总结一下:
建立 git 用户
创建 ~/.ssh/ 目录
ssh-keygen生成秘钥, 公钥存服务器 ~/.ssh/authorized_keys , 可以存多个公钥。
修改/etc/passwd 的 git 用户属性,登陆shell由 /bin/bash 改为 /usr/bin/git-shell
客户端注册私钥
项目可以存 /home/git/repo/ 目录,
客户端克隆: git clone code.xxxx.com:/home/git/repo/linux.git
一楼的方法估计是不需要或者忘记 mysql root 的密码, 然后强行重置root密码
如果记得密码, 可以用这个方法改密码:
UPDATE mysql.user SET Password=PASSWORD('MyNewPass') WHERE User='root';
FLUSH PRIVILEGES;
MySQL5.7 以后的版本得用这个:
UPDATE mysql.user SET authentication_string=PASSWORD('NewPassword') WHERE user='root';
FLUSH PRIVILEGES;
参考1: https://stackoverflow.com/questions/7534056/mysql-root-password-change/18100189
参考2: https://www.a2hosting.com/kb/developer-corner/mysql/reset-mysql-root-password
pythinker wrote:
composer 下载安装: https://getcomposer.org/download/
Windows版本直接下载地址: https://getcomposer.org/Composer-Setup.exewamp 下载地址: wampserver3.2.0_x64.exe
phpstorm 下载地址: https://www.tpxhm.com/odetail/203.html
感谢分享, 这个很好用。
phpstorm 破解步奏 (穷人逃 ...
下载 PhpStorm-2019.2.1.exe (其他版本可能破解不成功) 并安装
解压 patch_for_phpstorm201902.7z 到 D:\Program Files\JetBrains\PhpStorm 2019.2.1\bin
修改 phpstorm64.exe.vmoptions, 添加 -javaagent:D:\Program Files\JetBrains\PhpStorm 2019.2.1\bin\jetbrains-agent.jar
C:\Windows\System32\drivers\etc\hosts文件中追加: 0.0.0.0 account.jetbrains.com
破解:
希望可以帮到各位手头拮据的phper, 有钱的朋友还是上官网买正版吧。
页次: 1