试用HostDare

近来需要用VM,首先想到了Linode,身边朋友用了很久一直赞誉有加。然而,当我注册Linode时,发现还需要上传证件,无法理解,再见!

找一个便宜好用的云服务商很难,太庞杂难以筛选。挑来挑去选择了HostDare,2015年成立的VPS商家,主要运作美国洛杉矶数据中心的VPS。有以下优点:

  • 线路优化:电信(CN2 GIA)、联通、移动,全部直连
  • OpenVZ系列的价格便宜,$16.25起/年
  • 界面简洁友好,有中文版本
  • 支持支付宝、微信支付

部署一个Ubuntu

版本选择16或18. 部署成功后邮件发给你用户名密码。
登陆到VM后做以下事情:

// 1. 更改密码、hostname
passwd
vim /etc/hostname

// 2. 更新apt-get
sudo apt-get update

// 3. 添加新用户
adduser newuser  ## 添加一个名为newuser的用户
passwd newuser  ## 修改密码
vi /etc/sudoers
newuser ALL=(ALL:ALL) NOPASSWD:ALL

// 4. 安装常用工具 
sudo apt install curl
sudo apt install git
ssh-keygen -t rsa -b 4096 -C "[email protected]"
ssh-copy-id -i ~/.ssh/id_rsa.pub [email protected]
git config --global user.email "[email protected]"
git config --global user.name "yourname"
git clone [email protected]:ppray/linux_mac_env.git
  cp linux_mac_env/.zshrc ~
  cp linux_mac_env/vimrc ~/.vimrc
sudo apt-get install zsh
chsh -s /bin/zsh
wget https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh -O - | sh
cd ~/.oh-my-zsh/themes
  cp robbyrussell.zsh-theme mytheme.zsh-theme
  vi mytheme.zsh-theme
  PROMPT='%{$fg_bold[white]%}%M %{$fg_bold[red]%}➜ %{$fg_bold[green]%}%p %{$fg[cyan]%}%c %{$fg_bold[blue]%}$(git_prompt_info)%{$fg_bold[blue]%} % %{$reset_color%}'
vi ~/.zshrc
  ZSH_THEME="mytheme"
sudo apt install python
sudo apt-get install python-pip
apt-get install python-m2crypto
pip install requests
apt install unzip

// 5. 安装web
sudo apt update
sudo apt install nginx
  systemctl status nginx //Checking your Web Server
  systemctl stop nginx  // To stop your web server
  sudo systemctl start nginx //To start the web server when it is stopped
  sudo systemctl restart nginx //To stop and then start the service again
  cd /etc/nginx/sites-enabled
  mv ~linux_mac_env/apiweb .
cd /var/www/html/
wget https://github.com/BlackrockDigital/startbootstrap-agency/archive/gh-pages.zip
unzip gh-pages.zip

// 6. 调整时区
date -R
tzselect
cp /usr/share/zoneinfo/Asia/Shanghai  /etc/localtime
sudo service cron restart  //这样可以让crontab对调整后的时区生效

// 7. 安装公链 FibOS  
curl -s https://fibos.io/download/installer.sh |sh
fibos --init
fibos --install fibos.js

HostDare

OpenVZ 虚拟VPS

6.5折终身优惠码:U58TF02MIG 年付可用

KVM 虚拟VPS

7.5折终身优惠码15UJZ1OUPK 年付可用

槽点

三天不满意可退款,退款并非自动返回,需要提工单,手续费。0.5美元。

其他

pip 最好的镜像是清华大学的,opencv秒装,比阿里云的快https://mirror.tuna.tsinghua.edu.cn/help/pypi/

pip install pip -U
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple

参考

https://drewsymo.com/2016/05/09/adding-your-hostname-to-the-zsh-prompt-with-oh-my-zsh/
https://zhuanlan.zhihu.com/p/19556676
https://www.digitalocean.com/community/tutorials/how-to-install-nginx-on-ubuntu-18-04

你可能感兴趣的:(试用HostDare)