简介
<!--[if !supportLists]-->1.
<!--[endif]-->ubuntu版本:ubuntu-12.04-server-i386.iso
安装SSH
安装命令如下,安装过程过于简单就不用说了。
sudo apt-get install openssh-server
查看是否安装成功:
ps -e |grep ssh
看到sshd那说明ssh-server已经启动了
查看IP:ifconfig
naxsu@ubuntu:~$ ifconfig
eth0
Link encap:Ethernet HWaddr
00:0c:29:e0:32:e5
inet addr:192.168.26.128
Bcast:192.168.26.255
Mask:255.255.255.0
inet6 addr: fe80::20c:29ff:fee0:32e5/64 Scope:Link
UP BROADCAST RUNNING MULTICAST
MTU:1500 Metric:1
RX packets:53 errors:0 dropped:0 overruns:0 frame:0
TX packets:55 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:5999 (5.9 KB) TX
bytes:7364 (7.3 KB)
Interrupt:19 Base address:0x2000
lo
Link encap:Local Loopback
inet addr:127.0.0.1
Mask:255.0.0.0
inet6 addr: ::1/128 Scope:Host
UP LOOPBACK RUNNING
MTU:16436 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:0 (0.0 B) TX bytes:0 (0.0
B)
|
用SecureCRT连接
<!--[if gte vml 1]><v:shapetype id="_x0000_t75"
coordsize="21600,21600" o:spt="75" o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe"
filled="f" stroked="f">
<v:stroke joinstyle="miter" />
<v:formulas>
<v:f eqn="if lineDrawn pixelLineWidth 0" />
<v:f eqn="sum @0 1 0" />
<v:f eqn="sum 0 0 @1" />
<v:f eqn="prod @2 1 2" />
<v:f eqn="prod @3 21600 pixelWidth" />
<v:f eqn="prod @3 21600 pixelHeight" />
<v:f eqn="sum @0 0 1" />
<v:f eqn="prod @6 1 2" />
<v:f eqn="prod @7 21600 pixelWidth" />
<v:f eqn="sum @8 21600 0" />
<v:f eqn="prod @7 21600 pixelHeight" />
<v:f eqn="sum @10 21600 0" />
</v:formulas>
<v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect" />
<o:lock v:ext="edit" aspectratio="t" />
</v:shapetype><v:shape id="图片_x0020_1" o:spid="_x0000_i1027" type="#_x0000_t75"
style='width:304.5pt;height:279.75pt;visibility:visible;mso-wrap-style:square'>
<v:imagedata src="file:///C:\Users\itway\AppData\Local\Temp\msohtmlclip1\01\clip_image001.png"
o:title="" />
</v:shape><![endif]--><!--[if !vml]--><!--[endif]-->
<!--[if gte vml 1]><v:shape id="图片_x0020_3" o:spid="_x0000_i1026"
type="#_x0000_t75" style='width:279pt;height:146.25pt;visibility:visible;
mso-wrap-style:square'>
<v:imagedata src="file:///C:\Users\itway\AppData\Local\Temp\msohtmlclip1\01\clip_image002.png"
o:title="" />
</v:shape><![endif]--><!--[if !vml]--><!--[endif]-->
<!--[if gte vml 1]><v:shape id="图片_x0020_4" o:spid="_x0000_i1025"
type="#_x0000_t75" style='width:404.25pt;height:132pt;visibility:visible;
mso-wrap-style:square'>
<v:imagedata src="file:///C:\Users\itway\AppData\Local\Temp\msohtmlclip1\01\clip_image003.png"
o:title="" />
</v:shape><![endif]--><!--[if !vml]--><!--[endif]-->
安装jdk
<!--[if !supportLists]-->1.
<!--[endif]-->下载
wget
http://download.oracle.com/otn-pub/java/jdk/6u31-b04/jdk-6u31-linux-i586.bin
<!--[if !supportLists]-->2.
<!--[endif]-->把jdk移到/usr/local/目录下
naxsu@ubuntu:~$
sudo mv jdk-6u31-linux-i586.bin /usr/local/
[sudo] password for naxsu:
<!--[if !supportLists]-->3.
<!--[endif]-->安装
naxsu@ubuntu:/usr/local$
./jdk-6u31-linux-i586.bin
-bash:
./jdk-6u31-linux-i586.bin: Permission denied
提示没权限
方法一:在前面加上sudo sh
root@ubuntu:/usr/java#sudo
sh ./ jdk-6u31-linux-i586.bin
方法二:加权限
root@ubuntu:/usr/java#
sudo chmod u+x jdk-6u31-linux-i586.bin
root@ubuntu:/usr/java#
./ jdk-6u31-linux-i586.bin
naxsu@ubuntu:/usr/local$
sudo chmod u+x jdk-6u31-linux-i586.bin
naxsu@ubuntu:/usr/local$
sudo ./jdk-6u31-linux-i586.bin
出问题了,如下:
naxsu@ubuntu:/usr/local$ sudo
./jdk-6u31-linux-i586.bin
./jdk-6u31-linux-i586.bin: 1:
./jdk-6u31-linux-i586.bin: cannot open html: No such file
./jdk-6u31-linux-i586.bin: 2:
./jdk-6u31-linux-i586.bin: cannot open head: No such file
./jdk-6u31-linux-i586.bin: 3:
./jdk-6u31-linux-i586.bin: cannot open title: No such file
./jdk-6u31-linux-i586.bin: 3:
./jdk-6u31-linux-i586.bin: Request: not found
./jdk-6u31-linux-i586.bin: 4:
./jdk-6u31-linux-i586.bin: cannot open META: No such file
./jdk-6u31-linux-i586.bin: 5:
./jdk-6u31-linux-i586.bin: cannot open link: No such file
./jdk-6u31-linux-i586.bin: 6:
./jdk-6u31-linux-i586.bin: cannot open link: No such file
: not foundlinux-i586.bin: 7:
./jdk-6u31-linux-i586.bin:
./jdk-6u31-linux-i586.bin: 8:
./jdk-6u31-linux-i586.bin: cannot open body: No such file
./jdk-6u31-linux-i586.bin: 9:
./jdk-6u31-linux-i586.bin: cannot open div: No such file
./jdk-6u31-linux-i586.bin: 10:
./jdk-6u31-linux-i586.bin: cannot open table: No such file
./jdk-6u31-linux-i586.bin: 11: ./jdk-6u31-linux-i586.bin:
cannot open tr: No such file
./jdk-6u31-linux-i586.bin: 12:
./jdk-6u31-linux-i586.bin: Syntax error: redirection unexpected
|
用vi编辑器打开,竟是一个网页。
只能到官网下载JDK了,下节续
分享到:
相关推荐
ubuntu学习笔记,学习总结记录,简单易懂。 文件安装方法 Centos: yum install xxx Ubuntu: sudo apt-get install xxx
Ubuntu学习笔记
Linux与Ubuntu学习笔记是针对操作系统领域的深度探索,主要聚焦在开源操作系统Linux以及其知名的桌面发行版Ubuntu上。这篇笔记旨在帮助初学者理解Linux的核心概念,掌握Ubuntu的基本操作,并进一步提升在实际工作或...
### Ubuntu入门学习笔记知识点梳理 #### 一、关于Linux(学习时长:1天) - **了解Linux**: - Linux是一种开源免费的操作系统,具备强大的编译环境。 - Linux与Windows的主要区别包括: - 开源性:Linux及其大...
### Ubuntu 7.04 学习笔记知识点详解 #### 一、Ubuntu 7.04简介 Ubuntu 7.04(代号Feisty Fawn)是Ubuntu Linux发行版的一个早期版本,发布于2007年4月19日。作为一款面向桌面用户的Linux发行版,Ubuntu 7.04提供...
### Ubuntu极速上手学习笔记 #### 一、Ubuntu命令格式及使用技巧 Ubuntu作为一个流行的Linux发行版,其命令行工具是高效管理和使用系统的基石。掌握基本的命令格式和使用技巧对于快速入门非常重要。 **命令格式**...
### Ubuntu Linux 实用学习笔记知识点概览 #### 一、Ubuntu简介 - **定义与适用范围**:Ubuntu是...以上内容涵盖了Ubuntu学习笔记中的关键知识点,旨在帮助初学者快速入门并深入了解Ubuntu系统的核心功能和使用技巧。
Ubuntu Linux 学习笔记 本笔记总结了 Ubuntu Linux 操作系统的基本使用和操作命令,涵盖了从图形界面到字符界面的切换、用户权限管理、文件系统操作、进程管理等多方面的知识点。 一、图形界面和字符界面之间的...
Linux系列-Ubuntu入门-学习笔记
### Linux Ubuntu装机笔记知识点详解 #### 一、前言与背景 - **Linux与Ubuntu简介**:Linux是一种开源的操作系统内核,由Linus Torvalds于1991年发布。基于此内核发展出了众多不同的发行版,如Redhat、Debian、...
2. **Wubi安装**:这是一种通过Windows环境下的可执行文件来安装Ubuntu的方式,极大地降低了学习Linux的门槛。不过需要注意的是,使用Wubi安装时必须避免突然断电,否则可能导致系统损坏。 3. **虚拟机安装**:如果...
Ubuntu 学习 Linux 笔记 本文档是一个关于 Ubuntu 学习 Linux 的笔记,涵盖了 Xshell 的使用、Linux 终端的连接、SSH 服务的启用、语言设置、防火墙的打开和关闭、JDK 的安装、Vim 的安装、Redis 的安装和配置等多...
这份"Linux学习笔记(强悍总结值得一看)"是Linux初学者的宝贵资源,也适合有经验的用户作为参考手册。以下是对笔记内容的详细概述: 1. **Linux常用命令**: Linux命令行是其强大的工具,掌握常用命令是Linux学习...