您现在的位置是:网站首页> 编程资料编程资料
一个Debian装机脚本代码_Ubuntu/Debian_操作系统_
2024-03-23
133人已围观
简介 一个Debian装机脚本代码_Ubuntu/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 搭建LNMP环境图文教程 安装MySQL数据库_Ubuntu/Debian_操作系统_
- 疾风之刃斩狂附魔推荐 疾风之刃斩狂怎么附魔_网络游戏_游戏攻略_
- 魔兽6.0霜火岭雷霆小径之战怎么打 wow霜火岭雷霆小径成就攻略_网络游戏_游戏攻略_
- 疾风之刃劳克寒冰怎么打 劳克boss打法攻略_网络游戏_游戏攻略_
- 洛克王国陨石样本获得方法介绍_网络游戏_游戏攻略_
- 疾风之刃秘藏传说狂暴水晶怎么得 狂暴水晶获得方法_网络游戏_游戏攻略_
- cf天使玩偶延迟时限bug详情 cf500%经验饰品怎么弄_网络游戏_游戏攻略_
- 魔兽世界6.0霜火岭宠物日常攻略 2V3带小宠练级向_网络游戏_游戏攻略_
- 剑网3冰心新妆玉素宏_剑网3冰心新妆玉素宏奇穴与宏强烈推荐_网络游戏_游戏攻略_
- 魔兽世界6.0戈尔隆德宠物日常攻略 2V3带小宠练级向_网络游戏_游戏攻略_
