Ubuntu :: Where Are Programs Download With Apt-get In Terminal

Sep 1, 2011

I have just installed qBittorrent with terminal with apt-get but I do not know where I can find it besides the Launcher and the panel on the top of the screen.

View 9 Replies


ADVERTISEMENT

General :: Run Programs From System Terminal Without Blocking Terminal?

Jun 19, 2010

Right now when I start a program from a terminal I can't use that terminal instance again until I close the program.

I am a new user of linux, and I want to know if there is a way to execute a program/application from a terminal without blocking the terminal until the program ends.

View 3 Replies View Related

Ubuntu :: Torrent Programs Download Ignored Files?

Jan 29, 2010

I couldn't find an answer myself. So, the problem is that every single bittorrent program I tried downloads files I checked to ignore so I know this is not a program related issue. For example, there are 2 pictures in a torrent, I select only one but in the end I have both downloaded.

View 9 Replies View Related

Ubuntu :: Download / Upload Programs With A Jump Drive?

Nov 18, 2010

This may be impossibly easy or easily impossible, but I'm looking for a step by step guide to download an entire program onto a jump drive, then to drop that program onto another computer.

View 2 Replies View Related

Ubuntu :: Run GUI Programs From Terminal Correctly?

Aug 3, 2010

I can't figure this out. If i run GUI program (in GNOME) from terminal. It doesn't works the same as if i run it from menus (or shortcut on desktop or panel). Or some times I run it from Alt+F2 method.

What is the difference in this methods?

For example what is the difference if i put this...

metacity --replace

...in terminal or in ALT+F2 dialog window. If I put it in terminal. GNOME doesn't work correctly. If i put it in Alt+F2 dialog window. It works as it should. With no problems.

And what is the difference if i like to run for example FireFox or gnome-control-center from terminal or select it from menus.

If i like to run from terminal. What would be right way to do it?

Because sometimes i get errors in terminal (but GUI works) sometimes after i close terminal GUI program closes to. Sometimes it doesn't. But if i run that program from menus (icons) there is no such problem. It just works. If i put & at the end of program. I can work in terminal. But still all of the above is still true.

View 3 Replies View Related

Fedora :: Where To Download Compatible Maintenance Programs

Feb 28, 2011

Are there any maintenance programs I should download and run on Fedora ? Example ccleaner and defraggler for windows?

View 11 Replies View Related

OpenSUSE Install :: Download Programs Off The Internet?

Feb 11, 2011

start out with I don't know much about computers and I'm using my brothers computer that has Opensuse. I am unable to ask him how to do this but I am trying to download programs off the internet.

I click download and software "CrossOver Installer" comes up and it says "Select an application to install." What do I pick?

View 8 Replies View Related

Security :: Can't Download Programs Such As Avast And Spybot?

Feb 10, 2010

I heard Linux's security is actually worse than Windows. What could I do to make it more secure? I can't download programs such as Avast and Spybot, right?

View 6 Replies View Related

Ubuntu :: Removing Start Up Programs In Terminal?

Mar 11, 2010

I recently learned how to add start up programs in the terminal using the following command:

Code:
ln /usr/bin/whateverprogram ~/.kde/Autostart

This worked, but now I want to remove some start up programs using the command line. Can someone point me in the right direction to what I need to do for this?

I'm assuming that default start up programs are not links in the ~/.kde/Autostart folder because when I run:

Code:
ls -a ~/.kde/Autostart
I only find the files that I have set to start up.

View 3 Replies View Related

Ubuntu :: Auto Start Programs In Terminal?

Sep 18, 2010

I am setting up a streaming audio server. I would like to have Darkice and sc_serv (Shoutcast server) start automagically on boot.

I have set Xubuntu (10.04) to auto login

Both Darkice and sc_serv are command line apps and I would like them to each run in their own terminal window so I can monitor any status messages they produce. For instance sc_serv displays connections disconnections with time connected, and current number of listeners, and I want to see that.

One important note: sc_serv must be up and running before Darkice can be started.

View 1 Replies View Related

Ubuntu :: Finding Names Of Programs To Use In Terminal?

Oct 30, 2010

I would like to know how to find out the name of programs so that I could launch them in Terminal. For example, to launch gimp, I just type

Code:gimp and it launches. Well how do I find out other names to other programs?

View 2 Replies View Related

Ubuntu :: Compiling And Running Some C++ Programs (with G++ From The Terminal)?

Jun 7, 2011

