Computer Forums

Member Login

Remember Me? Sign Up! | Forgot Password
 
Slogan
 
Closed Thread
Old 02-18-2008, 08:40 PM   #1 (permalink)
 
Super Techie

Join Date: Sep 2004

Posts: 302

eipeks is on a distinguished road

Default Help with Kubuntu....

I am a total noob to Linux, and I was hoping to play around with it a little.... though, I cannot figure out how to actually RUN something! lol

ie: I just downloaded ventrilo server for linux, but I cannot figure out how to actually make it work!! Could someone help me out a little? Once I extract the files (into my home folder), how do i run the executable?
__________________


eipeks is offline  
Old 02-18-2008, 09:52 PM   #2 (permalink)
Mak213's Avatar
 

Join Date: Sep 2004

Location: C:\Windows\System32

Posts: 25,666

Mak213 is a name known to allMak213 is a name known to allMak213 is a name known to allMak213 is a name known to allMak213 is a name known to allMak213 is a name known to all

Default Re: Help with Kubuntu....

Linux does uses executalbes. They use the Synaptic Package Manager. Most files for Kubuntu are most likely gonna be like Ubuntu and use the .deb package for install. Which will go thru the debian package isntaller.

Ventrilo - Setup

That could also help. The instructions right from Ventrillo.
__________________
R.I.P. Danny L. Trotter
14 Nov 1945 - 4 Sept 2009
Images created by CarnageX | Decaptured...Listen! | Visit Baezware!! | You've been Mak'd! | 儿做好
I do not accept support questions via EMail, PM, IM or my Spaces page! .:|:. This is what happens when an unstoppable force meets an immovable object.
Thanks to all the guys on the staff for your support in my time of need. Hefe you are my personal Hero for your contribution.



<<<< If I help you, or you just like what I said, rep me
Mak213 is offline  
Old 02-19-2008, 12:40 AM   #3 (permalink)
Greg's Avatar
 
Indeed.

Join Date: Dec 2004

Posts: 1,554

Greg is on a distinguished road

Default Re: Help with Kubuntu....

Linux doesn't use .exe's, but it does have executable files.

In the terminal you can type ./file to make it run.
__________________
Greg is offline  
Old 02-19-2008, 01:08 AM   #4 (permalink)
Mak213's Avatar
 

Join Date: Sep 2004

Location: C:\Windows\System32

Posts: 25,666

Mak213 is a name known to allMak213 is a name known to allMak213 is a name known to allMak213 is a name known to allMak213 is a name known to allMak213 is a name known to all

Default Re: Help with Kubuntu....

Goes to show you how much i still dont know about Linux.
__________________
R.I.P. Danny L. Trotter
14 Nov 1945 - 4 Sept 2009
Images created by CarnageX | Decaptured...Listen! | Visit Baezware!! | You've been Mak'd! | 儿做好
I do not accept support questions via EMail, PM, IM or my Spaces page! .:|:. This is what happens when an unstoppable force meets an immovable object.
Thanks to all the guys on the staff for your support in my time of need. Hefe you are my personal Hero for your contribution.



<<<< If I help you, or you just like what I said, rep me
Mak213 is offline  
Old 02-19-2008, 01:17 AM   #5 (permalink)
Disillusion's Avatar
 
\m/ Metalhead \m/

Join Date: Nov 2005

Posts: 801

Disillusion

Default Re: Help with Kubuntu....

Open a terminal and cd to the directory the "ventrilo_srv" file is located.

You might need to do
Code:
sudo chmod +x ventrilo_srv
to make the file executable.

Now do
Code:
sudo ./ventrilo_srv
and this will start the Ventrilo server in the terminal window. Now you must leave that terminal open for the vent server to continue running. I don't know if you can make Vent run as a daemon, but when I was running it, I just had to leave the terminal open.
__________________
CPU: Intel Q6600 B3 @ 3.0 GHz
Cooler: Tuniq Tower 120
Mobo: Gigabyte GA-P35-DS3L
RAM: G.Skill 4 GB DDR2 800
GPU: EVGA 8800GT Superclocked 512 MB
HDD: 2 x Seagate Barracuda 160 GB
PSU: OCZ StealthXStream 600W
Case: Cooler Master Centurion 5
Disillusion is offline  
Old 02-19-2008, 11:22 AM   #6 (permalink)
 
