`
steven-zhou
  • 浏览: 212433 次
  • 性别: Icon_minigender_1
  • 来自: 长沙
社区版块
存档分类
最新评论

Debian 5.0.0 Lenny 安装全过程

阅读更多
从Debian的官方网站下载(网络安装版的ISO镜像):
// http://www.debian.org/
debian-500-i386-netinst.iso


设置网络环境
// 设置DNS,直接编辑/etc/resolv.conf 可以同时设置多个DNS
nameserver 202.103.96.68
nameserver 202.103.96.112

// 设置IP,直接编辑/etc/network/interfaces
// 采用固定IP:
auto lo eth0
iface lo inet loopback

iface eth0 inet static
address 192.168.6.243
netmask 255.255.255.0
broadcast 192.168.0.255
gateway 192.168.6.1

// 采用DHCP:
auto eth0
iface eth0 inet dhcp

// 激活和终止网络接口
ifdown eth0
ifup eth0

// 上面的设定只有重启网络后才会生效:
/etc/init.d/networking restart


Debian 更新工具使用说明:
apt-get update // 更新源列表
apt-cache search xxx // 在源中搜索xxx软件
apt-get install xxx // 从源中安装xxx软件
apt-get download xxx // 从源中下载xxx debian deb包
apt-get source xxx // 从源中下载xxx的源码包
apt-get remove xxx // 删除包
dpkg -l // 查看已安装的包

// 清除:当使用 apt-get install 指令安装套件,下载下来的 deb 会放置于 
// /var/cache/apt/archives, 使用 apt-get clean 指令可以将之清除,
// 避免占用硬盘空间 
apt-get clean


// 配置语言
apt-get install locales
dpkg-reconfigure locales


设定更新源
// 在/etc/apt/sources.list中添加更新源: 

// 选择一:
deb http://debian.cn99.com/debian/ stable main non-free contrib
deb http://debian.cn99.com/debian-non-US/ stable/non-US main contrib non-free

// 选择二:
deb http://mirrors.163.com/debian etch main
deb http://mirrors.163.com/debian lenny main contrib non-free

// 从源获得最新软件列表:
apt-get update

apt-get install apt-spy // 安装 apt-spy
mv sources.list sources.list.bak // 备份老的源列表文件
man apt-spy // 获取详细的使用方法

// 更新您的镜像列表文件 /var/lib/apt-spy/mirrors.txt
apt-spy update 

// 在亚洲寻找速度最快的stable版镜像, 并生成sources.list文件 
apt-spy -d stable -a Asia
cp /etc/apt/sources.list.d/apt-spy.list /etc/apt/sources.list

// 更新源:
apt-get update


安装Telnet,SSH
// 安装telnet:
apt-get install telnetd
/etc/init.d/openbsd-inetd start

// 安装 openssh server:
apt-get install openssh-server
/etc/init.d/ssh restart


基本参数设定:
# 打开颜色显示:
修改/etc/profile
alias ls='ls --color'


修改时区:
// 安装ntpdate
apt-get install ntpdate

// 设定主机时区:
编辑/etc/timezone,写入Asia/Shanghai

// 更新时间
ntpdate 210.72.145.44

cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime


安装vsftpd
apt-get install vsftpd

// 编辑/etc/vsftpd.conf
激活
local_enable=YES
write_enable=YES
// 启动 vsftpd
/etc/init.d/vsftpd restart


安装编辑工具vim:
apt-get install vim-full

// 编辑/etc/vim/vimrc文件
打开syntax on、set nu



安装编译,工程构建,调试工具
/*
 * 说明:
 * build-essential: 基本编译环境 (gcc, g++, libc, make等)
 * autoconf:        自动配置工具 
 * automake:        make相关
 * gdb:             调试工具
 */
apt-get install build-essential
apt-get install autoconf 
apt-get install automake
apt-get install gdb



安装开发文档:
/* 
 *  说明: 
 *  manpages-dev: C/C++man帮助手册
 *  Binutils:   链接器(ld)、汇编器(as)、反汇编器(objdump)和档案的工具(ar)
 *  glibc-doc:  GUN C标准库文档
 *  stl-manual: 标准C++ STL模板文档
 */
apt-get install manpages-dev
apt-get install binutils-doc 
apt-get install cpp-doc
apt-get install gcc-doc
apt-get install glibc-doc 
apt-get install libstdc++6-4.3-doc
apt-get install stl-manual



Perl相关:
// 安装perl帮助文档
apt-get install perl-doc

// 安装通用模块
apt-get install libtext-template-perl


在VMware中增加新硬盘:
关闭VM中正在运行的虚拟系统
在虚拟机系统名称上点击右键-> Vitual Machine Settings
在虚拟机edit页新增一个磁盘。
可以看见Hardware中出现了一块新的硬盘HardDisk2.
启动虚拟机,进入/dev目录下ls,查看刚加的硬盘名称。如: /dev/sdb
对/dev/sdb进行分区:fdisk /dev/sdb
 Command (m for help): m Help info 
 Command  (m for help): n Add a new partition
 Command  (m for help): w Write table to disk and exit
格式化硬盘为ext3分区格式:mke2fs -j /dev/sdb1
检查新分区是否存在:fdisk -l
修改/etc/fstab,使得刚新建的分区可以开机自动挂载。
# <file system>    <mount point>    <type>    <options>	    <dump>    <pass>
  /dev/sdb1    /oracle    ext3    errors=remount-ro    0    1
重新启动,查看结果:df -h


/**
 * 尝试Linux上各种文件系统。
 * 首先安装必须的软件
 */
apt-get install reiserfsprogs // for reiserfs
apt-get install jfsutils      // for jfs
apt-get install xfsdump       // for xfs

// 格式化/dev/md0为reiserfs

oracle:/oradata# mkfs.reiserfs /dev/md0
mkfs.reiserfs 3.6.19 (2003 www.namesys.com)

A pair of credits:
Chris Mason wrote the journaling code for V3,  which was enormously more useful
to users than just waiting until  we could create a wandering log filesystem as
Hans would have unwisely done without him.
Jeff Mahoney optimized the bitmap  scanning code for V3,  and performed the big
endian cleanups. 

Nikita Danilov  wrote  most of the core  balancing code, plugin infrastructure,
and directory code. He steadily worked long hours, and is the reason so much of
the Reiser4 plugin infrastructure is well abstracted in its details.  The carry 
function, and the use of non-recursive balancing, are his idea.


Guessing about desired format.. Kernel 2.6.26-2-686 is running.
Format 3.6 with standard journal
Count of blocks on the device: 6291408
Number of blocks consumed by mkreiserfs formatting process: 8403
Blocksize: 4096
Hash function used to sort names: "r5"
Journal Size 8193 blocks (first block 18)
Journal Max transaction length 1024
inode generation number: 0
UUID: c20b05fb-bf1d-44f0-bd79-688fe0497991
ATTENTION: YOU SHOULD REBOOT AFTER FDISK!
        ALL DATA WILL BE LOST ON '/dev/md0'!
Continue (y/n):y
Initializing journal - 0%....20%....40%....60%....80%....100%
Syncing..ok

Tell your friends to use a kernel based on 2.4.18 or later, and especially not a
kernel based on 2.4.9, when you use reiserFS. Have fun.

ReiserFS is successfully created on /dev/md0.


// 挂载到/raid目录,并检查文件格式。
oracle:/oradata# mount /dev/md0 /raid
oracle:/oradata# df -T
Filesystem    Type   1K-blocks      Used Available Use% Mounted on
/dev/mapper/oracle-root
              ext3      329233    139022    173213  45% /
tmpfs        tmpfs      258148         0    258148   0% /lib/init/rw
udev         tmpfs       10240       680      9560   7% /dev
tmpfs        tmpfs      258148         0    258148   0% /dev/shm
/dev/sda1     ext2      233335     26271    194616  12% /boot
/dev/mapper/oracle-home
              ext3     2789856     69796   2578340   3% /home
/dev/mapper/oracle-tmp
              ext3      238003      6177    219538   3% /tmp
/dev/mapper/oracle-usr
              ext3     2822096    687956   1990780  26% /usr
/dev/mapper/oracle-var
              ext3     1350552    126452   1155492  10% /var
/dev/mapper/optvg-optlv
              ext3     8252856   2579504   5254128  33% /opt
/dev/mapper/oradatavg-oradatalv
              ext3     8252856    252112   7581520   4% /oradata
/dev/md0  reiserfs    25164860     32840  25132020   1% /raid


// 将/dev/md0更换为JFS格式
oracle:/oradata# umount /raid/
oracle:/oradata# mkfs.jfs /dev/md0 
mkfs.jfs version 1.1.12, 24-Aug-2007
Warning!  All data on device /dev/md0 will be lost!

Continue? (Y/N) Y
   \

Format completed successfully.

25165632 kilobytes total disk space.
oracle:/oradata# mount /dev/md0 /raid/
oracle:/oradata# df -T
Filesystem    Type   1K-blocks      Used Available Use% Mounted on
/dev/mapper/oracle-root
              ext3      329233    139022    173213  45% /
tmpfs        tmpfs      258148         0    258148   0% /lib/init/rw
udev         tmpfs       10240       680      9560   7% /dev
tmpfs        tmpfs      258148         0    258148   0% /dev/shm
/dev/sda1     ext2      233335     26271    194616  12% /boot
/dev/mapper/oracle-home
              ext3     2789856     69796   2578340   3% /home
/dev/mapper/oracle-tmp
              ext3      238003      6177    219538   3% /tmp
/dev/mapper/oracle-usr
              ext3     2822096    687956   1990780  26% /usr
/dev/mapper/oracle-var
              ext3     1350552    126452   1155492  10% /var
/dev/mapper/optvg-optlv
              ext3     8252856   2579504   5254128  33% /opt
/dev/mapper/oradatavg-oradatalv
              ext3     8252856    252112   7581520   4% /oradata
/dev/md0       jfs    25131892      3200  25128692   1% /raid


将/dev/md0更换为xfs格式
oracle:~# umount /dev/md0 
oracle:~# mkfs.xfs /dev/md0
mkfs.xfs: /dev/md0 appears to contain an existing filesystem (jfs).
mkfs.xfs: Use the -f option to force overwrite.
oracle:~# mkfs.xfs -f /dev/md0
meta-data=/dev/md0               isize=256    agcount=16, agsize=393200 blks
         =                       sectsz=4096  attr=2
data     =                       bsize=4096   blocks=6291200, imaxpct=25
         =                       sunit=16     swidth=48 blks
naming   =version 2              bsize=4096  
log      =internal log           bsize=4096   blocks=3071, version=2
         =                       sectsz=4096  sunit=1 blks, lazy-count=0
realtime =none                   extsz=196608 blocks=0, rtextents=0
oracle:~# mount /dev/md0 /raid/
oracle:~# df -T
Filesystem    Type   1K-blocks      Used Available Use% Mounted on
/dev/mapper/oracle-root
              ext3      329233    139022    173213  45% /
tmpfs        tmpfs      258148         0    258148   0% /lib/init/rw
udev         tmpfs       10240       680      9560   7% /dev
tmpfs        tmpfs      258148         0    258148   0% /dev/shm
/dev/sda1     ext2      233335     26271    194616  12% /boot
/dev/mapper/oracle-home
              ext3     2789856     69796   2578340   3% /home
/dev/mapper/oracle-tmp
              ext3      238003      6177    219538   3% /tmp
/dev/mapper/oracle-usr
              ext3     2822096    687956   1990780  26% /usr
/dev/mapper/oracle-var
              ext3     1350552    126460   1155484  10% /var
/dev/mapper/optvg-optlv
              ext3     8252856   2579504   5254128  33% /opt
/dev/mapper/oradatavg-oradatalv
              ext3     8252856    252112   7581520   4% /oradata
/dev/md0       xfs    25152516      4832  25147684   1% /raid
1
0
分享到:
评论

相关推荐

    Debian Lenny系统安装与配置指南

    **Debian Lenny系统安装与配置指南** Debian Lenny,是Debian项目的一个历史悠久的稳定版本,发布于2009年,以其强大的稳定性和开源特性吸引了众多Linux用户。本指南将详细介绍如何安装和配置这个系统,为初学者...

    Debian 5.0.4 Lenny 硬盘安装必须的 initrd.gz 和 vmlinuz 文件

    Debian 5.0.4 Lenny 硬盘安装必须的 initrd.gz 和 vmlinuz 文件,请注意和光盘文件的版本对应。经过测试完全可以正常使用。把这两个文件和光盘镜像文件一起放在一个分区根目录,让 grub 引导启动即可。

    Debian Lenny的相关文档

    这些文档对于理解、安装和管理Debian Lenny系统至关重要。 **FAQ(常见问题解答)**:FAQ文档通常包含了用户在使用Debian Lenny过程中可能遇到的问题及其解决方案。它涵盖了各种主题,如系统安装、软件包管理、硬件...

    硬盘安装debian 5.0 lenny所用文件vmlinuz intrid.gz boot.img.gz

    硬盘安装debian 5.0 lenny所用文件vmlinuz intrid.gz boot.img.gz 本版本适用于i386 此处是3个里的一个,另外2个请搜索相同资源名称 很郁闷不能一次传3个

    Debian Linux网络安装启动镜像

    将这个文件刻盘,或者映射到虚拟光驱中,就可以启动Debian Linux的安装。注意在安装过程中需要保证网络的畅通,并且网络中有可用的Debian安装源。

    debian自动安装preseed文件

    我的debian自动安装preseed配置文件,可供大家参考,线上服务器的自动安装配置

    Debian 6.0图形安装教程

    #### 四、Debian 6.0 图形安装流程 ##### 1. 准备工作 - **下载安装镜像**:可以从官方站点获取 Debian 6.0 的安装镜像文件。 - 对于 i386 架构,可以从 ...

    debian7.7安装make需要的依赖包

    在 Debian 7.7(代号为"Wheezy")这样的旧版系统中,`make`可能没有预装,因此用户需要手动安装。`make build`通常是指使用`make`来编译和构建软件的过程。 为了在Debian 7.7上安装`make`,你需要先确保系统更新并...

    debian10安装qq、微信、迅雷、winrar等(2020.3.16)

    debian10安装qq、微信、迅雷、winrar等(2020.3.16)1.加key2.vi /etc/apt/sources.list 加入新源3.安装deepin wine环境,https://gitee.com/wszqkzqk/deepin-wine-for-ubuntu4.安装QQ、微信、迅雷、winrar等 1.加...

    debian 5.0网络安装(笔记本)

    Debian 5.0,代号Lenny,是Debian项目于2009年发布的一个稳定版本。该版本通过网络安装的方式,允许用户在没有完整ISO镜像的情况下,仅通过较小的网络安装介质启动计算机,然后从互联网下载必要的安装组件进行系统...

    Debian10离线安装Cron,Vim

    本文将详细介绍如何在Debian10上离线安装Cron和Vim,这两个工具对于日常系统管理和代码编辑至关重要。 Cron是一个时间调度器,在Linux系统中用于自动化任务执行,例如定期备份、日志清理等。它允许用户设置定时任务...

    Debian GNU Linux 安装手册

    在开始安装前,了解整个安装流程和所需步骤是必要的。 **3.2 记得备份您所有的数据!** 在任何操作系统安装前,备份数据是至关重要的步骤。 **3.3 一些有用的信息** - **文档**: 阅读官方文档和其他指南,获取安装...

    debian11-一键安装zabbix6.0脚本

    debian11-一键安装zabbix6.0脚本

    debian的安装和配置

    Debian 6 的安装是一个相对简单的过程,但需要用户具备基本的 Linux 知识。下面是 Debian 6 的安装和配置过程的详细说明。 一、安装 Debian 6 首先,需要下载 Debian 6 的镜像文件,并将其保存在本机上。在虚拟机...

    Debian下svn服务器的安装与配置

    本文将详细介绍 Debian 环境下 Subversion 服务器的安装和配置过程。Subversion 是一种版本控制系统,允许多用户共同协作开发项目。本文将从安装 Subversion 开始,到配置 SVN 服务器的所有步骤进行详细讲解。 安装...

    64-bit ARM (AArch64) debian 系统安装手册,中文版

    - **文档结构**:Debian 安装手册被组织成多个章节,涵盖从系统需求到安装完成的全过程。 #### 三、系统需求与硬件支持 - **支持的硬件体系**:Debian 支持多种架构,其中包括 64-bit ARM (AArch64)。 - **ARM ...

    debian编译安装php7.4.30.txt

    debian编译安装php7.4.30.txt 编译安装更稳定! 每一行复制执行即可完成安装!

Global site tag (gtag.js) - Google Analytics