码迷,mamicode.com
首页 > 系统相关 > 详细

ubuntu 18.04 常用软件

时间:2019-06-06 16:01:08      阅读:262      评论:0      收藏:0      [点我收藏+]

标签:sudo   where   prefix   root   python   ln -s   client   建表   figure   

  1. git

  • 配置

git config --global user.name "john.liu"
git config --global user.email "john.liu@1cloudtech.com"
git config --global core.editor vim
  • 忽略ssl

git config --global http.sslVerify fals
  • 上传空目录

find . -type d -empty -exec touch {}/.gitkeep \;
  1. mysql

  • 解决只有root账号可以登录

update mysql.user set authentication_string=password('123456') where user='root'and Host = 'localhost';
update user set plugin='mysql_native_password' where user='root';
flush privileges;
  • 备份

mysqldump -h 127.0.0.1 -u jdCartest_user -t -p jdCarsMalldbtest > /home/ycadmin/jd.sql

-t 只导出数据,不创建表结构

  1. python3

  • 编译安装

sudo apt-get install zlib1g-dev libssl-dev libsqlite3-dev libmysqlclient-dev
sudo mkdir python3.6
tar zxvf Python-3.6.5.tgz
./configure --prefix=/usr/local/python3.6/
make
sudo make install
sudo ln -s /usr/local/python3.6/bin/python3.6 /usr/bin/python3.6
sudo ln -s /usr/local/python3.6/bin/pip3.6 /usr/bin/pip3.6

--prefix 指定安装目录

ubuntu 18.04 常用软件

标签:sudo   where   prefix   root   python   ln -s   client   建表   figure   

原文地址:https://www.cnblogs.com/liuweiqc/p/10985072.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!