You are not logged in.

#1 2012-09-28 23:12:35

71GA
Member
From: Slovenia
Registered: 2012-09-15
Posts: 282

[SOLVED] Terminator icon

Hello!

I installed terminator teminal, swapped terminator.png and would like to edit terminator.py
which was supposed to be at destination (take a look at this thread):

/usr/share/pyshared/terminatorlib/terminator.py

Well i don't have this in my arch linux so i want to know where can i find terminator.py ???

Last edited by 71GA (2012-09-30 22:54:33)


C, ARM, ARM assembly, HTML, CSS, JS, Linux

Offline

#2 2012-09-28 23:22:23

2ManyDogs
Forum Moderator
Registered: 2012-01-15
Posts: 4,645

Re: [SOLVED] Terminator icon

Learn how to use the locate or find commands.

Last edited by 2ManyDogs (2012-09-28 23:23:47)


How to post. A sincere effort to use modest and proper language and grammar is a sign of respect toward the community.

Offline

#3 2012-09-28 23:22:52

piratebill
Member
From: Sol System
Registered: 2011-10-20
Posts: 133

Re: [SOLVED] Terminator icon

install mlocate
run updatedb
type 'locate terminator.py'

good luck smile

Offline

#4 2012-09-28 23:28:14

71GA
Member
From: Slovenia
Registered: 2012-09-15
Posts: 282

Re: [SOLVED] Terminator icon

