一个Debian装机脚本代码
发布时间:2013-01-29 11:29:15 作者:佚名 我要评论
一个Debian装机脚本,供朋友们学习参考
复制代码
代码如下:#!/bin/bash
SUCCESS=0
function checkInst()
{
#apt-get -y --force-yes install
for item in $1
do
echo "install =========== " ${item} " =========="
#printf "hello %.5s\n" message
apt-get -y --force-yes install ${item}
if [ "$?" -ne $SUCCESS ]
then
echo "ERROR Install " ${item}
read line1
fi
done
}
tools="ftp telnet nmap tftp ntpdate screen lsof manpages manpages-dev manpages-posix manpages-posix-dev strace ltrace chkconfig"
xdesktop="xserver-xorg-core xfce4 xfce4-terminal xfburn thunar-archive-plugin gdm "
editor="galculator vim vim-gtk medit rdesktop xvnc4viewer filezilla claws-mail claws-mail-i18n claws-mail-tnef-parser claws-mail-html2-viewer"
xtools="ristretto fbreader p7zip-full arj zip mscompress file-roller stardict-gtk iptux"
chineseinput="fcitx"
mediatools="alsa-base alsa-utils mplayer mencoder smplayer ffmpeg"
develops="astyle ctags cxref ccache gettext poedit gdb cppcheck build-essential graphviz intltool valgrind"
fssupport="fusesmb smbclient smbfs ntfs-3g sshfs openssh-client openssh-server"
nettools="ethtool wireless-tools wicd mtools dosfstools pppoe"
sniffer="wireshark"
desk3d="compiz compiz-fusion-plugins-extra compiz-fusion-plugins-main compiz-fusion-bcop compizconfig-settings-manager cairo-dock-compiz-icon-plugin"
others="rpm qbittorrent"
curlpkg="aria2 axel curl mpg321 easymp3gain-gtk jp2a nmon arping conky libnotify-bin inotify-tools dia dnsutils"
checkInst "${tools}"
checkInst "${xdesktop}"
checkInst "${editor}"
checkInst "${xtools}"
checkInst "${chineseinput}"
checkInst "${mediatools}"
checkInst "${develops}"
checkInst "${fssupport}"
checkInst "${sniffer}"
checkInst "${nettools}"
checkInst "${others}"
checkInst "${desk3d}"
checkInst "${curlpkg}"
apt-get install firmware-realtek firmware-linux-nonfree firmware-linux-free libqt4-opengl
apt-get -y --force-yes remove vim-tiny nano tasksel tasksel-data jfbterm zhcon --purge
apt-get -y --force-yes remove aumix ttf-arphic-ukai ttf-arphic-uming iceweasel --purge
apt-get autoremove --purge -y --force-yes
apt-get upgrade -y --force-yes
相关文章
Ubuntu 24.04 LTS怎么装? Ubuntu 24.04 LTS保姆级安装教程
近期Ubuntu 发布24.04 LTS,将获得 12 年的更新支持,该怎么下载并安装Ubuntu 24.04 LTS,详细请看下文介绍2024-05-24如何在Ubuntu系统中使用PPA? 在Ubuntu Linux 中使用PPA完全指南
什么是 PPA?为什么要使用它?使用 PPA 安全吗?如何正确使用 PPA?如何删除 PPA?这是一篇涵盖了在 Ubuntu 和其他 Linux 发行版中使用 PPA 遇到的几乎所有问题的深入的文2024-03-07Ubuntu22.04怎么安装Python 3.11? Ubuntu下载安装Python的图文教程
Ubuntu22.04系统需要使用Python软件,很多朋友不知道该怎么安装,今天我么就来分享Python软件下载以及安装的详细教程2024-03-07怎么用U盘安装Ubuntu20.04系统? 乌班图桌面版安装图文教程附下载
之前电脑安装的Centos7系统,但是在启动过程中遇到了文件异常,就开不了机了,现在想用U盘装Ubuntu系统,该怎么安装呢?详细请看下文图文安装教程,很详细适合小白新手操作2024-02-29Ubuntu如何访问Windows文件 Ubuntu访问Windows文件夹的方法
在使用Ubuntu Linux的过程中,有时我们需要访问存储在Windows系统中的文件或者文件夹,该怎么操作呢?详细请看下文介绍2024-02-03如何解决Ubuntu环境下解压中文显示乱码问题? Ubuntu解压中文乱码的多种
在Ubuntu下解压Windows下压缩文件时,会出现解压出的带中文文件名的文件名乱码,这大概率是因为buntu和Windows默认的编码不同,当然也有其他原因,详细请看下文介绍2024-01-09- Ubuntu怎么查看文件大小或文件夹大小?Ubuntu系统中,我们可以使用命令来查看给定目录或文件的大小,详细请看下文介绍2023-12-22
如何在Ubuntu上设置环境变量? ubuntu环境变量的三种设置方法
如何在Ubuntu上设置环境变量?环境变量是作用在操作系统中用来设置操作系统的一些参数,下面我们就来看看ubuntu环境变量的三种设置方法2023-12-22- 这篇文章主要为大家介绍了ubuntu配置静态地址方法详解,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步,早日升职加薪2023-12-15
Ubuntu怎么安装VMware Tools? vmware tools安装详细图文教程
Ubuntu怎么安装VMware Tools?Ubuntu想要安装VMware Tools,该怎么操作呢?下面我们就来看看vmware tools安装详细图文教程2023-11-25
最新评论