`
openfetion
  • 浏览: 27672 次
  • 性别: Icon_minigender_1
  • 来自: 广州
最近访客 更多访客>>
文章分类
社区版块
存档分类
最新评论

ubuntu 8.04 安装

阅读更多
1.修改 /etc/apt/source.list
使用 http://ubuntu.cn99.com/ubuntu/
sudo apt-get update

安装中文
System > Language support
安装好之后,中文输入也OK了。

2.常用软件安装
sudo apt-get install emacs
sudo apt-get install xchm
sudo apt-get install ssh
sudo apt-get install vsftpd
sudo apt-get install filezilla

3.安装开发环境
======== 安装GCC
sudo apt-get install build-essential

======== 安装Java
sudo apt-get install sun-java6-jdk
update-alternatives --config javac

在 /etc/environment加入
JAVA_HOME="/usr/lib/jvm/java-6-sun

======== 安装eclipse 3.3
www.eclipse.org
下载eclipse 最新版本。解压就可以用

但是,如果是eclipse 3.3 版本,就需要
mkdir ~/.mozilla/eclipse

// 不明白为什么,3.3如果不这样就会在启动过程warning:
Could not initialize the application's security component

最后可以安装eclipse plugins
分享到:
评论
20 楼 openfetion 2008-08-09  
install mkimage for u-boot uImage

http://ubuntu2.cica.es/ubuntu/ubuntu/pool/universe/u/uboot-mkimage/
get the .dep package

then

sudo dpkg -i uboot_xxx.deb
19 楼 openfetion 2008-07-29  
emacs 显示中文

http://zhdotemacs.sourceforge.net/emacs/x188.html

(set-language-environment 'Chinese-GB)
(set-keyboard-coding-system 'euc-cn)
(set-clipboard-coding-system 'euc-cn)
(set-terminal-coding-system 'euc-cn)
(set-buffer-file-coding-system 'euc-cn)
(set-selection-coding-system 'euc-cn)
(modify-coding-system-alist 'process "*" 'euc-cn)
(setq default-process-coding-system
            '(euc-cn . euc-cn))
(setq-default pathname-coding-system 'euc-cn)
18 楼 openfetion 2008-07-28  
as samba server
add

/etc/samba/smbusers
username = "network username"

# username is some valid user, "xxx" is description

modify /etc/samba/smb.conf

[shares]
path=/pathtowhereusharewithwindows
public=yes
writable=yes
valid user=username #this username appears in smbusers file
force user=nobody
force group=nogroup
availabel=yes
browseable=yes
create mask=0700
directory mask=0700

sudo smbpasswd -a username # to set password and add username into samba user


#######################################################################


sudo mount -t smbfs //192.168.8.137/testdir /home/xxx/mnt/test
17 楼 openfetion 2008-07-15  
vsftpd配置很简单。

/etc/vsftpd.conf

修改几个定义就可以了。缺省只能是匿名用户登录。
16 楼 openfetion 2008-07-15  
nfs 配置

/etc/exports
增加 /nfsdir 192.168.1.1/24 (rw,no_root_squash,async) 类似的声明

运行
exportfs -a

/etc/init.d/nfs-kernel-server restart


client访问

mount -t nfs 192.168.1.2:/home/xxx/nfsroot /local/dir/path
15 楼 openfetion 2008-07-11  
sudo apt-get install glibc-doc manpages-dev binutils-doc cpp-doc gcc-4.0-locales debian-keyring gcc-4.0-doc lib64stdc++6
  manpages-dev autoconf automake1.9 libtool flex bison gcc-doc libc6-dev-amd64
  lib64gcc1 glibc-doc libstdc++6-4.0-doc stl-manual
14 楼 openfetion 2008-06-20  
install gcc documentation

sudo apt-get install gcc-doc
13 楼 openfetion 2008-06-20  
install binutils documentation. including gas, ld, nm, objcopy ...

sudo apt-get install binutils-doc
12 楼 openfetion 2008-06-12  
kernel source

sudo apt-get install linux-source
11 楼 openfetion 2008-06-11  
dos工具

sudo apt-get install tofrodos
10 楼 openfetion 2008-06-06  
emacs

~/.emacs.d/init.el

(setq c-default-style "linux")

(defconst color-scheme 'dark)
(defconst foreground-color "gray85")
(defconst background-color "gray25")
(defconst cursor-color "red3")
(defconst pointer-color "white")

(set-face-foreground 'default foreground-color)
(set-face-background 'default background-color)
(setq frame-background-mode color-scheme)
(set-cursor-color cursor-color)
(set-mouse-color pointer-color)
9 楼 openfetion 2008-06-06  
sudo apt-get install libz-dev
8 楼 openfetion 2008-06-05  
nfs

sudo apt-get install nfs-kernel-server nfs-common portmap
7 楼 openfetion 2008-06-05  
makeinfo

apt-get install texinfo
6 楼 openfetion 2008-06-04  

apt-get install bison
apt-get install flex
apt-get install gettext
5 楼 openfetion 2008-06-04  
安装 libtool

sudo apt-get install libtool
4 楼 openfetion 2008-06-04  
安装 tftpd
refrence http://www.davidsudjiman.info/2006/03/27/installing-and-setting-tftpd-in-ubuntu/


sudo apt-get install tftp tftpd xinetd

/etc/xinet.d/tftp
service tftp
{
protocol = udp
port = 69
socket_type = dgram
wait = yes
user = nobody
server = /usr/sbin/in.tftpd
server_args = /tftpboot
disable = no
}

$ sudo mkdir /tftpboot
$ sudo chmod -R 777 /tftpboot
$ sudo chown -R nobody /tftpboot

$ sudo /etc/init.d/xinetd start

测试
tftp localhost
tftp>put xxx
tftp>get xxx
3 楼 openfetion 2008-06-04  
== 数学库,不一定需要

http://gmplib.org/

./configure --host=x86
make
make check
make install
2 楼 openfetion 2008-06-04  
安装 ncurses

*** MUST ***
sudo apt-get install libncurses5-dev


Maybe not necessary, I'm not sure!
===============
http://ftp.gnu.org/pub/gnu/ncurses/
下载

解压

./configure --without-debug

make

sudo make install
1 楼 openfetion 2008-06-04  
安装 minicom

sudo apt-get install minicom

相关推荐

    Ubuntu8.04安装配置大全

    ### Ubuntu 8.04 安装与配置详解 #### 一、系统初始化 系统初始化是确保Ubuntu系统正常运行的基础步骤。...以上是对Ubuntu 8.04安装配置大全的主要知识点的总结,希望能帮助用户更好地理解和使用Ubuntu系统。

    详解:Vmware虚拟机下Ubuntu8.04安装.pdf

    Vmware虚拟机下Ubuntu 8.04安装 Vmware虚拟机下Ubuntu 8.04安装可以分为两个部分:Vmware虚拟环境的安装和Ubuntu系统的安装。在Vmware虚拟环境的安装中,我们需要首先安装Vmware Workstation,然后创建一个新的...

    ubuntu 8.04 安装g++

    Ubuntu 8.04 安装 G++ 详解 在 Ubuntu 8.04 系统中安装 G++ 编译器是非常必要的,特别是在配置 okl4 环境时。下面将详细介绍如何在 Ubuntu 8.04 中安装 G++。 首先,需要安装 build-essential 软件包,该软件包包...

    Ubuntu8.04安装教程

    下面将详细介绍Ubuntu 8.04的安装过程,帮助初学者顺利进行系统安装。 一、准备工作 在开始安装Ubuntu 8.04之前,你需要确保以下几点: 1. 一个可靠的互联网连接,用于下载ISO镜像文件或获取更新。 2. Ubuntu 8.04...

    Ubuntu 8.04桌面版安装教程

    安装完成后,系统会提示取出安装光盘并重新启动,最终进入Ubuntu 8.04的桌面环境,预装了Firefox浏览器的3.0b5版本。 总的来说,Ubuntu 8.04在硬件支持、易用性、安全性和多媒体功能方面都有显著提升,为用户提供了...

    Ubuntu 8.04 Server版 安装图解

    Ubuntu 8.04 Server版安装图解 很完整

    ubuntu8.04完全安装指南

    【Ubuntu 8.04 完全安装指南】 在安装Ubuntu 8.04时,可能会遇到各种问题,本文档是根据个人经验和网络资源整理出的一份详细安装指南,特别适用于使用Wubi安装方法。Wubi是一种允许在Windows内安装Ubuntu的简便方式...

    ubuntu8.04速成手册1.0.rar ubuntu8.04 ubuntu8安装与配置

    《Ubuntu 8.04速成手册1.0》是一份专为初学者设计的指南,旨在帮助用户快速掌握Ubuntu 8.04的操作系统安装、配置和日常使用技巧。Ubuntu 8.04,代号“Hardy Heron”,是Ubuntu Linux发行版的一个重要版本,发布于...

    ubuntu8.04优化指南

    本文将详细介绍如何在仅有 128MB 内存甚至更低配置的机器上安装并优化 Ubuntu 8.04。 #### 二、安装 Ubuntu 8.04 由于 Ubuntu 8.04 的 LiveCD 需要至少 384MB 的内存才能运行,因此无法通过 LiveCD 来安装系统。在...

    ubuntu8.04使用手册

    ubuntu8.04使用手册,ubuntu8.04使用手册ubuntu8.04使用手册,ubuntu8.04使用手册,ubuntu8.04使用手册,

    ubuntu8.04默认的源

    ubuntu8.04默认的源ubuntu8.04默认的源ubuntu8.04默认的源ubuntu8.04默认的源ubuntu8.04默认的源ubuntu8.04默认的源ubuntu8.04默认的源ubuntu8.04默认的源

    用 Wubi 安装 Ubuntu 8.04

    ### 使用Wubi安装Ubuntu 8.04:详解与步骤 #### 一、Wubi简介与特点 **Wubi**,全称为Windows-based Ubuntu Installer,是专为Windows用户设计的一款Ubuntu安装工具。它最大的特点在于简化了Linux系统的安装流程,...

    如何在ubuntu8.04中安装中文输入法

    ### 如何在ubuntu8.04中安装中文输入法 #### 概述 本文将详细介绍如何在Ubuntu 8.04系统中安装并配置中文输入法。对于初次接触Ubuntu的用户来说,这是一个非常实用的指南。Ubuntu 8.04(Hardy Heron)是一款非常...

    ubuntu8.04速成手册1.0.pdf

    1. **Ubuntu安装与启动**:手册首先会介绍如何下载Ubuntu 8.04的ISO镜像,然后使用USB驱动器或CD/DVD进行安装。这包括创建启动媒体、设置BIOS以从USB或光驱启动,以及在安装过程中选择合适的分区方式,如并行安装、...

    同事安装ubuntu8.04和windows

    标题中的“同事安装Ubuntu 8.04和Windows”指的是在一个计算机系统中同时安装Ubuntu 8.04(一个基于Linux的开源操作系统)和Windows(微软的商业操作系统)的双系统配置。这样的设置允许用户根据需求在两个操作系统...

    ubuntu8.04速成手册

    ubuntu8.04速成手册。这个资源对与想学ubuntu的新手来说。绝对值得看

    硬盘安装ubuntu8.04

    标题“硬盘安装Ubuntu 8.04”涉及的是在个人计算机上通过硬盘介质安装Ubuntu 8.04操作系统的流程。Ubuntu 8.04,代号为“Hardy Heron”,是Ubuntu Linux发行版的一个早期版本,发布于2008年,它提供了稳定性和丰富的...

    ubuntu8.04中配置java+tomcat+eclipseMyEclipse开发环境(更新)

    本文将深入解析如何在Ubuntu 8.04系统上搭建这套开发环境,涵盖Java环境的配置、Tomcat服务器的安装与启动、以及集成开发环境Eclipse MyEclipse的设置。 ### Java环境配置 #### 安装Java运行环境与开发工具包(JDK)...

    ubuntu8.04手册05

    ubuntu 8.04使用手册

Global site tag (gtag.js) - Google Analytics