
Linux
lavachen
共同成长
展开
-
CentOS和Ubuntu区别
CentOS(Community ENTerprise Operating System)是Linux发行版之一,它是来自于Red Hat Enterprise Linux依照开放源代码规定释出的源代码所编译而成。由于出自同样的源代码,因此有些要求高度稳定性的服务器以CentOS替代商业版的Red Hat Enterprise Linux使用。 Ubuntu是一个以桌面应用为主的Linux操作系统...转载 2019-05-07 23:13:37 · 1300 阅读 · 0 评论 -
Ubuntu使用说明——常规指令(一)
返回桌面:ctrl+win+d 启动jar包:java -jar taobaochengxu.jar 重启MySQL:service mysql restart 启动mysql:service mysql.server start 停止mysql:service mysql.server stop 查看mysql运行状态:service mysql.server status U...原创 2019-10-11 11:07:57 · 194 阅读 · 0 评论 -
Ubuntu使用说明——远程操作服务器(二)
进入远程桌面: sudo rdesktop -f -a 16 IP 退出: Ctrl+Alt+Enter原创 2019-10-11 11:09:03 · 211 阅读 · 0 评论 -
Ubuntu使用说明——终端操作SVN命令行(三)
Select: (p) postpone, (df) show diff, (e) edit file, (m) merge, (mc) my side of conflict, (tc) their side of conflict, (s) show all options: 选择: (p)推迟,(df)显示差异,(e)编辑文件,(m)合并, ...原创 2019-10-11 11:10:58 · 1070 阅读 · 0 评论 -
Ubuntu使用说明——终端操作MySQL(五)
终端进入mysql(默认localhost本地数据库): mysql -u username -p 终端进入远程mysql: mysql -u root -proot -h 172.18.236.136 -P 3306 -D test mysql -u 用户名 -p密码 -h IP地址 -P 端口号 -D 数据库名字 记住-p后面的密码紧挨着-p不然会报错 退出: exit; 或者 q...原创 2019-10-11 11:18:56 · 362 阅读 · 0 评论