how to install .sh files in openSUSE

4,127 views
Skip to first unread message

krishanu

unread,
Feb 19, 2009, 1:53:06 PM2/19/09
to GNU/Linux Users' Group, NIT Durgapur
I have openSUSE 11.1,
pls tell me how to install this type of setup files.
thanks.

Debayan Banerjee

unread,
Feb 19, 2009, 1:56:56 PM2/19/09
to nitd...@googlegroups.com


2009/2/20 krishanu <krishan...@gmail.com>


I have openSUSE 11.1,
pls tell me how to install this type of setup files.
thanks.
in shell type:
sh filename.sh

and press enter.



--
Be Intelligent, Use GNU/Linux.
http://debayan.wordpress.com
http://lug.nitdgp.ac.in
http://planet-india.randomink.org

Varsha Jaikumar

unread,
Feb 19, 2009, 2:05:56 PM2/19/09
to nitd...@googlegroups.com
On Fri, Feb 20, 2009 at 12:26 AM, Debayan Banerjee <deba...@gmail.com> wrote:


2009/2/20 krishanu <krishan...@gmail.com>


I have openSUSE 11.1,
pls tell me how to install this type of setup files.
thanks.
in shell type:

Is shell same as terminal? 

sh filename.sh




and press enter.



--
Be Intelligent, Use GNU/Linux.
http://debayan.wordpress.com
http://lug.nitdgp.ac.in
http://planet-india.randomink.org






--
Varsha Jaikumar
Computer Science & Engineering
2nd Year


Debayan Banerjee

unread,
Feb 19, 2009, 2:09:30 PM2/19/09
to nitd...@googlegroups.com


Is shell same as terminal? 
Well terminal is like a brand name of shell. shell is a theoretical concept, terminal is the implementation. That is what i understand as the difference.
Also, terminal is what you open when you are in a GUI. shell is something that exists when you press ctrl+alt+f1, when there is no gui at all.

am i correct?

Abhishek

unread,
Feb 19, 2009, 2:10:26 PM2/19/09
to nitd...@googlegroups.com

Is shell same as terminal? 
ya its the place frm where u can interact with shell 

