LinuxQuestions.org
Visit Jeremy's Blog.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This 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


Reply
  Search this Thread
Old 11-06-2009, 10:46 PM   #1
bluefuzzball
LQ Newbie
 
Registered: Nov 2009
Posts: 7

Rep: Reputation: 0
need alot of help


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.
 
Old 11-07-2009, 02:37 AM   #2
ronlau9
Senior Member
 
Registered: Dec 2007
Location: In front of my LINUX OR MAC BOX
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: Reputation: Disabled
Quote:
Originally Posted by bluefuzzball View Post
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
 
Old 11-07-2009, 06:22 AM   #3
knudfl
LQ 5k Club
 
Registered: Jan 2008
Location: Copenhagen DK
Distribution: PCLinuxOS2023 CentOS7.9 + 50+ other Linux OS, for test only.
Posts: 17,486

Rep: Reputation: 3635Reputation: 3635Reputation: 3635Reputation: 3635Reputation: 3635Reputation: 3635Reputation: 3635Reputation: 3635Reputation: 3635Reputation: 3635Reputation: 3635
Install instructions :
http://ubuntu-art.org/content/show.p...43b7452f6c9bfd

You will probably have to rename
/home/bluefuzzball/Desktop/Azenis Orange Icons
.. to ..
/home/bluefuzzball/Desktop/Azenis-Orange
 
Old 11-07-2009, 06:46 AM   #4
tommcd
Senior Member
 
Registered: Jun 2006
Location: Philadelphia PA USA
Distribution: Lubuntu, Slackware
Posts: 2,230

Rep: Reputation: 292Reputation: 292Reputation: 292
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/

And welcome to the LQ forums!

Last edited by tommcd; 11-08-2009 at 08:38 AM.
 
Old 11-07-2009, 10:58 AM   #5
bluefuzzball
LQ Newbie
 
Registered: Nov 2009
Posts: 7

Original Poster
Rep: Reputation: 0
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.

so what do i type as the execute command?
 
Old 11-07-2009, 11:04 AM   #6
bluefuzzball
LQ Newbie
 
Registered: Nov 2009
Posts: 7

Original Poster
Rep: Reputation: 0
here some screenshots
Attached Thumbnails
Click image for larger version

Name:	Screenshot.jpg
Views:	20
Size:	66.2 KB
ID:	1897   Click image for larger version

Name:	Screenshot-1.jpg
Views:	22
Size:	72.2 KB
ID:	1898  
 
Old 11-08-2009, 08:58 AM   #7
tommcd
Senior Member
 
Registered: Jun 2006
Location: Philadelphia PA USA
Distribution: Lubuntu, Slackware
Posts: 2,230

Rep: Reputation: 292Reputation: 292Reputation: 292
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.

Last edited by tommcd; 11-08-2009 at 09:08 AM.
 
Old 11-08-2009, 04:59 PM   #8
bluefuzzball
LQ Newbie
 
Registered: Nov 2009
Posts: 7

Original Poster
Rep: Reputation: 0
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)
 
Old 11-09-2009, 02:33 AM   #9
knudfl
LQ 5k Club
 
Registered: Jan 2008
Location: Copenhagen DK
Distribution: PCLinuxOS2023 CentOS7.9 + 50+ other Linux OS, for test only.
Posts: 17,486

Rep: Reputation: 3635Reputation: 3635Reputation: 3635Reputation: 3635Reputation: 3635Reputation: 3635Reputation: 3635Reputation: 3635Reputation: 3635Reputation: 3635Reputation: 3635
*
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 '.
.....

Last edited by knudfl; 11-09-2009 at 02:40 AM.
 
Old 11-10-2009, 05:11 AM   #10
tommcd
Senior Member
 
Registered: Jun 2006
Location: Philadelphia PA USA
Distribution: Lubuntu, Slackware
Posts: 2,230

Rep: Reputation: 292Reputation: 292Reputation: 292
Quote:
Originally Posted by bluefuzzball View Post
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.

Last edited by tommcd; 11-10-2009 at 06:02 AM.
 
Old 11-12-2009, 03:03 PM   #11
bluefuzzball
LQ Newbie
 
Registered: Nov 2009
Posts: 7

Original Poster
Rep: Reputation: 0
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?
 
Old 11-13-2009, 04:37 AM   #12
tommcd
Senior Member
 
Registered: Jun 2006
Location: Philadelphia PA USA
Distribution: Lubuntu, Slackware
Posts: 2,230

Rep: Reputation: 292Reputation: 292Reputation: 292
Quote:
Originally Posted by bluefuzzball View Post
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 View Post
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 View Post
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:
Code:
sh file_name.sh

Last edited by tommcd; 11-13-2009 at 04:41 AM.
 
Old 11-15-2009, 04:31 PM   #13
bluefuzzball
LQ Newbie
 
Registered: Nov 2009
Posts: 7

Original Poster
Rep: Reputation: 0
alright now i am starting to see how to run stuff, i appreciate the help i've gotten so far.

now what does "sudo" do other than ask for a password?

what is "apt-get" for?
 
Old 11-15-2009, 07:56 PM   #14
smeezekitty
Senior Member
 
Registered: Sep 2009
Location: Washington U.S.
Distribution: M$ Windows / Debian / Ubuntu / DSL / many others
Posts: 2,339

Rep: Reputation: 231Reputation: 231Reputation: 231
Quote:
Originally Posted by bluefuzzball View Post
alright now i am starting to see how to run stuff, i appreciate the help i've gotten so far.

now what does "sudo" do other than ask for a password?

what is "apt-get" for?
apt-get is a package management system that will happily screw your system up to meet dependices, use with care.
for example
Code:
apt-get install dosbox
should install a dos emulator
 
Old 11-15-2009, 08:18 PM   #15
evo2
LQ Guru
 
Registered: Jan 2009
Location: Japan
Distribution: Mostly Debian and CentOS
Posts: 6,695

Rep: Reputation: 1698Reputation: 1698Reputation: 1698Reputation: 1698Reputation: 1698Reputation: 1698Reputation: 1698Reputation: 1698Reputation: 1698Reputation: 1698Reputation: 1698
Quote:
Originally Posted by bluefuzzball View Post
now what does "sudo" do other than ask for a password?
It temporarily gives you "root" or "super user" or in windows speak "Administrator" powers.
Quote:
what is "apt-get" for?
It is a front end to the "Advanced Package Tool" (apt) system, that allows you to install and upgrade software packages.

See the following howto for a gentle introduction: http://www.debian.org/doc/manuals/apt-howto/

Cheers,

Evo2.

Last edited by evo2; 11-15-2009 at 09:12 PM. Reason: Typos
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

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 Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Need alot of help Reece Linux - Newbie 5 01-11-2009 08:02 PM
NDISWRAPPER and alot more DaveyB Debian 6 09-29-2006 08:35 PM
X freezes quite alot sirgigantor Slackware 5 12-15-2003 06:52 PM
I got alot to do and Ask. Edo Linux - Newbie 1 11-02-2002 09:14 AM
Thanks ALOT!!!! Ruckuss Linux - Networking 0 01-06-2002 12:26 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 06:43 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration