|
#1
| |||
| |||
| hi! well, here's my question: how can I copy ssh from an earlier version of Mac OS X onto the Mac OS X 10.4x without overwriting the existing one? the reason why: http://macosx.com/forums/showthread....ighlight=stata thank you for your help! pascal Last edited by htwxx; September 6th, 2006 at 09:54 AM. |
|
#2
| ||||
| ||||
| If you have access to an earlier version of a Mac OS X Install, then you can simply copy over the ssh program into the Tiger Mac OS X and put it in a different place (like /usr/local/bin). Then, you can use the older version of ssh with the full path name, like "./usr/local/bin/ssh"
__________________ Power Macintosh G4/500MHz "Yikes!" 10.4.11 Server • 1024MB • 3 x 120GB + 320GB • DVR-111D • 2 x Radeon 7000 PCI • 2 x 17" CRT MacBook 2.0GHz Core 2 Duo - White 10.5.5 • 2048MB • 80GB • CD-RW/DVD-ROM iPod Photo 60GB • iPod nano 1GB • AT&T DSL 6Mb/768k http://www.jeffhoppe.com |
|
#3
| |||
| |||
| thank you for your post! I guess I am not that much of a X11 crack, though! my questions: - what I have is a Mac OS X 10.3x Install cd-rom. but I could not find any file like ssh. so, where can I find it on my install disc? - when I have copied the file like you said, how can I make the NX Client (nomachine) use this older version of ssh? or do I have to set this up manually now? and if so, how do I do that? thanx again, pascal |
|
#4
| |||
| |||
| You need to either tell Finder to show invisible files, or look at the CD using Terminal (Applications/Utilities/Terminal). $ cd /Volumes $ ls (listing of the different volumes) $ cd whatever Look around. I'm not sure quite where it will be, but you can use the find command if necessary. $ man find for further information. It doesn't have anything to do with X11, though. X11 can use ssh for remote display, but ssh doesn't require X11. Users without X11 installed still have ssh. So if you don't know much about X11 (join the club), it shouldn't be a problem here. I don't know anything at all about nomachine, though, so somebody else will have to answer that question. It *might* help to manipulate your path so that the system looks in /usr/local/bin before /usr/bin, /usr/sbin etc. You can configure your shell to do this automatically. For bash: PATH="/usr/local/bin:${PATH}"; export PATH - add to ~/.bashrc and/or ~/.bash_profile as appropriate For sh: PATH="/usr/local/bin:${PATH}"; export PATH - add to ~/.shinit and/or ~/.profile as appropriate (bash will read these too, but only if it cannot find the bash-specific files) For tcsh: setenv PATH /usr/local/bin:${PATH} - add to ~/.login and/or ~/.tcshrc and/or ~/Library/init/tcsh/environment.mine as appropriate Note that you may have to create some of these files. You can find information in the documentation for each shell. For example, $ man bash for information in bash is your default shell (which it should be in Tiger if you haven't changed it) You can find the system-wide config files at: /etc/bashrc /etc/csh.cshrc /etc/csh.login (and /etc/csh.logout) and tcsh example config files at in /usr/share/tcsh/examples - cfr Last edited by cfr; October 11th, 2006 at 11:11 PM. |
![]() |
| Thread Tools | |
|
|
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| How do I copy a DVD? | twister | Mac OS X System & Mac Software | 6 | May 10th, 2006 06:51 PM |
| OS 9.1 copy | fritzhund | Mac Classic System & Software | 3 | February 8th, 2006 09:23 AM |
| Best way to copy DVD-Rs please? | karavite | Design & Media | 2 | October 2nd, 2003 07:49 AM |
| Cannot copy in 10.2.1??? | DGNMRWRW | Mac OS X System & Mac Software | 9 | October 3rd, 2002 08:36 PM |
| cp doesn't copy | Dinko | Mac OS X System & Mac Software | 2 | December 16th, 2001 08:01 PM |