vim修复,telnet安装启动,linux更新软件源
vim修复:
修复前提,你到UBUNTU能够联网。否则仅仅能卸载,不能安装
1.sudo apt-get remove vim-common
2.sudo apt-get install vim
telnet:
开启telnet:
1.首先安装必要telnet
在终端输入命令:sudo apt-get install xinetd telnetd
2.配置
1)sudo
vi/etc/inetd.conf 并增加下面一行
telnet stream tcp nowait telnetd/usr/sbin/tcpd /usr/sbin/in.telnetd
2)输入sudo
vi/etc/xinetd.conf并增加内容:
# Simple configuration file for xinetd
#
#Some defaults, and include /etc/xinetd.d/
defaults
{
#Please note that you need a log_type line to be able to use log_on_success
#and log_on_failure. The default is the following :
#log_type = SYSLOG daemon info
instances = 60
log_type = SYSLOG authpriv
log_on_success = HOST PID
log_on_failure = HOST
cps = 25 30
}
includedir /etc/xinetd.d
3)sudo
vi/etc/xinetd.d/telnet并增加下面内容:
# default: on
#description: The telnet server serves telnet sessions; it uses \
#unencrypted username/password pairs for authentication.
service telnet
{
disable = no
flags = REUSE
socket_type = stream
wait = no
user = root
server = /usr/sbin/in.telnetd
log_on_failure += USERID
}
4)重新启动网络服务sudo/etc/init.d/xinetd
restart
5)就可以在还有一台client上登录开启TTELNET的server
关闭telnet:
1.ctrl + ]
回车
2.quit退出
ubuntu更新源:
sudo cp /etc/apt/sources.list/etc/apt/sources.list.backup
sudo gedit /etc/apt/sources.list
将以下源拷贝到sources.list就可以
deb http://mirrors.163.com/ubuntu/ precisemain universe restricted multiverse
deb-src http://mirrors.163.com/ubuntu/precise main universe restricted multiverse
deb http://mirrors.163.com/ubuntu/precise-security universe main multiverse restricted
deb-src http://mirrors.163.com/ubuntu/precise-security universe main multiverse restricted
deb http://mirrors.163.com/ubuntu/ precise-updatesuniverse main multiverse restricted
deb http://mirrors.163.com/ubuntu/precise-proposed universe main multiverse restricted
deb-src http://mirrors.163.com/ubuntu/precise-proposed universe main multiverse restricted
deb http://mirrors.163.com/ubuntu/precise-backports universe main multiverse restricted
deb-src http://mirrors.163.com/ubuntu/precise-backports universe main multiverse restricted
deb-src http://mirrors.163.com/ubuntu/precise-updates universe main multiverse restricted
vim修复,telnet安装启动,linux更新软件源的更多相关文章
- kali linux 更新软件源,安装中文输入法,修复Linux与windows引导菜单解决windows引导丢失
1. 更新软件源打开sources.list文件,进行添加更新源:leafpad /etc/apt/sources.list 2. 添加软件源#官方源 deb http://http.kali.org ...
- adb安装启动Touch校正软件
/********************************************************************************* * adb安装启动Touch校正软 ...
- 在Win7环境下安装启动Linux
在Win7环境下安装启动Linux 在Win7系统下,安装启动Linux特别的不方便,由于XP下的boot.ini配置文件不在了,要加入�一下启动选项的话, 仅仅能使用专门的工具,这或多或少给人带来不 ...
- ubuntu安装R时候增加软件源到sources.list,sudo apt-get update不能更新
http://forum.ubuntu.org.cn/viewtopic.php?t=401717 ubuntu安装R时候增加软件源到sources.list,sudo apt-get update不 ...
- ubuntu安装软件失败,出现404错误,更新软件源
更新源方法 备份原来的源 首先备份原来的源,用来出错后进行恢复 sudo cp /etc/apt/sources.list/etc/apt/sources.list_backup 1 如果更新源后出错 ...
- ubuntu 更新软件源
ubuntu 更新软件源 修改文件sources.list 位于/etc/apt/sources.list,并备份原文件为sources.list.bak deb http://mirrors.163 ...
- CentOS使用安装光盘建立本地软件源
本实验的目的是使用CentOS的两张DVD安装光盘作为本地软件源,避免执行yum安装命令时每次都要从网络重新下载. 安装createrepo软件包 createrepo是制作软件源所需要的一个工具,默 ...
- Debian更新软件源提示There is no public key available for the following key IDs的解决方法
今天装了的debian7.0 但是更新软件源的时候出错 提示 W: There is no public key available for the following key IDs: 9D6D8F ...
- 笔记:Linux下软件的安装、CentOS更新yum源、LAMP环境搭建、kali软件管理
一.Linux下软件的安装 方式:yum源 / rpm /源码安装 1.yum:(帮助管理员解决依赖关系) yum是通过分析rpm的包头数据后,根据各种软件的相关性质做出属性相对应的解决方案,然后可以 ...
随机推荐
- Android ImageView设置图片原理(上)
本文来自http://blog.csdn.net/liuxian13183/ ,引用必须注明出处! 首先关于图片加载到ImageView上,我们来讨论几个问题: 如下: imageView.setIm ...
- 洛谷——P2590 [ZJOI2008]树的统计
https://www.luogu.org/problem/show?pid=2590#sub 题目描述 一棵树上有n个节点,编号分别为1到n,每个节点都有一个权值w. 我们将以下面的形式来要求你对这 ...
- HDU1050:Moving Tables
pid=1050">Moving Tables Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 ...
- Apache-DBUtils包对数据库的操作
•commons-dbutils 是 Apache 组织提供的一个开源 JDBC工具类库,它是对JDBC的简单封装.学习成本极低.而且使用dbutils能极大简化jdbc编码的工作量,同一时候也不会影 ...
- Poj1734题解
题目大意 求一个无向图的最小环 题解 假设是有向图的话.仅仅须要令f[i][i]=+∞,再floyd就可以: 对无向图.应该在floyd算法循环至k的一開始进行例如以下操作: 枚举i和j,假设点i存在 ...
- 使用gnu automake编译helloworld
使用gnu automake编译helloworld 按照许多介绍automake基本步骤的教程中的说法,我在尝试使用automake编译helloworld示例程序的时候,仍然遇到了几个小坑,所幸后 ...
- javascript创建对象的方法--原型模式
javascript创建对象的方法--原型模式 一.总结 1.原型模式解决内存浪费的方法(继承):通过继承,对象继承原型模式下的所有属性,对象不同于其它对象的的属性自己创建或者修改 2.原型的使用(p ...
- 项目列表dl、dt、dd使用
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8&quo ...
- C# 截取中英文混合字符串分行显示宽度相同
/// <summary> /// 截取方法名显示宽度 /// </summary> /// <param name=" ...
- golang md5
package main import ( "crypto/md5" "encoding/hex" "fmt" "io" ...