find: `terminator.py': No such file or directory

Could you now please anwser my question?


C, ARM, ARM assembly, HTML, CSS, JS, Linux

Offline

#5 2012-09-28 23:52:34

ewaller
Administrator
From: Pasadena, CA
Registered: 2009-07-13
Posts: 19,739

Re: [SOLVED] Terminator icon

Could you now please anwser my question?

Asked, and answered.
closing.

Edit: After you run the locate command, if there are still issues and you have further question, contact a moderator and we will reopen the thread

Last edited by ewaller (2012-09-28 23:54:36)


Nothing is too wonderful to be true, if it be consistent with the laws of nature -- Michael Faraday
Sometimes it is the people no one can imagine anything of who do the things no one can imagine. -- Alan Turing
---
How to Ask Questions the Smart Way

Offline

#6 2012-09-30 16:13:27

ewaller
Administrator
From: Pasadena, CA
Registered: 2009-07-13
Posts: 19,739

Re: [SOLVED] Terminator icon

Moderator:  Reopened thread on request of the OP


Nothing is too wonderful to be true, if it be consistent with the laws of nature -- Michael Faraday
Sometimes it is the people no one can imagine anything of who do the things no one can imagine. -- Alan Turing
---
How to Ask Questions the Smart Way

Offline

#7 2012-09-30 16:18:48

Trilby
Inspector Parrot
Registered: 2011-11-29
Posts: 29,441
Website

Re: [SOLVED] Terminator icon

$ pacman -Ql terminator | grep terminator.py
terminator /usr/lib/python2.7/site-packages/terminatorlib/terminator.py
terminator /usr/lib/python2.7/site-packages/terminatorlib/terminator.pyc

Last edited by Trilby (2012-09-30 16:19:42)


"UNIX is simple and coherent..." - Dennis Ritchie, "GNU's Not UNIX" -  Richard Stallman

Offline

#8 2012-09-30 16:25:21

2ManyDogs
Forum Moderator
Registered: 2012-01-15
Posts: 4,645

Re: [SOLVED] Terminator icon

Learn how to use the locate or find commands.

$ locate terminator.py
/usr/lib/python2.7/site-packages/terminatorlib/terminator.py
/usr/lib/python2.7/site-packages/terminatorlib/terminator.pyc
$ find / -name terminator.py
/usr/lib/python2.7/site-packages/terminatorlib/terminator.py

Last edited by 2ManyDogs (2012-09-30 16:30:38)


How to post. A sincere effort to use modest and proper language and grammar is a sign of respect toward the community.

Offline

#9 2012-09-30 16:44:44

71GA
Member
From: Slovenia
Registered: 2012-09-15
Posts: 282

Re: [SOLVED] Terminator icon

2ManyDogs wrote:

Learn how to use the locate or find commands.

$ locate terminator.py
/usr/lib/python2.7/site-packages/terminatorlib/terminator.py
/usr/lib/python2.7/site-packages/terminatorlib/terminator.pyc
$ find / -name terminator.py
/usr/lib/python2.7/site-packages/terminatorlib/terminator.py

I know that, but it doesnt find it.


C, ARM, ARM assembly, HTML, CSS, JS, Linux

Offline

#10 2012-09-30 16:53:50

ewaller
Administrator
From: Pasadena, CA
Registered: 2009-07-13
Posts: 19,739

Re: [SOLVED] Terminator icon

Okay, how about Trilby's request.  What does pacman -Ql terminator have to say?


Nothing is too wonderful to be true, if it be consistent with the laws of nature -- Michael Faraday
Sometimes it is the people no one can imagine anything of who do the things no one can imagine. -- Alan Turing
---
How to Ask Questions the Smart Way

Offline

#11 2012-09-30 20:11:59

71GA
Member
From: Slovenia
Registered: 2012-09-15
Posts: 282

Re: [SOLVED] Terminator icon

ewaller wrote:

Okay, how about Trilby's request.  What does pacman -Ql terminator have to say?

Currently i can't try that as my Arch crashed totaly and i am fixing it smile. You can check my other post. When i fix it i will try this .


C, ARM, ARM assembly, HTML, CSS, JS, Linux

Offline

#12 2012-09-30 22:54:19

71GA
Member
From: Slovenia
Registered: 2012-09-15
Posts: 282

Re: [SOLVED] Terminator icon

Trilby wrote:
$ pacman -Ql terminator | grep terminator.py
terminator /usr/lib/python2.7/site-packages/terminatorlib/terminator.py
terminator /usr/lib/python2.7/site-packages/terminatorlib/terminator.pyc

This did the trick, thank you.


C, ARM, ARM assembly, HTML, CSS, JS, Linux

Offline

#13 2012-09-30 23:15:16

2ManyDogs
Forum Moderator
Registered: 2012-01-15
Posts: 4,645

Re: [SOLVED] Terminator icon

^ As far as I know, there is no reason why this should work when locate or find does not. Can someone please explain this to me ?

Last edited by 2ManyDogs (2012-09-30 23:17:21)


How to post. A sincere effort to use modest and proper language and grammar is a sign of respect toward the community.

Offline

#14 2012-09-30 23:26:01

jasonwryan
Anarchist
From: .nz
Registered: 2009-05-09
Posts: 30,424
Website

Re: [SOLVED] Terminator icon

2ManyDogs wrote:

^ As far as I know, there is no reason why this should work when locate or find does not. Can someone please explain this to me ?

PEBKAC. tongue


Arch + dwm   •   Mercurial repos  •   Surfraw

Registered Linux User #482438

Offline

#15 2012-09-30 23:30:25

Trilby
Inspector Parrot
Registered: 2011-11-29
Posts: 29,441
Website

Re: [SOLVED] Terminator icon

If that's genuine curiosity, I suspect locate had not been properly set up and/or allowed to index the directory tree while find was not likely passed the root directory and only searched locally.  Or in other words: PEBKAC.

I gave the full syntax of the command, essentially "giving a man a fish".  Sometimes you can try to teach them to fish, but they still just gnaw on the rod and stick the bobber up their .....

Last edited by Trilby (2012-09-30 23:31:50)


"UNIX is simple and coherent..." - Dennis Ritchie, "GNU's Not UNIX" -  Richard Stallman

Offline

#16 2012-10-01 01:06:31

2ManyDogs
Forum Moderator
Registered: 2012-01-15
Posts: 4,645

Re: [SOLVED] Terminator icon

Thank you Trilby. It was genuine curiosity; I wondered if there was something I missed. Piratebill gave the op full instructions for using locate in post #3, and I gave the full syntax for find in my post #9. I just could not imagine how that did not work while pacman -Ql did. I suspected locate had not been updated or that find had not used correctly. This particular op has been trying to learn to fish for several days, and some of us have grown a little tired of trying to teach him. Perhaps it would be best if I just don't respond in the future.


How to post. A sincere effort to use modest and proper language and grammar is a sign of respect toward the community.

Offline

#17 2012-10-01 01:11:13

Trilby
Inspector Parrot
Registered: 2011-11-29
Posts: 29,441
Website

Re: [SOLVED] Terminator icon

Or just learn to make horrible jokes ... it works for me.


"UNIX is simple and coherent..." - Dennis Ritchie, "GNU's Not UNIX" -  Richard Stallman

Offline

Board footer

Powered by FluxBB