Linux - NewbieThis Linux forum is for members that are new to Linux.
Just starting out and have a question?
If it is not in the man pages or the how-to's this is the place!
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
alright i know this will seem a bit stupi, but my windows recently crashed so i have booted ubuntu 9.10 on my laptop i have a great deal of windows experience and am great at computers, however i am still trying to figure out the file system, or which commands are for running things
e.x.
I have a theme in a folder on my desktop
/home/bluefuzzball/Desktop/Azenis Orange Icons
what is inside i am trying to run is "index.theme"
so what do i type into the terminal to make it run and install.
Distribution: Mandriva 2009 X86_64 suse 11.3 X86_64 Centos X86_64 Debian X86_64 Linux MInt 86_64 OS X
Posts: 2,369
Rep:
Quote:
Originally Posted by bluefuzzball
alright i know this will seem a bit stupi, but my windows recently crashed so i have booted ubuntu 9.10 on my laptop i have a great deal of windows experience and am great at computers, however i am still trying to figure out the file system, or which commands are for running things
e.x.
I have a theme in a folder on my desktop
/home/bluefuzzball/Desktop/Azenis Orange Icons
what is inside i am trying to run is "index.theme"
so what do i type into the terminal to make it run and install.
What do you mean exactly by a running index.theme ?
Is it a application or script or a command ?
Or is anything else
On Ubuntu themes can also be copied to the .themes directory in your home directory: /home/bluefuzzball/.themes. A shorthand for /home/your_username in linux is simply ~.
So: /home/bluefuzzball/.themes and ~/.themes are the same thing.
Icons can be copied to ~/.icons. In linux a file or directory that begins with a period "." is hidden. To see them open your home directory and select View, and check "show hidden files".
When you install themes to ~/.themes they are only available to you. If you install themes to /usr/share/themes they are available to every user on your system.
Here is a good site for getting started with Ubuntu: http://www.psychocats.net/ubuntu/
alright i can't seem to find the theme part of my ubuntu to put it in.
also /home/bluefuzzball/desktop/emulation/epsxe
what command can i use to run that, it's either an installer or the actual program, i tried run, didn't work apparently linux doesn't use run, i also tried the sudo apt-get didn't work either.
Start over.
I'm not sure what the stuff is in the screenshots you posted. Download the Azenis-Orange theme to your home directory from here: http://ubuntu-art.org/content/show.p...43b7452f6c9bfd
and untar it. To untar it open a terminal. The terminal should start in your home directory. To verify this type pwd (print working directory). It should report /home/bluefuzzball.
Then untar (i.e., extract) the contents of the file:
Code:
tar -xvzf 1141
then hit the TAB key. It should autocomplete the file name. Then hit enter. This will create a directory named Azenis-Orange.
Then, as per the instructions on the link that I posted (and that Knudfl posted before), copy the theme to the /usr/share/themes directory:
Code:
sudo cp -r Azenis-Orange /usr/share/themes
Then go to: system > preferences > appearance. (I think this is where you select the themes from. I'm not on Ubuntu right now). The Azenis-Orange theme should be listed there for you to select. This should load the theme.
bluefuzzball@bluefuzzball:~$ tar -xvzf 1141
tar: 1141: Cannot open: No such file or directory
tar: Error is not recoverable: exiting now
tar: Child returned status 2
tar: Error exit delayed from previous errors
and there wasn't any autocomplete when i hit tab
and the second screenshot is a ps1 emulator i am trying to get it to run.
despite all the problems though i am still very pleased with linux it runs much smoother tham windows, and i still can use the internet and limewire fine. (it had a graphic interface for installing)
Distribution: PCLinuxOS2023 CentOS7.9 + 50+ other Linux OS, for test only.
Posts: 17,486
Rep:
*
To run the executable epsxe
1) cd Desktop/emulator
.. or : cd /home/bluefuzball/Desktop/emulator
2) ./epsxe
.....
It is about knowing, what your present location is
( it's /home/bluefuzball/ when you first open the terminal )
... and to know which folder, you want to "change directory to" = ' cd '.
.....
bluefuzzball@bluefuzzball:~$ tar -xvzf 1141
tar: 1141: Cannot open: No such file or directory
and there wasn't any autocomplete when i hit tab
and the second screenshot is a ps1 emulator i am trying to get it to run.
Are you sure the 114181-Azenis-Orange.tar.gz file is in your home directory? If not cut and paste it to your home directory.
To verify that it is your home directory open a terminal and type:
Code:
ls ~
or
Code:
ls /home/bluefuzzball
The file should be in the list. If your terminal is not in your home directory you can change to your home directory in the terminal with:
Code:
cd ~
I suggested putting the file in your home directory because when you open a terminal it defaults to your home directory.
Instead of typing 1141 and hitting TAB you can just type the full name of the file instead of using the TAB key. The TAB autocomplete is a handy convenience feature I was trying to show you.
I just installed the Azenis Orange theme on my laptop as per the instructions I posted in my last post and it works.
Try again as per my instructions. Write back if you need more help.
ls /home/bluefuzzball
Gdk-ERROR **: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.0.
bluefuzzball@bluefuzzball:~/Desktop/emulation$ ls~
bash: ls~: command not found
bluefuzzball@bluefuzzball:~/Desktop/emulation$ ls /home/bluefuzzball
Desktop Firefox_wallpaper.png Pictures Unsaved Document 1
Documents LimeWire Public Videos
examples.desktop Music Templates
...
it says desktop in there and what i have is in a folder on my destop.
...
btw my psx emulator works now and i just want to know, When it comes to executing files all i need to do is type the directory then ./(filename) to run it?
ls /home/bluefuzzball
Gdk-ERROR **: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.0.
I don't know why that would happen. If you open a terminal and type:
Code:
ls /home/b <then hit the TAB key>
it should autocomplete /home/bluefuzzball. Then hit enter and it should list the contents of your home directory. This assumes that your username is indeed "bluefuzzball". Remember linux is case sensitive.
Quote:
Originally Posted by bluefuzzball
bash: ls~: command not found
There should be a space between the command ls and the shortcut for your home directory ~.
If you follow the directions I gave in post #7 of this thread it will work. I tested it. Start over with downloading the 114181-Azenis-Orange.tar.gz file. You can put it on your desktop if you want. Then just open a terminal and:
Code:
cd ~/Desktop
to navigate to the desktop in the terminal. Note there is a space between the command cd and the destination ~/Desktop.
Quote:
Originally Posted by bluefuzzball
btw my psx emulator works now and i just want to know, When it comes to executing files all i need to do is type the directory then ./(filename) to run it?
You run files that are executable. In the terminal you use the command cd (change directory) to navigate to the directory the file is in. Then as long as the file is executable you can run it with:
Code:
./file_name
Or if the executable ends in .sh, you can run it with:
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.