To all and David,
I tried fwin to no avail; the buffer is still empty when pressing the
Alt/PrintScreen key combination, which is was borne out by examining the
xwindows and kde desktop hot keys were I saw no conflicts. Any more takers?
Thanks,
Al
-----Original Message-----
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]]On Behalf Of
[EMAIL PROTECTED]
Sent: Friday, March 02, 2001 12:01 PM
To: [EMAIL PROTECTED]
Subject: Win4Lin-users digest, Vol 1 #239 - 5 msgs
Send Win4Lin-users mailing list submissions to
[EMAIL PROTECTED]
To subscribe or unsubscribe via the World Wide Web, visit
https://lists.netraverse.com/mailman/listinfo/win4lin-users
or, via email, send a message with subject or body 'help' to
[EMAIL PROTECTED]
You can reach the person managing the list at
[EMAIL PROTECTED]
When replying, please edit your Subject line so it is more specific
than "Re: Contents of Win4Lin-users digest..."
This is the Win4Lin-users mailing list Digest. When replying, please change
your subject heading to match the individual message you're replying to,
instead of "Win4Lin-users Digest".
Today's Topics:
1. fwin and XFree86 4.0.2 (David Peet)
2. Re: Windows Alt/PrintScreen Key Combination (David Peet)
3. Windows blacking out in X 4.0.2 (Bob Nielsen)
4. Error in upgrading to Win4Lin 2.0.2 (Bob Nielsen)
5. Version numbering (Paul W. Abrahams)
--__--__--
Message: 1
Date: Thu, 01 Mar 2001 22:53:02 -0800
From: David Peet <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
Subject: [Win4Lin-users] fwin and XFree86 4.0.2
Reply-To: [EMAIL PROTECTED]
This is a multi-part message in MIME format.
--------------3179821505BDAFF910D6BB9B
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
Pawel Golik wrote:
>
> Can you get a SCSI scanner to work in Win4Lin?
No. Sorry.
> BTW: still can't gen fwin to work in X4.0.2, however windowed mode works
OK.
XFree4.0.2 exposed some problems in Win4Lin at least on
some systems. There will be an update to address those problems,
but for now here is the new fwin script that will be in that update.
To make sure you have downloaded it properly, the command
"sum -r fwin" should return:
19526 5
Let us know if it fixes the problem.
-David
--------------3179821505BDAFF910D6BB9B
Content-Type: text/plain; charset=us-ascii;
name="fwin"
Content-Transfer-Encoding: 7bit
Content-Disposition: inline;
filename="fwin"
:
# SCCSID(@(#)fwin_lnx.sh 1.3) Merge 5.1 Branch Modified 23:55:11 2/23/01
# SCCSID(@(#)fwin_lnx.sh 1.4) Modified 23:52:56 2/23/01
# This is the "fwin" command for Linux systems.
# Unlike on UnixWare and SCO OpenServer systems, when you run xinit
# on a display that is already in use, it prints an error message and
# hangs, instead of returning an error. So we have to make sure
# that we try for a display that is not already in use.
ME=$0
# Get the STATICMERGE and VARMERGE settings.
. /etc/mrgssv.sh
XFONTS=/usr/lib/X11/fonts/misc\;/usr/lib/X11/fonts/75dpi\;/usr/lib/X11/fonts
/100dpi
XPATH=/usr/bin/X11
SYS_RC_DIR=$STATICMERGE/fullx
SYS_RC_FILE=fwin_start.sh
# If the user already has XPATH in their PATH, don't change the path
if expr $PATH : ".*\/usr\/bin\/X11" >/dev/null
then :
else
# Add XPATH to user's PATH.
PATH=${PATH}:${XPATH}
fi
export PATH XFONTS
Echo1()
{
echo -e "$*"
}
Echo2()
{
echo -e "$*" 1>&2
}
XFree86ver()
{
XINFO=`xdpyinfo | grep "vendor string"`
echo $XINFO | grep XFree86 > /dev/null
if [ $? -eq 0 ]
then
XINFO=`xdpyinfo | grep "vendor release number: "`
XFREE86_VER=`echo $XINFO \
| while read A B C D E ; do echo $D;break;done`
fi
}
XFREE86_VER=not
XFree86ver
syntax()
{
Echo2 "Syntax:"
Echo2 "$ME" '[-auth] [-disp N] [-version] [-help] [<win parameters>]'
Echo2 " -auth is used when the '-auth' X server option is required."
Echo2 " -disp N is used to specify which console X display to use"
Echo2 " instead of it being automatically determined."
Echo2 " The number N must be 0, 1, 2, 3, 4, or 5."
Echo2 " -version prints out the $MERGENAME build version."
Echo2 " -help prints out this syntax explanation."
Echo2 "Any other parameters are passed on to the 'win' program."
Echo2 "In addition, the environment variable FWIN_X_ARGS can be used to"
Echo2 "specify additonal X server parameters."
}
print_xfree_ver()
{
case $XFREE86_VER in
33*)
Echo2 "XFree86 3.3.x"
;;
3*)
Echo2 "XFree86 3.x"
;;
4001*)
Echo2 "XFree86 4.0.1"
;;
4002*)
Echo2 "XFree86 4.0.2"
;;
4*)
Echo2 "XFree86 4.x"
;;
*)
Echo2 Not XFree86 3.x or 4.x
;;
esac
}
# Scan for special fwin options
USE_AUTH=no
XX=xx
while true
do
[ $# -eq 0 ] && break
case "$1" in
-help|-h|+h)
syntax
exit 1
;;
-version|-v)
eval `grep "^VERSION=" $VARMERGE/Version`
eval `grep "^CYCLE=" $VARMERGE/Version`
eval `grep "^REL_DAY=" $VARMERGE/Version`
Echo1 $MERGENAME $VERSION '('$CYCLE')' $REL_DAY
print_xfree_ver
exit 0
;;
-auth)
shift
USE_AUTH=use_auth
;;
-disp)
if [ $# -lt 2 ]
then
Echo2 "Invalid parameters"
syntax
exit 1
fi
shift
case $1 in
0|1|2|3|4|5)
XX=$1
shift
;;
*)
Echo2 "Invalid parameters"
syntax
exit 1
;;
esac
;;
*)
break;
;;
esac
done
# Now make sure DISPLAY is set. If not, then set to ":0.0" (i.e. local
default
# display) so clients that don't default reasonably don't choke.
[ "$DISPLAY" = "" ]
case $? in
0)
DISPLAY=:0.0
export DISPLAY
;;
esac
[ "$MERGE_POSITION" = "" ]
case $? in
0)
MERGE_POSITION=fullscreen
export MERGE_POSITION
;;
esac
[ "$MERGE_AUTOBACKGROUND" = "" ]
case $? in
0)
MERGE_AUTOBACKGROUND=off
export MERGE_AUTOBACKGROUND
;;
esac
print_xfree_ver
find_free_display()
{
# Look for a display that X is not running on.
for XX in 0 1 2 3 4 5 allinuse
do
if [ "$XX" = "allinuse" ]
then
Echo2 All displays in use.
exit 1
fi
[ ! -e /tmp/.X${XX}-lock ] && break
Echo2 X running on ${XX}.
done
}
if [ "$XX" = "xx" ]
then
find_free_display
fi
Echo2 Trying display ${XX}.
if [ "$USE_AUTH" = "use_auth" ]
then
FWIN_MCOOKIE=`mcookie`
FWIN_HOSTNAME=`hostname -f 2> /dev/null`
if [ "_$FWIN_HOSTNAME" = "_" ]
then
FWIN_HOSTNAME=`hostname 2> /dev/null`
fi
if [ "_$FWIN_HOSTNAME" = "_" ]
then
FWIN_HOSTNAME=localhost
fi
xauth add :$XX . $FWIN_MCOOKIE
xauth add ${FWIN_HOSTNAME}:$XX . $FWIN_MCOOKIE
if [ "_$XAUTHORITY" = "_" ]
then
FWIN_AUTH_FILE="$HOME/.Xauthority"
else
FWIN_AUTH_FILE="$XAUTHORITY"
fi
FWIN_X_ARGS="$FWIN_X_ARGS -auth $FWIN_AUTH_FILE"
fi
# Now start X and the intial clients specified in $SYS_RC_DIR/$SYS_RC_FILE
Echo2 xinit /bin/sh ${SYS_RC_DIR}/${SYS_RC_FILE} $* -- :$XX $FWIN_X_ARGS
xinit /bin/sh ${SYS_RC_DIR}/${SYS_RC_FILE} $* -- :$XX $FWIN_X_ARGS
--------------3179821505BDAFF910D6BB9B--
--__--__--
Message: 2
Date: Thu, 01 Mar 2001 23:00:48 -0800
From: David Peet <[EMAIL PROTECTED]>
To: win4lin-users <[EMAIL PROTECTED]>
CC: Al Doland <[EMAIL PROTECTED]>
Subject: Re: [Win4Lin-users] Windows Alt/PrintScreen Key Combination
Reply-To: [EMAIL PROTECTED]
Al Doland wrote:
>
> I'm running Win98 and Red Hat 7.0 and the Alt/PrintScreen key combination
> yields no data in the buffer. Of course PrintScreen produces the whole
> screen. Anyone know what I'm doing wrong?
>
> Thanks, Al
The X window manager might be eating that key sequence.
When you start a session with "fwin", does it still not work?
In a "fwin" session there is no X window manager so more key
combinations (such as alt-tab) are handled by Windows instead
of the X window manager. If this is the case, then perhaps
you can try configuring your X window manager to let those
keystrokes thru, or use fwin.
-David
--__--__--
Message: 3
From: Bob Nielsen <[EMAIL PROTECTED]>
Date: Fri, 2 Mar 2001 02:27:23 -0800
To: [EMAIL PROTECTED]
Subject: [Win4Lin-users] Windows blacking out in X 4.0.2
Reply-To: [EMAIL PROTECTED]
I recently installed X 4.0.2 and have the backingstore option
configured. I don't get any blacking out of the Windows 98 window when
switching between X applications, but if I switch to a text console and
back to X, it does black out (other X applications do not). Is there a
workaround for this?
Bob
--__--__--
Message: 4
From: Bob Nielsen <[EMAIL PROTECTED]>
Date: Fri, 2 Mar 2001 03:33:06 -0800
To: [EMAIL PROTECTED]
Subject: [Win4Lin-users] Error in upgrading to Win4Lin 2.0.2
Reply-To: [EMAIL PROTECTED]
I just tried to upgrade from Win4Lin 2.0.1 to 2.0.2. I did the
following steps (this is a Debian system):
1. Copy /var/win4lin/install/license.txt.
2. Remove win4lin with 'dpkg -r'.
3. Convert Win4Lin-5.1.1f-1.i386.rpm to .deb with alien (creates
win4lin_5.1.1f-2_i386.deb).
4. Install win4lin_5.1.1f-2_i386.deb with 'dpkg -i'.
5. Run /opt/win4lin/postinst_rpm.sh.
6. Copy license.txt to /opt/win4lin/install.
All of the above completed without incident. However, when I try to
run win4lin, I get an error:
NOT_R_ERR: dos: ERROR: Unable to open file
/var/win4lin/image/std/vga/vga.img'. File does not exist or is not
readable by you.
Indeed this file does not exist. I don't recall having this problem
with previous versions, but it has been a while.
What did I miss?
Bob
--__--__--
Message: 5
Date: Fri, 02 Mar 2001 10:14:46 -0500
From: "Paul W. Abrahams" <[EMAIL PROTECTED]>
Organization: (no org)
To: Win4Lin user group <[EMAIL PROTECTED]>
Subject: [Win4Lin-users] Version numbering
Reply-To: [EMAIL PROTECTED]
When I bring up Help/Version (via Shift-F12 from the Win4Lin
screen), I see that the version number is 5.1.1. How does
that correspond to 2.0.1/2.0.2, etc?
Paul Abrahams
--__--__--
_______________________________________________
Win4Lin-users mailing list
[EMAIL PROTECTED]
https://lists.netraverse.com/mailman/listinfo/win4lin-users
End of Win4Lin-users Digest
_______________________________________________
Win4Lin-users mailing list
[EMAIL PROTECTED]
https://lists.netraverse.com/mailman/listinfo/win4lin-users