Difference between revisions of "ECE597 Questions to Answer"
From eLinux.org
(Added ELF link) |
|||
| Line 6: | Line 6: | ||
{| | {| | ||
| − | ! Question || Answer | + | ! Question || Asker/Answerer || Answer |
|- | |- | ||
| What is ELF? | | What is ELF? | ||
| + | | Mark A. Yoder/Chris Routher | ||
| [[ECE597 Executable and Linkable Format (ELF)]] | | [[ECE597 Executable and Linkable Format (ELF)]] | ||
| + | |- | ||
| + | | Where does the x11vnc get started? | ||
| + | I don't see it in the /etc/init.d folder. | ||
| + | | Mark A. Yoder/Cody Collins | ||
| + | | It looks like it is being started by X. If you look in /etc/X11/Xinit.d/ there is a file named '''02vnc''', which contains the following code: | ||
| + | |||
| + | #!/bin/sh | ||
| + | x11vnc -q -bg -display :0 -forever -avahi | ||
| + | |||
|} | |} | ||
Revision as of 13:43, 26 March 2010
I'm seeking answers for these questions.
| Question | Asker/Answerer | Answer |
|---|---|---|
| What is ELF? | Mark A. Yoder/Chris Routher | ECE597 Executable and Linkable Format (ELF) |
| Where does the x11vnc get started?
I don't see it in the /etc/init.d folder. |
Mark A. Yoder/Cody Collins | It looks like it is being started by X. If you look in /etc/X11/Xinit.d/ there is a file named 02vnc, which contains the following code:
#!/bin/sh x11vnc -q -bg -display :0 -forever -avahi |