so i've just been sitting here, compiling and running some c++ programs (with g++ from the terminal), I looked away for one minute to open a file that had just been written out (opened it with gedit if that makes a difference), now my terminal says:kbuildsyscoca4 running...so I'm wondering if anyone knows what this is about?hy it suddenly started running and why it has appeared on my terminal. I'm basically just curious as I though bash shells were entirely separate virtualizations of shells, and unrepresentative of other processes. i'm also wondering what kbuildsyscoca4 is/does (i've got gnome going on and generally gnome varieties of programs). I found a post from about a year ago mentioning the same thing, though no replies.

View 1 Replies View Related

Ubuntu Installation :: Install Programs And Use Them By Using The Terminal?

Jun 25, 2011

How can i install programs using the terminal and how can i use programs by using the terminal?

View 3 Replies View Related

Ubuntu :: Terminal: Run Programs As Separate Process?

Jul 11, 2011

I want to run programs from Terminal as a separate process, so that for example gedit file

will launch gedit and return to the terminal prompt (so no need to open up another terminal).

View 8 Replies View Related

Ubuntu :: Bash For Programs Running In Terminal?

Aug 9, 2011

Trying to write a script for desktop launchers that are adaptable to screen resolution. Ideally, the program should:

1. Determine screen resolution:

if "a" use xdotool options window size 1305 x 869 px and move to 135,0
if "b" use xdotool options window size 1545 x 1019 px and move to 135,0

2. Check if program running:

if no, open program, and use "a" or "b" placement options, focus window
if yes, focus window

3. Close script and leave program open (if possible).

Problems arise when trying to use the script on programs that run from and hog the terminal
(e.g. brasero, gcalctool, nautilus)

Here the script will load the program, and nothing else (probably because it still occupies the terminal as it runs)

Code:

gcalctool && xdotool search "calculator" windowmove 135 0

This next command will cause the program to load, move, but it keeps focusing itself like xdotool is running the windowmove function constantly - it keeps focusing itself until script stopped.

Code:

gcalctool & xdotool search "calculator" windowmove 135 0

This had the same effect as the above code, but seems to work as a conditional subscript running when the process is running in the terminal - it just goes infinitely.

Code:

while [1] ; do xdotool search "calculator" windowmove 135 0 done exit

Is there some kind of "if, then" or "while, do" or some kind of conditional I can put in to the script ensure the window is moved only once if the program is running within the terminal? Is there a way to remove the program from the terminal from the script once it's been called?

View 5 Replies View Related

Ubuntu :: Running From USB Drive - Possible To Save Things - Download Programs - Drivers?

Apr 18, 2010

A few sectors on my Hard drive on my toshiba laptop are having issues, so i have to load Ubuntu (9.10 i believe) from a USB drive. Is is still possible to save things, download programs, drivers, and anything so i can still use most of ubuntu's features without everything resetting after a reboot?

View 1 Replies View Related

Ubuntu Installation :: How To Ensure That Programs / Download Files Remain Intact Following Process

Jun 2, 2011

Have used 10.04 for almost a year now, and the 'upgrade' now beckons.How can I ensure that my programs and Download files remain intact following the process? I already have 11.04 as an .iso on cd, but am unsure how to proceed.

View 3 Replies View Related

Fedora :: Can Install Programs Other Than Using The Terminal

Oct 21, 2009

How can we install programs other than using the terminal. To be honest, I liked this system and I got used to it, but the problem is someone who wants to use Fedora but has no idea on how to use the terminal, so is there any other way for installing programs?

View 8 Replies View Related

Fedora :: Installing The Programs With Terminal?

Jul 23, 2010

Installing the programs with terminal?

View 6 Replies View Related

OpenSUSE Install :: 11.3 - How To Use Terminal To Add / Remove Programs

Mar 15, 2011

I am coming from Kubuntu 10.10, which is a Debian based OS. I am used to going into the terminal and typing sudo apt-get install or sudo apt-get remove to install and remove programs. I know it is the hard way to do it, but I find it gave me more flexibility. So how do I do this in openSUSE 11.3? Or can I even install things through terminal? What is the command? I know there is YaST but I also want to learn how to use the terminal

View 8 Replies View Related

Ubuntu :: Gnome-terminal In Startup Programs Doesn't Start At Login?

Mar 16, 2010

Every time I start Ubuntu, I set up an ssh session to a server. In order to automate this I made an entry in startup programs like this:/usr/bin/gnome-terminal -e '/usr/bin/ssh name@server.com'Nothing happens when I log in, and I've checked that the command works.

View 2 Replies View Related

Fedora :: Terminal-based Programs Won't Run Because It Can't Find Libtermcap

May 30, 2010

I installed Fedora 12 on a new machine (Intel Core i3) and one of my terminal-based programs won't run because it can't find libtermcap. The specific error is

Quote:

error while loading shared libraries: libtermcap.so.2: cannot open shared object file: No such file or directory

I seem to have this problem every other time I install a new Fedora. I tried a few things with old libtermcap files from other machines, and I tried looking around the YUM repository, but nothing seemed to work.

What's the proper way to get the libtermcap libraries for a Fedora 12 machine on an iCore i3?

View 1 Replies View Related

OpenSUSE Install :: Listing Installed Programs Via Terminal?

Apr 21, 2010

I am do not know what to type in the terminal to get a list of installed programs and their versions.

View 3 Replies View Related

Ubuntu :: Process (including Boot, Shutdown, Download, Open Programs, Etc) Is Freeze Until Move The Mouse Or Hit Any Button?

Nov 26, 2010

1) Any process (including boot, shutdown, download, open programs, etc) is freeze (don't have any progress) until I move the mouse or hit any button, so for install and use my ubuntu I have to keep moving my mouse and as you imagine is VERY TIRED.2) I get some general freeze on random times, neither the mouse, keyboard or process move, I notice that if I unplug power it unfreze, and I can work for some time.This 2 problems annoy me a lot, and I suspect is a problem related to my Netbook Model, I read about someone that has the same problem but no solution there.

This is what I did:I Try Ubuntu loading from my USB memory (1GB), run very good but with the 2 problems, but I thought it can be resolved installing.I installed along side with W7, couldn't boot Ubuntu, so I configured GRUB2 and it could enter now, but if I don't press **** after selecting Ubuntu it give me the BusyBox, and then the same 2 problems.I get rid of my W7 and did a Full Install on my 160GB HDD, hoping it can work fine, but no.I install all updates and no effect on that.

View 9 Replies View Related

CentOS 5 Networking :: Unable To Get Update Or Download Any Native Programs. But Able To Access File From Samba?

Jul 4, 2010

Unable to get update or download any native programs. But able to access file from Samba

View 1 Replies View Related

Ubuntu :: Fedora Download On 9.10 From Terminal?

Apr 9, 2010

Can I download fedora? From the terminal on ubuntu 9.10?...

View 2 Replies View Related

Ubuntu :: Terminal Won't Download From Ftp Server

Jun 25, 2011

I wanna implement a GNUPG program which is a encryption program. Therefore i need to download the files. But the terminal wont download. It just show blank lines. This is what I typed in the terminal.

haloiuy(at)ubuntu:~/GNUPG/libassuan$ ftp ftp(dot)gnupg(dot)org
Connected to ftp(dot)gnupg(dot)org.
220-Welcome hacker!

[code]....

View 1 Replies View Related

Ubuntu :: Download And Install JRE Through A Terminal Window?

Apr 20, 2010

running 9.10 trying to run applications on Wine. I have a problem with my diabetes software as Bayer Glucofacts requires Java Runtime Envirionment 1.6.0_07 or higher to install.I suspect that I would need to download and install JRE through a terminal window? I have done some with YUM but cannot figure out how to yet with Ubuntu.

View 1 Replies View Related

Ubuntu :: Terminal In 9.10 Cannot Access Download Folder When Installing

Feb 17, 2010

Tried to install Compiz settings manager today.

Fresh install of Ubuntu 9.10 with all the new upgrades.

When i type in: sudo apt-get install compiz-settings-manager, I get this response.

E: Fr ikke lst /var/cache/apt/archives/lock - open (11: Resource temporarily unavailable)
E: Klarer ikke lse nedlastingsmappa
E: Can not lock /car/cache/apt/archives/lock - open (11: Re.........)
E: Can not access download file

Then it returns to the basic command line, thing.

View 2 Replies View Related

Ubuntu :: Connect To The Internet From Terminal To Download The Packages?

Mar 9, 2009

I'm trying to download android sources from the following link ,when I try to connect internet from the terminal using the Curl command it is not able to connect to the internet.

Link : [URL]
Command used : curl -a -v --max-time 50 [URL]
curl -v --max-time 50 [URL]

Error displayed :

* About to connect() to android.git.kernel.org port 80 (#0)
* Trying 130.239.17.12... Timeout
* Trying 149.20.20.141... Timeout
* Trying 199.6.1.176... Timeout

[code]....

View 1 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved