2013-10-17 39 views
0

我想直接從「輸入命令」行運行eclipse。 我試圖做一些事情,並導致我現在有一些錯誤,我有侏儒錯誤。 而之前我有eclipse目錄現在我沒有任何東西,當我輸入「eclipse」到 alt + f2命令行。從命令行在fedora19上的Eclipse快捷方式

此外,我正在尋找修復gnome現在,我正在使用eclipse kepler 4.3 This is the link that i tried to implement,我沒有做到這一點。 我現在真的需要幫助。

乾杯

回答

0

我現在已經找到了我的錯誤,

,而不是我自己的目錄,我試圖把納米的/ usr/bin中/月食

所以現在的解決方案是:

touch /usr/bin/eclipse 
chmod 755 /usr/bin/eclipse 

## Open eclipse file with your favourite editor ## 
nano -w /usr/bin/eclipse 

## Paste following content to file ## 
!/bin/sh 
export ECLIPSE_HOME="/opt/eclipse" 

$ECLIPSE_HOME/eclipse $* 
相關問題