OESF Portables Forum

Everything Else => Zaurus Distro Support and Discussion => Distros, Development, and Model Specific Forums => Archived Forums => Angstrom & OpenZaurus => Topic started by: TheWalt on May 16, 2006, 11:34:33 pm

Title: Ssh X Forwarding
Post by: TheWalt on May 16, 2006, 11:34:33 pm
I hate to even post the question but is there any way to enable X forwarding with a SSH session?  I did a forum search but didn't see anyone else ask this.  The usual -X switch isn't even available.

Thanks in advance.
Title: Ssh X Forwarding
Post by: Hrw on May 17, 2006, 05:06:41 am
install openssh, remove dropbear
Title: Ssh X Forwarding
Post by: TheWalt on May 17, 2006, 03:49:11 pm
Quote
install openssh, remove dropbear
[div align=\"right\"][a href=\"index.php?act=findpost&pid=127421\"][{POST_SNAPBACK}][/a][/div]

Perfect, works great!  Just checking, when I go to remove dropbear it warns against 'task-bootstrap' being a dependent.  Is it ok to remove that also?

Thanks again!
Title: Ssh X Forwarding
Post by: lardman on May 17, 2006, 06:21:01 pm
task-bootstrap is a meta package that includes all of the packages that are needed to boot the machine, so don't remove it (with that said, depending on what commands you give ipkg, it may just remove that empty package, not the packages that are included with it.)

To remove dropbear (or anything else) without heeding the warnings about deps, use the --force-dependencies switch.


Si

Try a plain 'ipkg remove' first
Title: Ssh X Forwarding
Post by: hvontres on May 17, 2006, 06:25:07 pm
Quote
task-bootstrap is a meta package that includes all of the packages that are needed to boot the machine, so don't remove it (with that said, depending on what commands you give ipkg, it may just remove that empty package, not the packages that are included with it.)
In my experience, using just
Code: [Select]
ipkg remove will only remove the empty package and none of the dependents.
Title: Ssh X Forwarding
Post by: lardman on May 18, 2006, 05:41:12 am
Okay, take care if you try my method then.

Si
Title: Ssh X Forwarding
Post by: koen on May 18, 2006, 05:47:34 am
'ipkg remove dropbear -recursive'
Title: Ssh X Forwarding
Post by: lardman on May 18, 2006, 06:05:58 am
Doesn't that remove all of the dependent packages recursively? So removing task-bootstrap will remove pretty much everything?

Or does it remove things that depend on the package that's being removed? So removing dropbear will remove everything...

Si
Title: Ssh X Forwarding
Post by: TheWalt on May 18, 2006, 10:35:01 pm
Quote
'ipkg remove dropbear -recursive'
[div align=\"right\"][a href=\"index.php?act=findpost&pid=127553\"][{POST_SNAPBACK}][/a][/div]

that worked, thanks