Linux
qwe5669833
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
linux配置字体和超级管理员
首先将linux使用的系统字体进行变更 sudo dpkg-reconfigure console-setup 使用sudo passwd root root@base:~# sudo passwd root Enter new UNIX password: 密码 Retype new UNIX password: 密码 passwd: passw...2017-10-13 16:05:18 · 258 阅读 · 0 评论 -
配置ssh链接
更新当前的ubuntu系统 apt-get update 下载ssh开发工具 apt-get install openssh-server 对配置文件进行修改 vim /etc/ssh/sshd-config 允许root账户登陆 PermitRootLogin yes 使用ps -ef | grep sshd 查找ssh进程编号; kill -9 pid -9 属于强...原创 2017-10-13 16:13:16 · 125 阅读 · 0 评论 -
linux软件安装
关闭防火墙 ufw disable 卸载到防火墙 apt-get remove iptables 安装常用依赖 apt-get install g++ gcc libpcre3 libpcrecpp* libpcre3-dev libssl-dev autoconf automake libtool nfs-kernel-server libnc...原创 2017-10-13 16:24:51 · 115 阅读 · 0 评论 -
linux配置时区和时间
进行时区的选择tzselect ------------------------------------------------------------------------------------------------------------ Please identify a location so that time zone rules can be set correc...原创 2017-10-13 16:37:49 · 278 阅读 · 0 评论 -
配置ftp服务
上传文件,所以需要ftp服务 在服务器上安装ftp apt-get install vsftpd 当ftp安装后会默认有一个ftp账户,修改ftp账户密码 sudo passwd ftp -----------------------------------------------------------------------------------------------------...原创 2017-10-13 16:51:09 · 127 阅读 · 0 评论 -
linux安装jdk和tomcat
使用在线下载jdk或者使用工具上传到服务器 解压文件 tar xzvf /srv/ftp/jdk-8u73-linux-x64.tar.gz -C /usr/local/ 进行重命名 mv /usr/local/jdk1.8.0_73/ /usr/local/jdk 修改环境变量vim /etc/profile export JAVA_HO...原创 2017-10-14 14:16:17 · 109 阅读 · 0 评论
分享