Super Techie

Join Date: Sep 2004

Posts: 302

eipeks is on a distinguished road

Default Re: Help with Kubuntu....

Thank you. I did get it working.

Are "sudo" and "chmod" specific linux commands?

Is there someplace I can read and learn most useful commands? Linux for dummies maybe?

Are these commands the same for all versions of Linux?
__________________


eipeks is offline  
Old 02-19-2008, 02:15 PM   #7 (permalink)
 
Master Techie

Join Date: Apr 2004

Posts: 2,534

horndude is on a distinguished road

Default Re: Help with Kubuntu....

Quote:
Originally Posted by eipeks View Post
Thank you. I did get it working.

Are "sudo" and "chmod" specific linux commands?

Is there someplace I can read and learn most useful commands? Linux for dummies maybe?

Are these commands the same for all versions of Linux?
sudo - super user do, executes a command as though root issued the command
chmod - change mode, changes read and write and executable permissions on a file

they aren't linux specific, they are UNIX or POSIX specific, any POSIX compliant system will use those commands

linux does not use the suffix like ".exe" at all, it does not care what the suffix is to determine what kind of a file it is although most GUI's in linux are set up to send the most often used file types based on suffix to the appropriate app to run them or work on them

linux commands ---> Linux Command Directory: Index

keep in mind some commands are shell specific or even system specific

you can also use the "man" pages which is short for manual page which will give you details about a particular command, its built in documentation found on most linux systems, although some distros like ubuntu use abbreviated man pages to save space

to use them simply open a terminal and type man <command> , for example if you wanted to know about chmod just typing man chmod will give you a listing all about chmod and its options

your also going to need to learn abut whatever shell you use, typically its BASH or the "bourne again shell" , a quick list of its commands can be found just by typing either help or a ? then hitting return

the various shells available like BASH are also scripting languages which allow you to write all sorts of applications, its like DOS only with much much more power

Last edited by horndude; 02-19-2008 at 02:18 PM.
horndude is offline  
Old 02-20-2008, 12:57 PM   #8 (permalink)
Nitestick's Avatar
 

Join Date: May 2005

Location: Locked in a dungeon, Perth

Posts: 8,034

Nitestick will become famous soon enoughNitestick will become famous soon enough

Default Re: Help with Kubuntu....

Quote:
and this will start the Ventrilo server in the terminal window. Now you must leave that terminal open for the vent server to continue running. I don't know if you can make Vent run as a daemon, but when I was running it, I just had to leave the terminal open.
you can press alt+f2 which will bring up a run command box (i think this is a GNOME shortcut but surely there are other ways in other WMs) and enter the command there. you can also execute it via scripts to run in the background. try ./ventrilo --help and it may report an option for starting as a daemon.
__________________
Get FireFox
Saxon's Blog|Saxon's Forum - CHECK IT OUT!
Fold for tech forums. MY COMPUTER HELPS CURE CANCER!
"Sniffing Powdered Ubuntu CDs Cures Cancer!" - TuxMachines.org

/Q6600@3.0GHz/4GB Kingston DDR2-800/Gigabyte P35-DS3R/Asus HD4850 512MB|Antec TPII 480w1.50TB of Caviar goodnessWinFast DTV-1000TTT Soprano
If I or anyone else have given you good/bad advice, use the scales icon below their name to adjust their reputation accordingly
I'm sorry but I do not accept support requests via IM, email, or personal messages
You can contact me for Forum related issues via PM only.

Quote:
Originally Posted by veedubfreak View Post
MTv happened. That and parents cant beat their children for being drooling leeches on society anymore.
Nitestick is offline  
 
Closed Thread

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Distro Similar to (K)Ubuntu? trekkie00 Linux, BSD, other *nixes & Open Source Software 9 12-24-2007 01:04 PM
Install KDE on an Ubuntu (Gnome) system with Kubuntu CD? CalcProgrammer1 Linux, BSD, other *nixes & Open Source Software 1 11-23-2007 05:53 PM
Want to make the move to Linux for good...advice? BoysNightOut Linux, BSD, other *nixes & Open Source Software 25 05-16-2007 11:40 AM
linux, package help, kubuntu 7.04 alextrzaska Linux, BSD, other *nixes & Open Source Software 2 05-07-2007 08:40 AM