--
Abhishek Srivastava
MCA-2nd Yr
NIT Durgapur
(http://feelfree.ning.com/profile/AbhishekSrivastava)

Mukti '09 : http://mukti09.in/ Celebrating FOSS

Varsha Jaikumar

unread,
Feb 19, 2009, 2:17:26 PM2/19/09
to nitd...@googlegroups.com
On Fri, Feb 20, 2009 at 12:39 AM, Debayan Banerjee <deba...@gmail.com> wrote:


Is shell same as terminal? 
Well terminal is like a brand name of shell. shell is a theoretical concept, terminal is the implementation. That is what i understand as the difference.
Also, terminal is what you open when you are in a GUI. shell is something that exists when you press ctrl+alt+f1, when there is no gui at all.

I pressed Ctrl+Alt+F1.
The screen went blank for some time, then returned to my working window.
It lasted for about 3 seconds or so.
So, how do we type in the command?

Will it not work when we have an active GUI?

When we login using Linux, we are shown different options before we press any key.
There is an option Default. I think when we boot using this Default option, we do not get any GUI. We get only a terminal type screen. Is this what is called a shell?

Shreyank Gupta

unread,
Feb 19, 2009, 2:50:15 PM2/19/09
to nitd...@googlegroups.com


Is shell same as terminal? 
Well terminal is like a brand name of shell. shell is a theoretical concept, terminal is the implementation. That is what i understand as the difference.
Also, terminal is what you open when you are in a GUI. shell is something that exists when you press ctrl+alt+f1, when there is no gui at all.

I pressed Ctrl+Alt+F1.
The screen went blank for some time, then returned to my working window.
It lasted for about 3 seconds or so.
So, how do we type in the command?

Will it not work when we have an active GUI?

When we login using Linux, we are shown different options before we press any key.
There is an option Default. I think when we boot using this Default option, we do not get any GUI. We get only a terminal type screen. Is this what is called a shell?

 
See its like this,
Linux provides us with 7 working shells. All accessible using atl+ctrl+1, alt+ctrl+2... alt+ctrl+7...
alt_ctrl+7 grings back the GUI (graphical user interface), which maybe KDE, Gnome or any other graphical interface you may be using.
alt+ctrl+1 to alt+ctrl+6 provides you with a command line(shell). You have to login using any username and password (even root) and then you can work there! But of cource who like working with a command line.

The GUI on the other hand(where we all wanna work) provides us with more options.
If you are using KDE u can open Konsole, for Gnome the default is terminal. or use xterm.
All are the same. All open up another instance of the shell.

Now what is a shell? Shell as its name suggests is an outer layer to your operating system. The operating system (gnu/linux here) is basically two main parts. The kernel and the shell. The kernel is on the inside and interacts with your hardware. The shell is the interface between the user and the kernel. So when you are using a GUI (say pidgin/firefox) it interacts through the shell to the kernel and gets your work done.

But sometimes the user requires a shell. Because he/she may have work for which a GUI is not yet developed or maybe it's just required. Also Linux/Unix is powerful because of its powerful shell. So we open up terminal/xterm/konsole to do our work. Feel free to upen another instance of the shell in a new tab/ another terminal/konsone/xterm.

There are different types od shells in existance. All shells we use now is bash (Bourne Again Shell) which is a improvement on sh (simple shell). So when you boot your mechine in single user mode(now how to do that? Google!!!) you will find sh as the default shell. Typing in bash will run bash.

Thats it! Phew!


--
Thanks and Regards,
Shreyank Gupta
Blog: http://allsortsofshrink.blogspot.com

Shreyank Gupta

unread,
Feb 19, 2009, 2:51:31 PM2/19/09
to nitd...@googlegroups.com

 
See its like this,
Linux provides us with 7 working shells. All accessible using atl+ctrl+1, alt+ctrl+2... alt+ctrl+7...
alt_ctrl+7 grings back the GUI (graphical user interface), which maybe KDE, Gnome or any other graphical interface you may be using.
alt+ctrl+1 to alt+ctrl+6 provides you with a command line(shell). You have to login using any username and password (even root) and then you can work there! But of cource who like working with a command line.

The GUI on the other hand(where we all wanna work) provides us with more options.
If you are using KDE u can open Konsole, for Gnome the default is terminal. or use xterm.
All are the same. All open up another instance of the shell.

Now what is a shell? Shell as its name suggests is an outer layer to your operating system. The operating system (gnu/linux here) is basically two main parts. The kernel and the shell. The kernel is on the inside and interacts with your hardware. The shell is the interface between the user and the kernel. So when you are using a GUI (say pidgin/firefox) it interacts through the shell to the kernel and gets your work done.

But sometimes the user requires a shell. Because he/she may have work for which a GUI is not yet developed or maybe it's just required. Also Linux/Unix is powerful because of its powerful shell. So we open up terminal/xterm/konsole to do our work. Feel free to upen another instance of the shell in a new tab/ another terminal/konsone/xterm.

There are different types od shells in existance. All shells we use now is bash (Bourne Again Shell) which is a improvement on sh (simple shell). So when you boot your mechine in single user mode(now how to do that? Google!!!) you will find sh as the default shell. Typing in bash will run bash.

Thats it! Phew!
please ignore all spelling/grammatical errors! :|

Debayan Banerjee

unread,
Feb 19, 2009, 2:58:55 PM2/19/09
to nitd...@googlegroups.com


2009/2/20 Shreyank Gupta <shre...@gmail.com>
i ignored the entire mail also :P




--
Thanks and Regards,
Shreyank Gupta
Blog: http://allsortsofshrink.blogspot.com



Shreyank Gupta

unread,
Feb 19, 2009, 3:00:48 PM2/19/09
to nitd...@googlegroups.com

i ignored the entire mail also :P
Wasn't for you!
Others (noobies) please go through it. Its very helpful. I mean I hope it is! :)

Varsha Jaikumar

unread,
Feb 19, 2009, 3:02:28 PM2/19/09
to nitd...@googlegroups.com
On Fri, Feb 20, 2009 at 1:30 AM, Shreyank Gupta <shre...@gmail.com> wrote:

i ignored the entire mail also :P
Wasn't for you!
Others (noobies) please go through it. Its very helpful. I mean I hope it is! :)

Yes it is. I got to know a lot.


--
Thanks and Regards,
Shreyank Gupta
Blog: http://allsortsofshrink.blogspot.com



Debayan Banerjee

unread,
Feb 19, 2009, 3:04:31 PM2/19/09
to nitd...@googlegroups.com


2009/2/20 Shreyank Gupta <shre...@gmail.com>


i ignored the entire mail also :P
Wasn't for you!
abey gussa mat ho. I did read the entire thing.
good stuff.

Shreyank Gupta

unread,
Feb 19, 2009, 3:10:16 PM2/19/09
to nitd...@googlegroups.com
On Fri, Feb 20, 2009 at 1:34 AM, Debayan Banerjee <deba...@gmail.com> wrote:


2009/2/20 Shreyank Gupta <shre...@gmail.com>

i ignored the entire mail also :P
Wasn't for you!
abey gussa mat ho. I did read the entire thing.
good stuff.
Arre you toh know all this! Waise bhi I have a bad habit of looking through mails instead of reading through them. Trying to change the habit!
@versha :)

Reply all
Reply to author
Forward
0 new messages