Sponsored Content
Special Forums Windows & DOS: Issues & Discussions From WinXP to Unix with X-window Post 62996 by luke on Tuesday 22nd of February 2005 06:43:09 AM
Old 02-22-2005
Cygwin

XLiveCD sounds good: it uses Cygwin. Cygwin is free, and includes an X server.
See http://cygwin.com/, and for info on installing see
http://cygwin.com/cygwin-ug-net/setup-net.html#AEN194

Note one trick: the default install is minimal - no X, it's barely serviceable. If you select All when selecting packages (click on "Default" until it changes to "Install"), then you'll be installing over a GB of programs.

One more trick: there are lots of mirrors of Cygwin, and because it's big and frequently updated, often the mirrors are incomplete, especially while major updates are rippling out.

I haven't been able to convince anyone to run my script that automatically runs the md5 sig checks and "publishes" the results at the root of the Cygwin mirror. So I'm afraid checking the mirror's integrity is left as an exercise for the reader. (Tip: download and check the download, directory by directory.)

But usually the mirrors are okay.

Don't forget to run mkpasswd, mkgroup (with both -l and -d options), and run ssh-host-config to setup ssh after you've installed it.

Oh, and when you ssh into the Unix box to run the X application, use the -Y option on ssh, not the -X.
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Unix and WinXP

hOWDY-hO.... who can help me??! how can i connect my pc with WInXP pro with my old HP-Unix workstation?!? :confused: my ps's got a BNC/rj45 network card but i'm using this card for my adsl connection... (i want to use it for my unix connection too...) thx (1 Reply)
Discussion started by: Blasto
1 Replies

2. UNIX for Dummies Questions & Answers

unix window

i recently install redhat linux as a dual boot with win2000. after i log in my unix account. i tried to get window unix by typing startx or xinit. both gave me error. display message among other thing was something like fatal error. any help? thanks (12 Replies)
Discussion started by: bb00y
12 Replies

3. UNIX for Dummies Questions & Answers

installing unix on pc next to WinXP

Hello, It can be that i overlooked some questions and that somebody else already asked this question. The fact is that i want to install Freebsd (i saw that this was one of the best options on pc) on my homecomputer, but without removing everything i have on winXP. So my question is :... (2 Replies)
Discussion started by: verhaeren
2 Replies

4. Windows & DOS: Issues & Discussions

conection WinXP with servidor UNIX

Hi How do conect a WinXP with servidor UNIX? I donīt conect. I need help. (1 Reply)
Discussion started by: rodrigues
1 Replies

5. UNIX for Dummies Questions & Answers

Have Win98/WinXp..Thinking about Unix!!

I presently have three partitions; one is win. 98(10gig) and the the other xp(10gig). While one more partition that I use as storage(of 20gig). My question is, if I decide to format/remove win. 98 and install unix...would it be possible to do so without disrupting the Winxp....and also, as a... (2 Replies)
Discussion started by: templer
2 Replies

6. Windows & DOS: Issues & Discussions

Unix And winxp

I was wondering if it is possible to install unix on a winxp cpu and not mess up the xp o/s (2 Replies)
Discussion started by: usmcgerula
2 Replies

7. Filesystems, Disks and Memory

Format winxp to unix

i am a newbie to unix i have an old ibm thinkpad t40 and i want to erase the winxp os and put unix on do i need a seperate unix os with a distribution or or do i just load the distribution on if i need a seperate unix os can someone post a llink to a site where i can get a free copy and load it... (2 Replies)
Discussion started by: Texasone
2 Replies

8. UNIX for Dummies Questions & Answers

rdist from unix to window XP

I need to rdist some files from unix to window XP, where the source file is in Unix box. I can't get a way to do it as it always prompted me permission denied. rdist -c migtest.tar <ipaddr>:/filedir/migtest.tar updating host <ipaddr> Permission denied. I'd tried to ftp and put the file... (0 Replies)
Discussion started by: lenniegu
0 Replies

9. UNIX for Dummies Questions & Answers

Remote Unix printing to my WinXP works with no router. How can I make it work through my router?

I set up remote printing on a clients Unix server to my Windows XP USB printer. My USB printer is connected directly to my PC (no print server and no network input on printer). With my Win XP PC connected to my cable modem (without the router), i can do lp -dhp842c /etc/hosts and it prints. I... (7 Replies)
Discussion started by: jmhohne
7 Replies

10. Shell Programming and Scripting

File Transfer from Window server to UNIX and UNIX to UNIX

Dear All, Can someone help to command or program to transfer the file from windows to Unix server and from one unix server to another Unix server in secure way. I would request no samba client. (4 Replies)
Discussion started by: yadavricky
4 Replies
DBD::Gofer::Transport::stream(3)			User Contributed Perl Documentation			  DBD::Gofer::Transport::stream(3)

NAME
DBD::Gofer::Transport::stream - DBD::Gofer transport for stdio streaming SYNOPSIS
DBI->connect('dbi:Gofer:transport=stream;url=ssh:username@host.example.com;dsn=dbi:...',...) or, enable by setting the DBI_AUTOPROXY environment variable: export DBI_AUTOPROXY='dbi:Gofer:transport=stream;url=ssh:username@host.example.com' DESCRIPTION
Without the "url=" parameter it launches a subprocess as perl -MDBI::Gofer::Transport::stream -e run_stdio_hex and feeds requests into it and reads responses from it. But that's not very useful. With a "url=ssh:username@host.example.com" parameter it uses ssh to launch the subprocess on a remote system. That's much more useful! It gives you secure remote access to DBI databases on any system you can login to. Using ssh also gives you optional compression and many other features (see the ssh manual for how to configure that and many other options via ~/.ssh/config file). The actual command invoked is something like: ssh -xq ssh:username@host.example.com bash -c $setup $run where $run is the command shown above, and $command is . .bash_profile 2>/dev/null || . .bash_login 2>/dev/null || . .profile 2>/dev/null; exec "$@" which is trying (in a limited and fairly unportable way) to setup the environment (PATH, PERL5LIB etc) as it would be if you had logged in to that system. The ""perl"" used in the command will default to the value of $^X when not using ssh. On most systems that's the full path to the perl that's currently executing. PERSISTENCE
Currently gofer stream connections persist (remain connected) after all database handles have been disconnected. This makes later connections in the same process very fast. Currently up to 5 different gofer stream connections (based on url) can persist. If more than 5 are in the cache when a new connection is made then the cache is cleared before adding the new connection. Simple but effective. TO DO
Document go_perl attribute Automatically reconnect (within reason) if there's a transport error. Decide on default for persistent connection - on or off? limits? ttl? AUTHOR
Tim Bunce, <http://www.tim.bunce.name> LICENCE AND COPYRIGHT
Copyright (c) 2007, Tim Bunce, Ireland. All rights reserved. This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See perlartistic. SEE ALSO
DBD::Gofer::Transport::Base DBD::Gofer perl v5.18.2 2013-06-24 DBD::Gofer::Transport::stream(3)
All times are GMT -4. The time now is 11:07 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy