【Linux、Ubuntu、CentOS安装和配置zsh】教程文章相关的互联网学习教程文章

ubuntu安装nginx

Nginx ("engine x") 是一个高性能的 HTTP 和 反向代理 服务器,也是一个 IMAP/POP3/SMTP 代理服务器。 Nginx 是由 Igor Sysoev 为俄罗斯访问量第二的 Rambler.ru 站点开发的,第一个公开版本0.1.0发布于2004年10月4日。其将源代码以类BSD许可证的形式发布,因它的稳定性、丰富的功能集、示例配置文件和低系统资源的消耗而闻名。安装Nginx依赖库安装gcc g++的依赖库ubuntu平台可以使用如下命令。12apt-get install build-essentiala...

ubuntu FTP服务安装【代码】

//安装vsftp apt-get install vsftpd -y//增加账号//1 查找 nologin位置 /usr/sbin/nologinuseradd -d /alidata/www/wwwroot -s /sbin/nologin pwftp//2 设定密码passwd pwftp//修改配置文件 vi /etc/vsftpd.conf//修改 anonymous_enable=NO //开启 local_enable=YES write_enable=YES chroot_local_user=YES chroot_list_enable=YES chroot_list_file=/etc/vsftpd.chroot_list//增加用户名到 名单里面 /etc/vsftpd.chroot_list//...

Ubuntu 14.04 英文系统 安装中文搜狗输入法【图】

ubuntu默认的输入法是ibus框架,而搜狗输入法是基于fcitx的框架,因此需要先安装fcitx框架。STEP1: 在Ubuntu Software Center 搜索fcitx,安装fcitx输入法框架,安装好后在任务栏右上角会出现fcitx设置图标(一个键盘).或通过如下命令sudo apt-get install fcitxsudo apt-get install libssh2-1STEP 2. System Settings -> Language Support -> Keyboard input method system -> fcitx; STEP 3. System Settings -> Text Entry 点...

ubuntu搜狗输入法安装、问题解决【代码】

1、个人安装环境1.1 ubuntu 18.04.12、安装步骤略3、问题汇总3.1 使用apt-get update的时候报错E: 仓库 “http://ppa.launchpad.net/fcitx-team/nightly/ubuntu bionic Release” 没有 Release 文件解决:cd /etc/apt/sources.list.d/ ls -all 执行结果:drwxr-xr-x 2 root root 4096 Feb 9 09:12 ./ drwxr-xr-x 6 root root 4096 Feb 9 08:58 ../ -rw-r--r-- 1 root root 140 Feb 8 12:59 fcitx-team-ubuntu-nightly-bionic....

Ubuntu 卸载安装nginx【代码】【图】

nginx很顽强,单独的删除它的文件是不够的,这会导致你再次安装时出现一系列的问题。1.卸载nginx,及其配置文件sudo apt-get --purge remove nginx 2.自动全部移除不使用的软件包sudo apt-get autoremove 3.列出与nginx相关的软件dpkg --get-selections|grep nginx 4.删除查询出来的与nginx相关的软件,我这里只是举个例子: 假如查询出来的有这3个sudo apt-get --purge remove nginx sudo apt-get --purge remove nginx-common su...

Windows7+VirtualBox安装Ubuntu虚拟机问题总结

1、下载VirtualBox(我的是4.3.26版本)https://www.virtualbox.org/2、下载Ubuntu ISO文件(我的是ubuntu-14.04-desktop-amd64.iso)http://www.ubuntu.com/download/3、网上找一篇教程,这篇就可以。http://jingyan.baidu.com/article/cdddd41c5eea3153ca00e160.html4、安装过程遇到“unable to load r3 module”的错误,在贴吧的帖子中有解决方案:http://tieba.baidu.com/p/3369724797  (1)到这里下载uxtheme.dll文件  h...

Ubuntu 14.04 下NFS安装配置

1、执行命令:sudo apt-get install nfs-kernel-server;2、执行命令:mkdir /home/jack/nfs-share 建立一个nfs服务的专有的文件夹;3、建立好文件夹后,接着执行命令:sudo vi /etc/exports 配置nfs;4、在文章的最后一行添加:/home/jack/nfs-share *(rw,sync,no_root_squash,no_subtree_check) /home/jack/nfs-share *(rw,sync,no_root_squash,no_subtree_check)这一行的含义是: /home/jack/nfs-share:与nfs服务客户端共享的目录...

ubuntu安装docker

