LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 07-27-2020, 11:15 AM   #1
zuni
LQ Newbie
 
Registered: Jun 2020
Distribution: Slackware
Posts: 5

Rep: Reputation: Disabled
Teamviewer GUI not starting when running level 3 + startx


Hi,

I am using Slackware latest, updated. Teamviewer works fine when using runlevel 4, but the GUI won't start when using runlevel 3 + startx. Any idea where to start checking/editing?

Thank you,
Kind regards!
 
Old 08-03-2020, 04:25 PM   #2
Ratamahatta
Member
 
Registered: Feb 2012
Location: Germany
Distribution: siduction
Posts: 134

Rep: Reputation: 17
On Debian, I'd look into /etc/rc3.d and compare what's in there to /etc/rc4.d. (And on my system, they're the same; Slackware does things different here.)

Why do you want to start X in RC 3?
 
Old 08-04-2020, 05:33 AM   #3
zuni
LQ Newbie
 
Registered: Jun 2020
Distribution: Slackware
Posts: 5

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by Ratamahatta View Post
On Debian, I'd look into /etc/rc3.d and compare what's in there to /etc/rc4.d. (And on my system, they're the same; Slackware does things different here.)

Why do you want to start X in RC 3?
Hi Ratamahatta,

thank you for your reply. I checked and I have nothing in rc3.d / rc4.d, only the rc.4 script in /etc/rc.d.
Because Linux is very new for me I like to start in runlevel 3 and practice (create/copy/move files, directories, use tar/makepkg/upgradepkg for different software that I use). And teamviewr GUI not staring is a little annoying since I use this a lot.

Kind regards!
 
Old 08-04-2020, 11:47 AM   #4
ondoho
LQ Addict
 
Registered: Dec 2013
Posts: 19,872
Blog Entries: 12

Rep: Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053
Quote:
Originally Posted by zuni View Post
only the rc.4 script in /etc/rc.d.
You should definitely look at that.
And figure out what the default for runlevel 3 is.
I guess there's more in /usr/lib/rc.d or some such?

In any case, the logic is clear: "level 4" does something that "level 3 + startx" does not do, thus enabling teamviewer to start. I suspect either XDG autostart or dbus magic.
 
Old 08-05-2020, 06:46 AM   #5
Shadow_7
Senior Member
 
Registered: Feb 2003
Distribution: debian
Posts: 4,137
Blog Entries: 1

Rep: Reputation: 874Reputation: 874Reputation: 874Reputation: 874Reputation: 874Reputation: 874Reputation: 874
Most of my not starting in X things is because $DISPLAY is not set.

$ echo $DISPLAY

$ export DISPLAY=":0"; ./run_my_app

But I use multiple users, mostly so I don't have to keep logging in and out of various web based things. I just su users and launch a browser from that user. Requires weaker X permissions $(xhost local, so all users can use X. Namely those users that did NOT start X. Depending on distro and distro version, the DISPLAY variable may or may NOT be set for those other users.

You can also set the :# at the time that you launch X with startx

$ startx -- :0 -dpi 100 -depth 24 -to 10 -retro -nolisten tcp -layout MultiHead

HTH, YMMV

Last edited by Shadow_7; 08-05-2020 at 06:48 AM.
 
Old 08-05-2020, 11:08 AM   #6
zuni
LQ Newbie
 
Registered: Jun 2020
Distribution: Slackware
Posts: 5

Original Poster
Rep: Reputation: Disabled
Hi guys,

I got this from teamviewer logs :

runlevel 4 :

LogindSessionInfo: New session LogindSessionInfo [id=1 user=sb state=user active=1 reliable=1 infoId=2212294583] [path=/org/freedesktop/login1/session/_31 TTY= seat=seat0 display=:0 vtnr=7 owner=[SysUser: sb [uid=1000, gid=100 home=/home/sb gecos=Dname shell=/bin/bash]] idle=0(0) active=1 type=x11 class=user state=active timestamp=1596640311688399 service=sddm defaultCG= leader=1360 audit=1 remote=0 rHost= rUser= killProc=0]

SysSessionInfoManager::SessionAdded: adding session XSession: 0 [SysSession 2212294583 [type=88 vt=7 tty= pseudotty=0 info=1 id=1 user=sb state=user active=1 reliable=1]]
SysSessionInfoManager::SessionAdded: adding session SysSession 3510599056 [type=70 vt=7 tty=/dev/tty0 pseudotty=0 info=1 id=/dev/fb0 user=root state=greeter active=0 reliable=1]

runlevel 3 + startx

LogindSessionInfo: New session LogindSessionInfo [id=1 user=sb state=user active=1 reliable=1 infoId=2212294583] [path=/org/freedesktop/login1/session/_31 TTY=tty1 seat=seat0 display= vtnr=1 owner=[SysUser: sb [uid=1000, gid=100 home=/home/sb gecos=name shell=/bin/bash]] idle=1(1596637920940000) active=1 type=tty class=user state=active timestamp=1596637829447255 service=login defaultCG= leader=1186 audit=1 remote=0 rHost= rUser= killProc=0]
no adding XSession line
SysSessionInfoManager::SessionAdded: adding session SysSession 3510599056 [type=70 vt=1 tty=/dev/tty0 pseudotty=0 info=1 id=/dev/fb0 user=root state=greeter active=0 reliable=1]

All the differences are bold+italic, and the service=sddm/login is also colored, I think this could be the main reason, after searching and reading..and so on. Maybe this can help someone to figure this out.
Thank you,
Kind regards
 
Old 08-05-2020, 11:24 AM   #7
Shadow_7
Senior Member
 
Registered: Feb 2003
Distribution: debian
Posts: 4,137
Blog Entries: 1

Rep: Reputation: 874Reputation: 874Reputation: 874Reputation: 874Reputation: 874Reputation: 874Reputation: 874
I might be more helpful to run strace and see what it's trying to open( that it is/is not finding. It might be something as simple and common and pulseaudio. A session manager shouldn't be an app killer. It mostly remembers what things were running and where you had them last time you ran them. Not a requirement for most know what they're doing applications. Although some odd audio apps require networking to be functional and even a FQDN IP to be assigned in /etc/hosts. Or they wont launch/function.

Perhaps check if the $PATH and such varies between options.

$ echo $PATH
 
Old 08-05-2020, 02:01 PM   #8
ondoho
LQ Addict
 
Registered: Dec 2013
Posts: 19,872
Blog Entries: 12

Rep: Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053
So it does start with level 3 + startx! How do you start it?
Have you checked what the difference is between "level 4" and "level 3 + startx"?
I suspect dbus magic.
I have this in my ~/.xinitrc:
Code:
if [ -d /etc/X11/xinit/xinitrc.d ]
then
for f in /etc/X11/xinit/xinitrc.d/*
do
[ -x "$f" ] && . "$f"
done
unset f
fi
and there is dbus magic in /etc/X11/xinit/xinitrc.d.
 
Old 08-10-2020, 07:47 AM   #9
zuni
LQ Newbie
 
Registered: Jun 2020
Distribution: Slackware
Posts: 5

Original Poster
Rep: Reputation: Disabled
Hi guys,

it seems it has something to do with this : with elogind as the session/seat manager instead of ConsoleKit2, you’ll see some new behaviour. A quite obvious change: if you run ‘startx’ or ‘startkwayland’ at the console, you won’t see a VT (virtual terminal) switch. In the past, your console TTY would usually be tty1 but your graphical session would start on tty7 and you would automatically be switched from tty1 to tty7. This is no longer true – the graphical session will re-use your console TTY.
SDDM is still starting on tty7 but only because I make it do so via its configuration file.

from https://alien.slackbook.org/blog/
I maybe saying something stupid but : from what I understand, with startx, sddm starts on tty7, but the graphical session will start on tty1 (or other tty# - depending where startx is executed). And maybe teamviewer is looking only for VT7.
I didn't find a way to make startx, xinitrc or other config file to switch from tty1 to tty7.
Any thoughts?

Kind regards!

Last edited by zuni; 08-10-2020 at 07:54 AM.
 
Old 08-13-2020, 09:50 PM   #10
Shadow_7
Senior Member
 
Registered: Feb 2003
Distribution: debian
Posts: 4,137
Blog Entries: 1

Rep: Reputation: 874Reputation: 874Reputation: 874Reputation: 874Reputation: 874Reputation: 874Reputation: 874
You can disable sddm.

$ sudo systemctl disable sddm

Assuming systemd. Not sure how startkwayland works. Just know that wayland is a protocol, not an X of sorts. So abandon ship on all previous wm's, no matter how small/simple they were. And with things like sway, an alternative i3 for wayland, screen blanking and such is wm/de dependent and probably won't be implemented initially. And that alone keeps me on X11 / xwayland. But my use case is cwm + playlist until it pauses after 40 minutes and the screen blanks AKA IRL SLEEP.
 
Old 08-14-2020, 02:53 AM   #11
RadicalDreamer
Senior Member
 
Registered: Jul 2016
Location: USA
Distribution: Slackware64-Current
Posts: 1,816

Rep: Reputation: 981Reputation: 981Reputation: 981Reputation: 981Reputation: 981Reputation: 981Reputation: 981Reputation: 981
Did you follow these instructions? https://slackbuilds.org/repository/1...rk/teamviewer/

Maybe ask a moderator to move this thread to the Slackware sub-forum.
 
Old 08-17-2020, 10:54 AM   #12
zuni
LQ Newbie
 
Registered: Jun 2020
Distribution: Slackware
Posts: 5

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by RadicalDreamer View Post
Did you follow these instructions? https://slackbuilds.org/repository/1...rk/teamviewer/

Maybe ask a moderator to move this thread to the Slackware sub-forum.
Hi,

Yes, all the time, as explained.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
[SOLVED] Teamviewer not connecting to remote PC(both are running Ubuntu 17.10) Stev8 Ubuntu 4 11-05-2017 07:40 AM
non-gui alternative of teamviewer sparsh0mittal Linux - Networking 2 12-28-2011 05:42 PM
[SOLVED] Running TeamViewer 5/6 as a root in Linux networking.dept Fedora 4 01-03-2011 11:37 PM
[SOLVED] Starting File System .. Starting File System .. Starting File System .. Starting File rmknox Linux - Newbie 3 08-15-2010 11:30 PM
emacs in run level 3 then switch to X (level 7) then back to level 3 dsoliver Slackware 3 09-01-2006 03:31 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 04:14 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration