0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

【トラブル解消】ubuntu環境anydeskで起動するごとにアドレス(ワークスペースID)が変更されてしまう問題

Last updated at Posted at 2025-07-04

なぜ・・・?

再起動時にAnydeskのバックグラウンドサービスが「デスクトップの読み込み前」に起動してしまう場合、設定ファイルが正しく読み込まれず、IDが初期化され、毎回新しいIDが生成されてしまう。

解決策

システムのanydeskサービスを無効化(自動起動停止)

sudo systemctl disable anydesk.service

その後にubuntuの「スタートアップアプリケーション」にAnyDeskを追加し、ユーザーのGUIセッション開始後に起動されるように設定。

mkdir -p ~/.config/autostart
nano ~/.config/autostart/anydesk.desktop

からのnanoエディタへ

[Desktop Entry]
Type=Application
Name=AnyDesk
Exec=/usr/bin/anydesk
Hidden=false
NoDisplay=false
X-GNOME-Autostart-enabled=true
Comment=自動起動 AnyDesk
Terminal=false

参考文献(参照日2025年7月4日)

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?