Ubuntu 14.04及以上版本Ubuntu 14.04版本官方软件源中已经自带了Docker包,可以直接安装$sudo apt-get update$sudo apt-get install -y docker.io$sudo ln -sf /usr/bin/docker.io /usr/local/bin/docker$sudo sed -i ‘$scomplete -F _docker docker‘ /ete/bash_completion.d/docker.io以上流程使用ubuntu 14.04系统默认自带的docker.io安装包安装Docker,这样安装的版本相对较旧。另外我们也可以通过下面的方法从Docker官方源安...

Ubuntu 18.04上CUDA 9.0、cuDNN7.0及Tensorflow 1.8的安装【代码】

配置笔者使用Dell Inspiron 7559笔记本电脑,显卡为NVIDIA GTX 960M。目标由于本机显卡仅有nvidia-384驱动包能够良好支持(nvidia-387、nvidia-390包均在本机出现了系统无法登陆等异常),而CUDA 9.1需要驱动至少为nvidia-387,故选择安装CUDA 9.0及cuDNN7.0。 TelsorFlow 1.8完全支持CUDA 9.0因此可以使用最新版。安装显卡驱动使用apt安装nvidia-384驱动包(实际安装驱动为390):sudo apt-get install nvidia-384安装完成后重启系...

ubuntu系统安装nginx出现的错误(依赖环境没有安装完)【代码】

报错信息:error: the HTTP image filter module requires the GD library.编译参数:(或源安装)./configure --prefix=/usr/local/nginx --user=nginx --group=nginx --enable-mods-shared=all --add-module=/usr/local/src/ngx_http_geoip2_module过程报错:./configure: error: the HTTP image filter module requires the GD library. You can either do not enable the module or install the libraries.解决方法:安装 libgd-d...

Ubuntu 安装 mysql【代码】

sudo apt-get install mysql-server sudo apt install mysql-client sudo apt install libmysqlclient-dev 原文:https://www.cnblogs.com/superxuezhazha/p/9689466.html

CentOS 7 / Ubuntu 15.04 上安装 PHP Laravel 过程详解【代码】

Laravel 安装并不繁琐,你只要跟着本文章一步步操作就能在 CentOS 7 或者 Ubuntu 15 服务器上安装。1) 服务器要求在安装 Laravel 前需要安装一些它的依赖前提条件,主要是一些基本的参数调整,比如升级系统到最新版本,sudo 权限和安装依赖包。当你连接到你的服务器时,请确保你能通以下命令能成功的使用 EPEL 仓库并且升级你的服务器。CentOS-7# yum install epel-release# rpm -Uvh https://dl.fedoraproject.org/pub/epel/epel-...

ubuntu12.04 安装配置jdk1.7

第一步:下载jdk-7-linux-i586.tar.gzwget -c http://download.oracle.com/otn-pub/java/jdk/7/jdk-7-linux-i586.tar.gz (注:假设下载不下来,建议使用迅雷下载,然后复制到Linux系统上。)第二步:解压安装 sudo mkdir /usr/lib/jvmsudo tar zxvf jdk-7u5-linux-x64.tar.gz -C /usr/lib/jvm 第三步:改动环境变量sudo gedit /etc/profile 加入: #set java environmentexport JAVA_HOME=/usr/lib/jvm/java-7-sun export JRE_HOM...

ubuntu安装wps【代码】【图】

---恢复内容开始---我们知道使用Linux的时候自带的LibreOffice不是很好用,所以想到的可以使用wps来代替首先卸载原来的LibreOfficesudo apt-get remove --purge libreoffice*可以查看下是否完全删除whereis libreoffice如果还是有东西,会显示目录,cd到那个目录中删掉那个文件夹就好接下来去wps提供的网站下载最新的linux版本的wpshttp://wps-community.org/download.html下载下边的就可以了,这里因为使用Ubuntu演示的所以选deb下...

WSL2 配置及ubuntu18.04安装mysql8.0+【代码】

wsl2 完整配置参考将WSL2作为生产力工具Installing, this may take a few minutes… WslRegisterDistribution failed with error: 0x800701bc Error: 0x800701bc WSL 2 ??? https://aka.ms/wsl2kernelPress any key to continue…这是官方的讨论连接https://github.com/microsoft/WSL/issues/5393 这是安装文件下载链接https://wslstorestorage.blob.core.windows.net/wslblob/wsl_update_x64.msi raw.githubusercontent.com 被墙解...