服务器部署
-
VMware安装虚拟机Ubuntu提示piix4_smbus 0000:00:007.3: Host SMBus controller not enabled错误解决办法详解程序员
安装ubuntu17.10.1虚拟机,遇到了一个问题,就是这个piix4_smbus 0000:00:007.3: Host SMBus controller not enable…
-
Gtk-WARNING **: cannot open display: :0.0之解决详解程序员
当使用su 到另外一个用户运行某个程序,而这个程序又要有图形显示的时候,就有可能有下面提示: [email protected]:~# sudo -i -u keji g…
-
linux之badblocks命令详解程序员
简介 该命令用来检测硬盘坏道。硬盘坏道问题,如忽视,会随着使用而扩大面积,严重损坏硬盘。一般采用检测坏道,进而屏蔽重分区的方式复用硬盘。 语法 badblock(选项)(参数) -…
-
ubuntu17.10 安装CUDA详解程序员
1. 更新apt-get源列表 sudo apt-get update sudo apt–get upgrade 2. 添加驱动源 sudo add-apt-repos…
-
ubuntu17 安装python3.6 pip详解程序员
安装python: wget https://www.python.org/ftp/python/3.6.3/Python-3.6.3.tgz tar xf Python-3.6.…
-
ubuntu17.10 安装ssh详解程序员
sudo apt-get install openssh-server sudo /etc/init.d/ssh start
-
ubuntu17.10 python3.6 install plugins for AI详解程序员
install order: tensorflow-gpu scikit-learn numpy scipy matplotlib tkinter tensorflow-gpu :…
-
ubuntu重启、关机命令详解程序员
重启命令 : 1、reboot 2、shutdown -…
-
linux shell脚本编程笔记(一): 构建基本脚本详解程序员
1. echo -n str 打印不换行 2. 反引号来圈住命令传入变量  …
-
linux shell脚本编程笔记(二): 分支结构详解程序员
1.if if command then commands fi if command then commands else commands fi if command1 the…