Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
79b387de
Commit
79b387de
authored
Sep 27, 2005
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Initial version of a wineserver man page.
parent
6b2a9b30
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
126 additions
and
4 deletions
+126
-4
.cvsignore
server/.cvsignore
+1
-0
Makefile.in
server/Makefile.in
+12
-4
wineserver.man.in
server/wineserver.man.in
+113
-0
No files found.
server/.cvsignore
View file @
79b387de
Makefile
wineserver
wineserver.man
server/Makefile.in
View file @
79b387de
...
...
@@ -49,19 +49,27 @@ C_SRCS = \
winstation.c
PROGRAMS
=
wineserver
MANPAGES
=
wineserver.man
all
:
$(PROGRAMS)
all
:
$(PROGRAMS)
$(MANPAGES)
@MAKE_RULES@
wineserver
:
$(OBJS)
$(CC)
-o
$(PROGRAMS)
$(OBJS)
$(LIBWINE)
$(LIBUNICODE)
$(LIBPORT)
$(LDFLAGS)
$(LIBS)
install
::
$(PROGRAMS)
$(MKINSTALLDIRS)
$(bindir)
wineserver.man
:
wineserver.man.in
sed
-e
's,@bindir\@,
$(bindir)
,g'
-e
's,@PACKAGE_STRING\@,@PACKAGE_STRING@,g'
$(SRCDIR)
/wineserver.man.in
>
$@
||
(
$(RM)
$@
&&
false
)
install
::
$(PROGRAMS) $(MANPAGES)
$(MKINSTALLDIRS)
$(bindir)
$(mandir)
/man
$(prog_manext)
$(INSTALL_PROGRAM)
wineserver
$(bindir)
/wineserver
$(INSTALL_DATA)
wineserver.man
$(mandir)
/man
$(prog_manext)
/wineserver.
$(prog_manext)
uninstall
::
$(RM)
$(bindir)
/wineserver
$(RM)
$(bindir)
/wineserver
$(mandir)
/man
$(prog_manext)
/wineserver.
$(prog_manext)
clean
::
$(RM)
$(MANPAGES)
### Dependencies:
server/wineserver.man.in
0 → 100644
View file @
79b387de
.\" -*- nroff -*-
.TH WINESERVER 1 "September 2005" "@PACKAGE_STRING@" "Wine server"
.SH NAME
wineserver \- the Wine server
.SH SYNOPSIS
.BI wineserver\ [options]
.SH DESCRIPTION
.B wineserver
is a daemon process that provides to Wine roughly the same services
that the Windows kernel provides on Windows.
.PP
.B wineserver
is normally launched automatically when starting \fBwine(1)\fR, so you
shouldn't have to worry about it. In some cases however, it can be
useful to start \fBwineserver\fR explicitly with different options, as
explained below.
.SH OPTIONS
.TP
.BI \-d [n]
Set the debug level to
.I n.
0 means no debugging information, 1 is the normal level, and 2 is for
extra verbose debugging. If
.I n
is not specified, the default is 1. The debug output will be sent to
stderr. \fBwine(1)\fR will automatically set the debug level when
starting \fBwineserver\fR if the +server option is set in the
WINEDEBUG variable.
.TP
.B \-f
Make the server remain in the foreground for easier debugging, for
instance when running it under a debugger.
.TP
.B \-h
Display a help message.
.TP
.BI \-k [n]
Kill the currently running
.B wineserver,
optionally by sending signal \fIn\fR. If no signal is specified, sends
a SIGINT first and then a SIGKILL. The instance of \fBwineserver\fR
that is killed is selected based on the WINEPREFIX environment
variable.
.TP
.BI \-p [n]
Specify the \fBwineserver\fR persistence delay, i.e. the amount of
time that the server will keep running when all client processes have
terminated. This avoids the cost of shutting down and starting again
when programs are launched in quick succession. The timeout \fIn\fR is
in seconds, the default value is 3 seconds. If \fIn\fR is not
specified, the server stays around forever.
.TP
.B \-v
Display version information and exit.
.TP
.B \-w
Wait until the currently running
.B wineserver
terminates.
.SH ENVIRONMENT VARIABLES
.TP
.I WINEPREFIX
If set, the content of this variable is taken as the name of the directory where
.B wineserver
stores its data (the default is \fI$HOME/.wine\fR). All
.B wine
processes using the same
.B wineserver
(i.e.: same user) share certain things like registry, shared memory
and kernel objects.
By setting
.I WINEPREFIX
to different values for different Wine processes, it is possible to
run a number of truly independent Wine sessions.
.TP
.I WINESERVER
Specifies the path and name of the
.B wineserver
binary that will be launched automatically by \fBwine\fR. If not set,
\fBwine\fR will try to load
.I @bindir@/wineserver,
and if this doesn't exist it will then look for a file named
\fIwineserver\fR in the path and in a few other likely locations.
.SH FILES
.TP
.B ~/.wine
Directory containing user specific data managed by
.B wine.
.TP
.BI /tmp/.wine- uid
The directory containing the server Unix socket and the lock
file. These files are created in a subdirectory generated from the
WINEPREFIX directory device and inode numbers.
.SH AUTHORS
The original author of
.B wineserver
is Alexandre Julliard. Many other people have contributed new features
and bug fixes. Please check the file Changelog in the Wine
distribution for the complete details.
.SH BUGS
If you find a bug, please submit a bug report at
.UR http://bugs.winehq.org
.B http://bugs.winehq.org.
.UE
.SH AVAILABILITY
.B wineserver
is part of the Wine distribution, which is available through WineHQ,
the Wine development headquarters, at
.UR http://www.winehq.org/
.B http://www.winehq.org/.
.UE
.SH "SEE ALSO"
.BR wine (1).
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment