ALT Linux Community general discussions
 help / color / mirror / Atom feed
From: Michael Shigorin <mike@lic145.kiev.ua>
To: mandrake-russian@altlinux.ru
Subject: [mdk-re] Re: X вторая сессия
Date: Thu Mar 14 11:36:15 2002
Message-ID: <20020314084331.GU1604@lic145.kiev.ua> (raw)
In-Reply-To: <3C8FB736.17C1857E@altlinux.ru>


[-- Attachment #1.1: Type: text/plain, Size: 345 bytes --]

On Wed, Mar 13, 2002 at 11:31:50PM +0300, cornet wrote:
> >   Как запустить в какой-то консоли еще одну иксовую сессию. В
> >   принципе,  мне это не надо, просто интересно :)
> $ startx -- :1
О, Олег -- может, пролоббируете аттач?  Он у-умный ;)

-- 
 ---- WBR, Michael Shigorin <mike@altlinux.ru>
  ------ http://visa.chem.univ.kiev.ua/~mike/

[-- Attachment #1.2: startx --]
[-- Type: text/plain, Size: 2073 bytes --]

#!/bin/sh
#
# (c) 1999 Red Hat Software, Inc.
# patched by Michael Shigorin <mike@altlinux.ru>
# to open new displays automagically

bindir=/usr/X11R6/bin

userclientrc=$HOME/.xinitrc
userserverrc=$HOME/.xserverrc
sysclientrc=/etc/X11/xinit/xinitrc
sysserverrc=/etc/X11/xinit/xserverrc
clientargs=""
serverargs=" -quiet "

TMPDIR=${TMPDIR:-/tmp}

if [ -f $userclientrc ]; then
    clientargs=$userclientrc
else if [ -f $sysclientrc ]; then
    clientargs=$sysclientrc
  fi
fi

if [ -f $userserverrc ]; then
    serverargs=$userserverrc
else if [ -f $sysserverrc ]; then
    serverargs=$sysserverrc
  fi
fi

# select next free display...
if [ -n "`ls /tmp/.X*-lock 2>/dev/null`" ]; then
	display=:$[1+0$(ls /tmp/.X*-lock | tail -1 | sed -n 's/.*X\([[:digit:]]\+\)-lock$/\1/p')]
else
	display=:0
fi

whoseargs="client"
while [ "x$1" != "x" ]; do
    case "$1" in
	/''*|\.*)	if [ "$whoseargs" = "client" ]; then
		    if [ "x$clientargs" = x ]; then
			clientargs="$1"
		    else
			clientargs="$clientargs $1"
		    fi
		else
		    if [ "x$serverargs" = x ]; then
			serverargs="$1"
		    else
			serverargs="$serverargs $1"
		    fi
		fi ;;
	--)	whoseargs="server" ;;
	*)	if [ "$whoseargs" = "client" ]; then
		    clientargs="$clientargs $1"
		else
    		    case "$1" in
		        :[0-9]) display="$1"
		        ;;
                        *) serverargs="$serverargs $1"
			;;
		    esac
		fi ;;
    esac
    shift
done

# set up default Xauth info for this machine
mcookie=`mcookie`
serverargs="$serverargs -auth $HOME/.Xauthority"
xauth add $display . $mcookie
xauth add `hostname -f`$display . $mcookie

# remember which VC will be occupied by X to deallocvt it later
XINITLOG="$TMPDIR"/.startx-$HOSTNAME$display
while [ -e "$XINITLOG" ]; do
	XINITLOG="$TMPDIR"/.startx-$HOSTNAME$display-$RANDOM
done

# here's the race :(

# protect logfile
>"$XINITLOG"
chmod 600 "$XINITLOG"

xinit $clientargs -- $display $serverargs  2>&1 | tee -a "$XINITLOG"

# clean up
deallocvt $(sed -n -e 's/^(using VT number \([[:digit:]]\+\))/\1/p' "$XINITLOG") 2>/dev/null
rm -f "$XINITLOG"

[-- Attachment #2: Type: application/pgp-signature, Size: 232 bytes --]

  reply	other threads:[~2002-03-14 11:36 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2002-03-13 22:03 [mdk-re] " ROmul
2002-03-13 23:30 ` cornet
2002-03-14 11:36   ` Michael Shigorin [this message]
2002-03-14 12:45     ` [mdk-re] " Dmitry V. Levin
2002-03-14 12:53       ` cornet
2002-03-14 13:01       ` Mikhail Zabaluev
2002-03-14 14:37         ` Dmitry V. Levin
2002-03-14 15:00           ` Michael Shigorin
2002-03-14 15:21             ` Dmitry V. Levin
2002-03-14 16:55               ` Michael Shigorin
2002-03-14 15:35             ` Andriy Dobrovol's'kii
2002-03-14 13:40       ` Michael Shigorin
2002-03-14 15:47   ` [mdk-re] " Sergey Vlasov
2002-03-14 19:09     ` [mdk-re] Re: [JT] " Michael Shigorin
2002-03-15  8:36     ` [mdk-re] " cornet
2002-03-15 15:55       ` Sergey Vlasov
2002-03-14  2:33 ` Любимов А.В.
2002-03-14 13:58 ` Eugeny Korekin

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20020314084331.GU1604@lic145.kiev.ua \
    --to=mike@lic145.kiev.ua \
    --cc=mandrake-russian@altlinux.ru \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link

ALT Linux Community general discussions

This inbox may be cloned and mirrored by anyone:

	git clone --mirror http://lore.altlinux.org/community/0 community/git/0.git

	# If you have public-inbox 1.1+ installed, you may
	# initialize and index your mirror using the following commands:
	public-inbox-init -V2 community community/ http://lore.altlinux.org/community \
		mandrake-russian@linuxteam.iplabs.ru community@lists.altlinux.org community@lists.altlinux.ru community@lists.altlinux.com
	public-inbox-index community

Example config snippet for mirrors.
Newsgroup available over NNTP:
	nntp://lore.altlinux.org/org.altlinux.lists.community


AGPL code for this site: git clone https://public-inbox.org/public-inbox.git