使用 ubunutu sh 文件

一周前去书城买了个fedora linux11 ,这可是这辈子第一次买正版光碟呀,
68元钱还算很不错的,10个碟,第一次用linux 感觉真的不习惯,很多东西不方便
经过baidu ,google   总算安装好了软件 能播放歌曲,java c++ 编译器也能用来

用JAVA 播放器,每次听歌曲 要使用命令,那也太麻烦了,发现Intelljidea 的sh 的文件配置,也照着写一个
前提是配置好java 环境变量。

//-------------------我的配置如下
gedit /etc/profile

# /etc/profile: system-wide .profile file for the Bourne shell (sh(1))
# and Bourne compatible shells (bash(1), ksh(1), ash(1), ...).

if [ -d /etc/profile.d ]; then
  for i in /etc/profile.d/*.sh; do
    if [ -r $i ]; then
      . $i
    fi
  done
  unset i
fi

if [ "$PS1" ]; then
  if [ "$BASH" ]; then
    PS1='\u@\h:\w\$ '
    if [ -f /etc/bash.bashrc ]; then
	. /etc/bash.bashrc
    fi
  else
    if [ "`id -u`" -eq 0 ]; then
      PS1='# '
    else
      PS1='$ '
    fi
  fi
fi

umask 022

JAVA_HOME=/usr/lib/jvm/jdk1.6.0_17
JDK_HOME=/usr/lib/jvm/jdk1.6.0_17
PATH=$JAVA_HOME/bin:$PATH
CLASSPATH=.:$JAVA_HOME/lib/dt.jar:$JAVA_HOME/lib/tools.jar
export JAVA_HOME
export PATH
export CLASSPATH
export TOMCAT_HOME=/usr/lib/jvm/tomcat
export CATALINA_BASE=/usr/lib/jvm/tomcat
export CATALINA_HOME=/usr/lib/jvm/tomcat
export JRE_HOME=/usr/lib/jvm/jdk1.6.0_17/jre

//----------------------


mediaplayer.sh

#Startup Script for Unix
cd /usr/player/YOYOPlayer1.2
exec $JAVA_HOME/bin/java -jar YOYOPlayer.jar


在桌面上创建启动器  指向 mediaplayer.sh

你可能感兴趣的:(java,jvm,tomcat,linux,bash)