CFD Online Discussion Forums

CFD Online Discussion Forums (https://www.cfd-online.com/Forums/)
-   Lounge (https://www.cfd-online.com/Forums/lounge/)
-   -   can't open terminal in downloads folder in 12.04 (https://www.cfd-online.com/Forums/lounge/124605-cant-open-terminal-downloads-folder-12-04-a.html)

immortality October 9, 2013 05:23

can't open terminal in downloads folder in 12.04
 
there is no a selection button for opening terminal when I right click in downloads folder.why?
when I try to get access to downloads folder,its what is shown:
Code:

ehsan@Ehsan:~$ cd /
ehsan@Ehsan:/$ cd home
ehsan@Ehsan:/home$ cd downloads
bash: cd: downloads: No such file or directory
ehsan@Ehsan:/home$ cd Downloads
bash: cd: Downloads: No such file or directory


Phicau October 9, 2013 05:47

Either:
Code:

cd
cd Downloads

or (rough guess)

Code:

cd /
cd home/ehsan/Downloads

Rememeber to use tab to autocomplete and ls to see the files and folders.

immortality October 9, 2013 06:03

Hi Pablo,
why there is not terminal in the list when right click in a folder in 12.04 like 11.10 I had before?

Phicau October 9, 2013 06:10

You probably don't have it installed. It is easy to google that:

Code:

sudo apt-get install nautilus-open-terminal
nautilus -q


immortality October 9, 2013 06:30

thanks dear Pablo,it resolved,
I have installed 12.04 last night and it has some problems in installing softwares,for example pidgin doesn't install by this error:
Code:

The following packages have unmet dependencies:

pidgin: Depends: libxss1 but it is not going to be installed
        Depends: perlapi-5.14.2 but it is a virtual package

how can install dependencies and introduce repositories to Ubuntu?is there a list of suitable repositories?

wyldckat October 19, 2013 15:15

Greetings to all!

OK, I finally figured out what on Earth is going on. The file "/etc/apt/sources.list" has got the following default content:
Code:

# /etc/apt/sources.list

deb http://archive.ubuntu.com/ubuntu/ precise main restricted
deb http://security.ubuntu.com/ubuntu/ precise-security main restricted
deb http://archive.ubuntu.com/ubuntu/ precise-updates main restricted

But this only provides a very limited list of packages.

To get access to all of the ones available to Ubuntu, append to each line "universe multiverse":
Code:

# /etc/apt/sources.list

deb http://archive.ubuntu.com/ubuntu/ precise main restricted universe multiverse
deb http://security.ubuntu.com/ubuntu/ precise-security main restricted universe multiverse
deb http://archive.ubuntu.com/ubuntu/ precise-updates main restricted universe multiverse

Then run:
Code:

sudo apt-get update
And you're good to go!

Best regards,
Bruno

edit: I've added these instructions to the FAQ at openfoamwiki.net: http://openfoamwiki.net/index.php/FA..._on_Ubuntu_.3F


All times are GMT -4. The time now is 00:19.