TeamViewer for Linux [論壇 - Ubuntu 與工具程式及軟體推薦]
正在瀏覽:
1 名遊客
回覆: TeamViewer for Linux |
|||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
會員五級
![]() ![]() 註冊日期:
2010/1/25 17:27 所屬群組:
已註冊使用者 等級: 26
HP : 0 / 637
![]() |
debian=口=
因為這樣設定是登入後才會啟動這個程式 把登入弄成自動登入就oK了
2010/8/4 16:30
|
||||||||||
![]() |
回覆: TeamViewer for Linux |
|||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
會員三級
![]() ![]() 註冊日期:
2007/3/26 14:28 所屬群組:
已註冊使用者 等級: 14
HP : 0 / 330
![]() |
沒辦法在登入畫面就能啟動teamviewer?
因為windows 版本再登入畫面就可以控制了 謝謝
2010/8/4 17:11
|
||||||||||
![]() |
回覆: TeamViewer for Linux |
|||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
會員五級
![]() ![]() 註冊日期:
2010/1/25 17:27 所屬群組:
已註冊使用者 等級: 26
HP : 0 / 637
![]() |
有辦法...
不過看來很複雜 國外的論壇有討論: http://ubuntuforums.org/showthread.php?t=1471247 (徵求翻譯)(炸 You could try to make shell script like this one: #!/bin/bash /usr/bin/teamviewer or whatever is the path to the teamviewer executable (I don't recall it right now), save it to: /etc/init.d/teamviewer_start and change permission: chmod 777 /etc/init.d/teamviewer_start create link: ln -s /etc/init.d/teamviewer_start /etc/rc5.d/S99teamviewer and it should start with the machine regardless of the fact that no user has yet done login. remark: /etc/rc5.d/ is the directory where startup scripts are located (default init level is 5, that's why it is named rc5.d). Scripts whose names start with capital "S" are executed in alphabetical order, starting from S00 to S99. Following the analogy, the directory /etc/rc0.d/ contains stop script executed when machine goes down. Their names begin with "K" starting from K00 to K99.
2010/8/4 17:17
|
||||||||||
![]() |
回覆: TeamViewer for Linux |
|||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
會員五級
![]() ![]() 註冊日期:
2008/10/7 21:19 所屬群組:
已註冊使用者 等級: 36
HP : 0 / 896
![]() |
Xilwen 寫到: 步驟翻譯: 在/etc/init.d/下建立一個文字檔teamviewer_start 內容為: #!/bin/bash /usr/bin/teamviewer 設定該檔權限(個人建議將777改為644): sudo chmod 777 /etc/init.d/teamviewer_start 建立連結: sudo ln -s /etc/init.d/teamviewer_start /etc/rc5.d/S99teamviewer 完成 原理是在/etc/rc5.d/下建立的S**xxx檔案將會在系統開機程序最後時被執行,所以會在每次開機未登入時被執行,簡單的說是系統服務
2010/8/4 20:26
|
||||||||||
I′m UGP
|
|||||||||||
![]() |
回覆: TeamViewer for Linux |
|||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
會員三級
![]() ![]() 註冊日期:
2007/3/26 14:28 所屬群組:
已註冊使用者 等級: 14
HP : 0 / 330
![]() |
UGP照你方法試定還是不可以~請問你有成功使用過嗎?
謝謝
2010/8/4 21:47
|
||||||||||
![]() |
回覆: TeamViewer for Linux |
|||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
會員五級
![]() ![]() 註冊日期:
2010/1/25 17:27 所屬群組:
已註冊使用者 等級: 26
HP : 0 / 637
![]() |
那目前就是無解囉~
因為有提到的文章大約就是 Teamviewer論壇:http://teamviewerforums.com/index.php?topic=1186.0 UBuntu英文論壇:http://ubuntuforums.org/showthread.php?t=1471247 (UGP翻譯的就是從這裡) 然後似乎都提到->請求開發者支援.... (本人英文極差) 所以目前最好的解決方案是,用自動登入,然後讓他在登入後執行。
2010/8/4 21:57
|
||||||||||
![]() |
回覆: TeamViewer for Linux |
|||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
會員三級
![]() ![]() 註冊日期:
2007/3/26 14:28 所屬群組:
已註冊使用者 等級: 14
HP : 0 / 330
![]() |
Xilwen感謝~了解
2010/8/4 22:19
|
||||||||||
![]() |
回覆: TeamViewer for Linux |
|||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
會員五級
![]() ![]() 註冊日期:
2008/10/7 21:19 所屬群組:
已註冊使用者 等級: 36
HP : 0 / 896
![]() |
Abbe 寫到: 還未實作過,所以不清楚 http://blog.yam.com/alvinkw/article/17213461 其實Ubuntu的Runlevel和Redhat系的不太一樣,也許要放在其他rc*.d才有用 印象中Ubuntu的Runlevel是1或是2,可以試試ln指令裡面的rc1.d~rc5.d都加一次試試看吧 rc0.d是關機、rc6.d是重新開機,所以這兩個不用加
2010/8/4 23:24
|
||||||||||
I′m UGP
|
|||||||||||
![]() |
回覆: TeamViewer for Linux |
|||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
會員三級
![]() ![]() 註冊日期:
2007/3/26 14:28 所屬群組:
已註冊使用者 等級: 14
HP : 0 / 330
![]() |
rc1.d~rc5.d 都試過一樣不行
謝謝
2010/8/5 1:05
|
||||||||||
![]() |
訪客
|
回覆: TeamViewer for Linux |
|
---|---|---|
Anon:訪客
|
如果真是用wine跑的話,
rc幾應該都沒用, 因為還沒進Xorg。 試試看放/etc/X11/Xsession.d/裡面, 要是還不夠早,翻出gdm的設定來看看。
2010/8/5 1:37
| 423f4 9f0ee ed6d6 c9bba
|
|
![]() |
您可以查看帖子.
您不可發帖.
您不可回覆.
您不可編輯自己的帖子.
您不可刪除自己的帖子.
您不可發起投票調查.
您不可在投票調查中投票.
您不可上傳附件.
您不可不經審核直接發帖.