min icon indicating copy to clipboard operation
min copied to clipboard

Doesn't launch in openbox via RDP

Open Arseniys1 opened this issue 1 year ago • 5 comments

Error: chrome_crashpad_handler: --database is required Try 'chrome_crashpad_handler --help' for more information. [4466:1101/150603.361292:ERROR:socket.cc(120)] recvmsg: Connection reset by peer (104) Trace/breakpoint trap (core dumped)

Firefox and Chromium start normally. what could be the problem?

Arseniys1 avatar Nov 01 '24 15:11 Arseniys1

system ubuntu-server

Arseniys1 avatar Nov 01 '24 16:11 Arseniys1

Does running electron-quick-start work?

PalmerAL avatar Nov 06 '24 20:11 PalmerAL

The permissions for files in /home/username were not configured

Arseniys1 avatar Nov 08 '24 12:11 Arseniys1

Interesting, could you explain which permissions you needed to change?

PalmerAL avatar Nov 08 '24 15:11 PalmerAL

` copy_files_to_home(username)

    # Права на папку .config
    subprocess.run(f'mkdir -p /home/{username}/.config', shell=True, check=True)
    subprocess.run(f'echo {sudo_password} | sudo -S chown -R {username}:{username} /home/{username}', shell=True, check=True)
    subprocess.run(f'echo {sudo_password} | sudo -S chmod -R 700 /home/{username}', shell=True, check=True)`

min configs were copied from root. the rdp user did not have rights to them

Arseniys1 avatar Nov 08 '24 16:11 Arseniys1