LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   error: Failed dependencies: /bin/sh is needed by gsSeqTools-1:2.7-1.i686 ?? (https://www.linuxquestions.org/questions/linux-newbie-8/error-failed-dependencies-bin-sh-is-needed-by-gsseqtools-1-2-7-1-i686-939129/)

blue_devilme 04-10-2012 01:24 PM

error: Failed dependencies: /bin/sh is needed by gsSeqTools-1:2.7-1.i686 ??
 
Hi...

Would anyone help me out with this? Thanx in advance!!

been trying to install Roche Data Analysis V2.7 in ubuntu 11.10. getting this error message .... 'error: Failed dependencies: /bin/sh is needed by gsSeqTools-1:2.7-1.i686'

./setup.sh: OK
./README: OK
./packages/jre-linux-i586-oracle-2.7-1.noarch.rpm: OK
./packages/gsMapper-2.7-1.noarch.rpm: OK
./packages/gsNewbler-2.7-1.i686.rpm: OK
./packages/gsSeqTools-2.7-1.x86_64.rpm: OK
./packages/gsAmplicons-2.7-1.noarch.rpm: OK
./packages/gsNewbler-2.7-1.x86_64.rpm: OK
./packages/amplicons_CLI_2.7.i686.tgz: OK
./packages/gsAssembler-2.7-1.noarch.rpm: OK
./packages/gsSeqTools-2.7-1.i686.rpm: OK
=============================

=============================
[02:20:28 AM] rpm -U --force /home/xxxxx/Downloads/sff/DataAnalysis_2.7_All/packages/jre-linux-i586-oracle-2.7-1.noarch.rpm

rpm: RPM should not be used directly install RPM packages, use Alien instead!
rpm: However assuming you know what you are doing...
warning: /home/xxxxx/Downloads/sff/DataAnalysis_2.7_All/packages/jre-linux-i586-oracle-2.7-1.noarch.rpm: Header V3 DSA/SHA1 Signature, key ID e50b562c: NOKEY
=============================

=============================
[02:20:30 AM] rpm -U --force /home/xxxx/Downloads/sff/DataAnalysis_2.7_All/packages/gsSeqTools-2.7-1.i686.rpm

rpm: RPM should not be used directly install RPM packages, use Alien instead!
rpm: However assuming you know what you are doing...
warning: /home/xxxxx/Downloads/sff/DataAnalysis_2.7_All/packages/gsSeqTools-2.7-1.i686.rpm: Header V3 DSA/SHA1 Signature, key ID e50b562c: NOKEY
error: Failed dependencies:
/bin/sh is needed by gsSeqTools-1:2.7-1.i686



:)

Kustom42 04-10-2012 01:28 PM

On red hat distros /bin/sh is a symlink to your current shell. So if you are running bash /bin/sh is linked to /bin/bash. Try creating that link to /bin/bash as I believe debian will use the dash shell by default.

blue_devilme 04-10-2012 11:28 PM

still at lost
 
thanx for ur rep!! im a newbie on linux ubuntu...seriously, how to create that symlink? :(

deep27ak 04-10-2012 11:59 PM

by default you are logged in /bin/bash so you can change the shell to /bin/sh

from the shell
Code:

#echo $SHELL
/bin/bash

to check the current shell

now to change the shell
Code:

#/bin/sh
#echo $SHELL

if you want the shell to be sh everytime you login then

Code:

#chsh -s /bin/sh


All times are GMT -5. The time now is 02:05 AM.