Deep server from scratch
Deep server from scratch
1.install Ubuntu16.04 via flash2.wired Network by Ruijie3.install google4.Sogou pinyin5.Tsinghua mirrors6.SSH server7. Typora8.sublime39.git10.NVIDIA drive + cuda + cudnn(1)NVIDIA drive: https://www.cnblogs.com/pprp/p/9463974.html(2)cuda_8.0.61_375.26_linux.run(3)cudnn-9.0-linux-x64-v7.1.tgz11.Pycharm12: miniconda
1.install Ubuntu16.04 via flash
https://www.cnblogs.com/pprp/p/9607245.html
2.wired Network by Ruijie
https://www.cnblogs.com/nanzhao/p/9575226.html
3.install google
https://blog.csdn.net/lxlong89940101/article/details/86287279
4.Sogou pinyin
uninstall:
sudo apt-get purge sogoupinyin
https://blog.csdn.net/sophia_xw/article/details/83004263
ref:
https://pinyin.sogou.com/linux/help.php
link for download: https://pinyin.sogou.com/linux/
5.Tsinghua mirrors
https://mirrors.tuna.tsinghua.edu.cn/help/ubuntu/
6.SSH server
sudo apt-get install openssh-server
sudo service ssh start
sudo service ssh status
optional: sudo servicessh restart
solutions for error(Package 'openssh-server' has no installation candidate): https://blog.csdn.net/sunshingheavy/article/details/53174461
7. Typora
8.sublime3
ref:https://www.sublimetext.com/docs/3/linux_repositories.html#apt
apt - Ubuntu, Debian
pacman - Arch
yum - CentOS
dnf - Fedora
zypper - openSUSE
apt
Install the GPG key:
wget -qO - https://download.sublimetext.com/sublimehq-pub.gpg | sudo apt-key add -
Ensure apt is set up to work with https sources:
sudo apt-get install apt-transport-https
Select the channel to use:
Stable
echo "deb https://download.sublimetext.com/ apt/stable/" | sudo tee /etc/apt/sources.list.d/sublime-text.listDev
echo "deb https://download.sublimetext.com/ apt/dev/" | sudo tee /etc/apt/sources.list.d/sublime-text.list
Update apt sources and install Sublime Text
sudo apt-get update
sudo apt-get install sublime-text
9.git
git clone --recursive git://github.com/Valloric/YouCompleteMe
ref:https://www.linuxidc.com/Linux/2017-11/148192.htm
10.NVIDIA drive + cuda + cudnn
(1)NVIDIA drive: https://www.cnblogs.com/pprp/p/9463974.html
(2)cuda_8.0.61_375.26_linux.run
link for download: https://developer.nvidia.com/cuda-toolkit-archive
ref1: https://www.cnblogs.com/pprp/p/9463974.html
ref2:https://blog.csdn.net/wanzhen4330/article/details/81699769#cuda%E7%9A%84%E5%AE%89%E8%A3%85
sudo sh cuda_8.0.61_375.26_linux.runaccept
n(driver is not needed, we finish it in last step)
y
y
y
sudo gedit ~/.bashrc
add the contents below:
export PATH=/usr/local/cuda-8.0/bin${PATH:+:${PATH}}
export LD_LIBRARY_PATH=/usr/local/cuda-8.0/lib64${LD_LIBRARY_PATH:+:${LD_LIBRARY_PATH}}
sudo gedit /etc/profileadd content in the tail of file:
export PATH=/usr/local/cuda/bin:$PATHsudo gedit /etc/ld.so.conf.d/cuda.conf
add content: /usr/local/cuda/lib64
sudo ldconfig
test cuda
cd ~/NVIDIA_CUDA-8.0_Samples/1_Utilities/deviceQuery
make
./deviceQuery
pass is right.
(3)cudnn-9.0-linux-x64-v7.1.tgz
link for download: https://developer.nvidia.com/rdp/cudnn-archive
ref1: https://www.cnblogs.com/pprp/p/9463974.html
ref2:https://blog.csdn.net/wanzhen4330/article/details/81699769#cuda%E7%9A%84%E5%AE%89%E8%A3%85
sudo tar -xzf cudnn-9.0-linux-x64-v7.1.tgz -C /usr/local
show cudnn version:
cat /usr/local/cuda/include/cudnn.h | grep CUDNN_MAJOR -A 2
11.Pycharm
link for download: https://www.jetbrains.com/pycharm/download/#section=linux
install instructions: https://www.cnblogs.com/bighong/p/7899832.html
ref: https://www.jetbrains.com/help/pycharm/installation-guide.html#
12: miniconda
link for download: https://docs.conda.io/en/latest/miniconda.html
install:https://www.cnblogs.com/YLDream/p/6940085.html
bash Miniconda3-latest-Linux-x86_64.sh
show version:
$ conda --version
# conda 4.3.14
Deep server from scratch的更多相关文章
- Ubuntu 16.04 LAMP server tutorial with Apache 2.4, PHP 7 and MariaDB (instead of MySQL)
https://www.howtoforge.com/tutorial/install-apache-with-php-and-mysql-on-ubuntu-16-04-lamp/ This tut ...
- 【CS-4476-project 6】Deep Learning
AlexNet / VGG-F network visualized by mNeuron. Project 6: Deep LearningIntroduction to Computer Visi ...
- 如何在Eclipse和Tomcat的Debug过程中启用热部署
参考的地址是 http://blog.redfin.com/devblog/2009/09/how_to_set_up_hot_code_replacement_with_tomcat_and_ecl ...
- 深度学习入门之Mnist
参看Deep learning from scratch,学习到反向传播网络后,把网络调通了,但是训练后损失函数减小,准确率没有变化,和瞎猜一样,是为什么呢?只有在看看各层缺少什么,关键是我的参数和书 ...
- TensorFlow Lite demo——就是为嵌入式设备而存在的,底层调用NDK神经网络API,注意其使用的tf model需要转换下,同时提供java和C++ API,无法使用tflite的见后
Introduction to TensorFlow Lite TensorFlow Lite is TensorFlow’s lightweight solution for mobile and ...
- Python实现感知器的逻辑电路(与门、与非门、或门、异或门)
在神经网络入门回顾(感知器.多层感知器)中整理了关于感知器和多层感知器的理论,这里实现关于与门.与非门.或门.异或门的代码,以便对感知器有更好的感觉. 此外,我们使用 pytest 框架进行测试. p ...
- New Machine Learning Server for Deep Learning in Nuke(翻译)
最近一直在开发Orchestra Pipeline System,歇两天翻译点文章换换气.这篇文章是无意间看到的,自己从2015年就开始关注机器学习在视效领域的应用了,也曾利用碎片时间做过一些算法移植 ...
- SQL Server 行的删除与修改-------------(未完待续P222 deep SQL Server 222 )
删除: 1.堆表:当行被删除时,不会自动重新组织页面上的空间.删除行时不会从物理页面上删除, 而只是把行偏移设置为 0 .表示空间没有使用.除了页面上没有被回收空间之外,堆中的 空白页也常常不会被回收 ...
- 【深度学习Deep Learning】资料大全
最近在学深度学习相关的东西,在网上搜集到了一些不错的资料,现在汇总一下: Free Online Books by Yoshua Bengio, Ian Goodfellow and Aaron C ...
随机推荐
- .bash_profile 文件
1,当 .bash_profile 文件输入有误的时候,所有命令行都会不好使 输入 export PATH=/bin:/usr/local/sbin:/usr/local/bin:/sbin:/bin ...
- javeweb_学生信息添加系统
在text.jsp中画出界面,以及设置提交选项的限制 <%@ page language="java" contentType="text/html; charse ...
- 简易数据分析 15 | Web Scraper 高级用法——CSS 选择器的使用
这是简易数据分析系列的第 15 篇文章. 年末事情比较忙,很久不更新了,后台一直有读者催更,我看了一些读者给我的私信,发现一些通用的问题,所以单独写篇文章,介绍一些 Web Scraper 的进阶用法 ...
- 我的 2019 年 Python 文章榜单
现在是 2020 年的第一天,我相信从昨天开始,各位的信息流里肯定充斥了各式各样的年度盘点/回顾/总结/记录之类的内容.虽然来得稍晚了,但我还是想给诸位送上这一篇文章. 我将在本文中列出自己于 201 ...
- acwing 102 -利用二分枚举区间平均值
我真的是服了,看了一晚上发现居然,,,,, 上图吧,话说有人评论没... 对于结果来说,不一定要枚举有序数列,感觉这是一种猜结果的方法,只不过特别精确,令人发指 #include<cstdio& ...
- flask配置详解
直接修改config对象 flask会有一个可用的配置对象保存着载入的配置值: Flask 对象的 config 属性,这是 Flask 自己放置特定配置值的地方,也是扩展可以存储配置值的地方.但是, ...
- DEVOPS技术实践_23:判断文件下载成功作为执行条件
在实际生产中,我们经常会需要通过判断一个结果作为一个条件去执行另一个内容,比如判断一个文件是否存在,判官一个命令是否执行成功等等 现在我们选择其中一个场景进行实验,当某个目录下存在,则执行操作 1. ...
- 3.24 7.13 Python基础汇总
对象类型 类型名称 示例 简要说明 备注 数字 int,float,complex 1234,3.14,1.3e5,3+4j 数字大小没有限制 十六进制用0x前缀和0-9,a-f表示 字符串 str ...
- 2019年全网最热门的123个Java并发面试题总结
前言 并发编程几乎是所有互联网公司面试必问的问题,并发编程是Java程序员最重要的技能之一,也是最难掌握的一种技能.它要求编程者对计算机最底层的运作原理有深刻的理解,同时要求编程者逻辑清晰.思维缜密, ...
- 【Java基础总结】泛型
泛型实现了参数化类型的概念,使代码可以应用于多种类型. 1. 泛型类 声明的泛型类型静态方法不能使用 class Tools<T>{ private T t; public void se ...