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 ...
 
随机推荐
- python实现单词本功能
			
#实现简单的单词本:# 可以添加单词和词义,当所添加的单词已经存在 让用户知道:# 查找单词,单词不存在时,让用户知道# 删除单词,当删除的单词不存在时,让用户知道# 以上功能无限制操作,直到用户输入 ...
 - 010.MFC_Progress
			
一.建立名为processCtrl的MFC工程,添加Progress Control 和 button控件.修改button Caption属性为start,ID属性为IDC_BTN_START 为进 ...
 - Python反射笔记
			
通过字符串的形式,导入模块.使用__import__ In [3]: SYS = __import__("sys") In [4]: SYS.path 如果导入模块在多级文件夹下 ...
 - shellcode超级反杀
			
shellcode超级免杀 作者声明: 本文章属于作者原创,不能转载,违反网络安全法自己承担.这里只供学习使用. 日期: 2019-12-30 我试过了电脑管家,火绒安全,360....一系列杀毒软件 ...
 - Cocos Creator | 飞刀大乱斗开发教程系列(一)
			
预览效果 具体内容 ■ 这一期,主要讲解主页下方列表选项如何实现.也就是游戏开始后,加载所有现有的英雄列表,这一功能的实现,如下图部分. ■ 列表使用 ScrollView 实现,横向滚动,设置好上下 ...
 - SVN+Apache+IF.svnadmin支持https实现web管理SVN
			
一,软件准备 .安装apache [root@localhost ~]# yum install httpd -y .安装svn服务器(其中,mod_dav_svn是apache服务器访问svn的一个 ...
 - QT信号和槽函数学习笔记
			
//connect 函数有4个参数 分别是 发送者 信号.接受者 ,槽 //connect(sender,signal,receiver,slot) /* * 信号和槽 * 信号 就是一个普通的函数 ...
 - 初入webpack
			
为什么需要构建工具? 通过caniuse我们了解到 现代浏览器对es6特性的支持程度: 由于现代浏览器对es6特性的支持度并不能说太高,为了兼容所以需要进行 es6语法的转换,除了此,三大框架的语法特 ...
 - 「洛谷P1402」酒店之王 解题报告
			
P1402 酒店之王 题目描述 XX酒店的老板想成为酒店之王,本着这种希望,第一步要将酒店变得人性化.由于很多来住店的旅客有自己喜好的房间色调.阳光等,也有自己所爱的菜,但是该酒店只有p间房间,一天只 ...
 - Asp.Net Core下的开源任务调度平台ScheduleMaster
			
从何说起 2017年初的时候,由于当时项目需要做了一个乞丐版定时调度系统,那时候只在单机上实现了核心的调度功能.做这个玩意之前也调研了社区中开源的解决方案,找了几个实地部署试跑了一下,其实都很不错.但 ...