@@ -1,26 +0,0 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# /etc/rc.d/init.d/alsa: store/restore ALSA mixer levels
|
||||
#
|
||||
|
||||
# location of the alsactl executable
|
||||
ALSACTL=/usr/sbin/alsactl
|
||||
|
||||
case $1 in
|
||||
start)
|
||||
$ALSACTL restore
|
||||
;;
|
||||
stop)
|
||||
$ALSACTL store
|
||||
;;
|
||||
restart)
|
||||
$0 stop
|
||||
sleep 2
|
||||
$0 start
|
||||
;;
|
||||
*)
|
||||
echo "Usage: $0 [start|stop|restart]"
|
||||
;;
|
||||
esac
|
||||
|
||||
# End of file
|
||||
Binary file not shown.
@@ -1,9 +0,0 @@
|
||||
[Desktop Entry]
|
||||
Encoding=UTF-8
|
||||
Name=Mozilla Firefox
|
||||
Comment=Web Browser
|
||||
Exec=/opt/firefox/firefox %U
|
||||
Icon=/opt/firefox/browser/icons/mozicon128.png
|
||||
Terminal=false
|
||||
Type=Application
|
||||
Categories=Application;Network;
|
||||
@@ -1,42 +0,0 @@
|
||||
#!/bin/bash -
|
||||
#===============================================================================
|
||||
#
|
||||
# FILE: install.sh
|
||||
#
|
||||
# USAGE: ./install.sh
|
||||
#
|
||||
# DESCRIPTION:
|
||||
#
|
||||
# OPTIONS: ---
|
||||
# REQUIREMENTS: ---
|
||||
# BUGS: ---
|
||||
# NOTES: ---
|
||||
# AUTHOR: sxxu (), sxxu@linx-info.com
|
||||
# COMPANY: linx-info
|
||||
# CREATED: 2013年12月19日 16时58分28秒 CST
|
||||
# REVISION: ---
|
||||
#===============================================================================
|
||||
|
||||
set -o nounset # Treat unset variables as an error
|
||||
|
||||
echo clean fonts config files..
|
||||
rm -rf /etc/fonts/* -rf
|
||||
for i in install/*.pkg.tar.gz
|
||||
do
|
||||
echo install $i ...
|
||||
pkgadd -f $i
|
||||
done
|
||||
for i in update/*.pkg.tar.gz
|
||||
do
|
||||
echo update $i ...
|
||||
pkgadd -u -f $i
|
||||
done
|
||||
echo install fonts ..
|
||||
tar -xf update-fonts.tar.gz -C /
|
||||
echo now install firefox to /opt/firefox ....
|
||||
tar -xf firefox-25.0.1.zh-CN.linux-x86_64-Rocky4.2.tar.bz2 -C /opt
|
||||
echo adjust flashplayer ....
|
||||
mkdir -vp /usr/lib/mozilla/plugins/
|
||||
cp -vp libflashplayer.so /usr/lib/mozilla/plugins/
|
||||
cp -vf firefox.desktop /usr/share/applications
|
||||
echo ok . run firefox as /opt/firefox/firefox
|
||||
Binary file not shown.
@@ -90,8 +90,6 @@ chmod 755 /usr/sbin/get_max_mem_process.sh
|
||||
|
||||
#获取系统的部分日志或全部日志及系统相关信息的脚本
|
||||
cp get_parameter_log.sh /usr/sbin/
|
||||
cp dmidecode /usr/sbin
|
||||
cp lshw /usr/sbin
|
||||
cp check_sec_local.sh /usr/sbin
|
||||
cp os.sh /usr/sbin
|
||||
cp pci.ids /usr/share
|
||||
|
||||
Reference in New Issue
Block a user