甲骨文服务器默认登录用户opc 而且必须秘钥登录,不太习惯,执行如下命令更改root用户登录以及开启允许密码登录.使用密钥登录系统以后执行如下命令sudo -i输入要设置的密码passwd按提示刷入密码,重复输入密码。接着输入echo root:ve0.net |sudo chpasswd rootsudo sed -i 's/^#?PermitRootLogin.*/PermitRootL...
mac下安装好xcode里面自带的工具路径在:/Applications/Xcode.app/Contents/Developer/usr/bin/actool可用如下命令直接生成xcrun actool Assets.xcassets --compile 生成目录 --platform iphoneos --minimum-deployment-target 8.0
function multiArrToOneArrWithKeepKeys($params = array()) { if (empty($params) === TRUE) return array('msg' => 'nothing with array'); $keys = array(); $vals = array(); $pa...
IOS系统要求:IPhone 12.4 系统以上注:此截图不一定很全,大家可以根据实际情况操作,新注册可以,续费还不行。第一步: 在AppStore苹果商店搜索 下载Apple Developer应用程序第二步:在APP 中登录自己的AppleID第三步:1 输入个人信息姓、名字、身份证号、电话号码2 点击下一步,输入个人家庭住址信息-特别注意:此页面需要用拼音填写第四步:拍摄自拍照,头像认...
git init //初始化本地git环境git checkout -b test //新建test分支git add . //把本地的修改加到stage中git commit -m 'comments here' //把stage中的修改提交到本地库git push -u origin xxxxxxx //把本地库的修改提交到远程库中git强制覆盖本地命令(单条执行):git fetch ...