LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Home Forums Tutorials Articles Register
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 05-09-2005, 07:48 PM   #1
hlpboplz
Member
 
Registered: May 2005
Location: West Central Alabama
Distribution: Fedora Core 4
Posts: 34

Rep: Reputation: 15
Start VNC at boot time


Where do I edit and what do I put in there to make VNC run at boot time? I'm behind a firewall and not concerned with security.
 
Old 05-09-2005, 09:52 PM   #2
JimBass
Senior Member
 
Registered: Oct 2003
Location: New York City
Distribution: Debian Sid 2.6.32
Posts: 2,100

Rep: Reputation: 49
You have a few possibilities. It would help very much to know what distro you are using. If it is something from Fedora/Redhat, you can use the sysconfig command as root, and set VNC to be started at boot. If you are on something else, it is just a question of a startup script. I think VNC has plenty of startup scripts that come with it, so you have to find one that works with your distro. I would also suggest using SSH, as it is usually running by default. If you need graphics then use VNC, but if you just need the box to run and have access, SSH is your friend.

Peace,
JimBass
 
Old 05-10-2005, 05:09 AM   #3
hlpboplz
Member
 
Registered: May 2005
Location: West Central Alabama
Distribution: Fedora Core 4
Posts: 34

Original Poster
Rep: Reputation: 15
I am using Fedora Core 3. I will try you sysconfig suggestion and see what happens. Thanks :-)
 
Old 05-10-2005, 05:13 AM   #4
hlpboplz
Member
 
Registered: May 2005
Location: West Central Alabama
Distribution: Fedora Core 4
Posts: 34

Original Poster
Rep: Reputation: 15
Quote:
Originally posted by JimBass
You have a few possibilities. It would help very much to know what distro you are using. If it is something from Fedora/Redhat, you can use the sysconfig command as root, and set VNC to be started at boot. If you are on something else, it is just a question of a startup script. I think VNC has plenty of startup scripts that come with it, so you have to find one that works with your distro. I would also suggest using SSH, as it is usually running by default. If you need graphics then use VNC, but if you just need the box to run and have access, SSH is your friend.

Peace,
JimBass
As root at a shell prompt when I run sysconfig it says "bash: sysconfig: command not found"
Any ideas??? I would really like the graphics.
 
Old 05-10-2005, 08:21 AM   #5
JimBass
Senior Member
 
Registered: Oct 2003
Location: New York City
Distribution: Debian Sid 2.6.32
Posts: 2,100

Rep: Reputation: 49
Sorry, it should be chkconfig instead of sysconfig. It has been a while since I was heavily into FC releases. In any case, regular su to root isn't enough, you need to do a
Code:
su -
and give the root password, then chkconfig will work. Just do
Code:
chkconfig --list
and you'll see all the known services, and the runlevels they start in. If vncserver isn't in there, you add it and set its runlevels, then it will work from boot. To see how to add it, and what everything means, you should do man chkconfig.

Peace,
JimBass
 
Old 05-10-2005, 06:31 PM   #6
hlpboplz
Member
 
Registered: May 2005
Location: West Central Alabama
Distribution: Fedora Core 4
Posts: 34

Original Poster
Rep: Reputation: 15
Thanks for the quick reply. I used chkconfig as suggested and changed the runlevels for vncserver. After reboot I still had to telnet into the box and issue command vncserver which started it and I was able to vnc into it. Is there somewhere else I need to edit something so that all i have to do is start vnc and get right in without telnet session first???
Again thanks for helping me.
 
Old 05-10-2005, 06:49 PM   #7
JimBass
Senior Member
 
Registered: Oct 2003
Location: New York City
Distribution: Debian Sid 2.6.32
Posts: 2,100

Rep: Reputation: 49
If vncserver is in your chkconfig list, and it isn't starting, there are 2 places to look. First check that it is actually set to on. Also, if your box boots into Xwindows, you probably use runlevel 5 when you boot up. I am not on a Red Hat box that I can check, but I think the command to get it to start would be like
Code:
chkconfig --add vncserver 345 on
Again, I'm not sure of the syntax of that command, but it should be very close to that. You can also search here and at real vnc, tight vnc, and google, as this is a common problem that has been posted many times.

Peace,
JimBass
 
Old 05-10-2005, 07:10 PM   #8
hlpboplz
Member
 
Registered: May 2005
Location: West Central Alabama
Distribution: Fedora Core 4
Posts: 34

Original Poster
Rep: Reputation: 15
That is the command I issued. Still no joy:-(
Do I need to add something to the rc.local or somewhere else?
 
Old 05-10-2005, 07:46 PM   #9
hlpboplz
Member
 
Registered: May 2005
Location: West Central Alabama
Distribution: Fedora Core 4
Posts: 34

Original Poster
Rep: Reputation: 15
I found where I needed to edit. /etc/sysconfg/vncservers
there is a line that tells it to start which user and what display to come up on. You were on the right track pointing me to sysconfig, just a different way to get there.
Again thanks for you help and patience. I am a true newbie eventhough I have been playing with fedora for about a year. Still so much to learn, so little time to play.
BTW I just rebooted to test and it works. THANKS!!!!!
 
Old 05-10-2005, 08:04 PM   #10
JimBass
Senior Member
 
Registered: Oct 2003
Location: New York City
Distribution: Debian Sid 2.6.32
Posts: 2,100

Rep: Reputation: 49
Good job then!

For future reference, just doing the chkconfig <service name> <runlevels> on should work, I never had to manually edit the /etc/chkconfig/,,,,,, files, but in the case of VNC, that makes some sense. Linux (being super permissions conscious) wouldn't know how to start VNC if nobody is logged in. I'm glad you learning how to fix it on your own, that makes it seem very likely that you'll be able to accomplish everything you need on linux. Before too long you won't even need VNC, because you'll be able to do everything from the command line!

You're welcome for my efforts, it is the least I could do for all the people that helped me when I ask a question!

Peace,
JimBass
 
Old 05-10-2005, 08:48 PM   #11
hlpboplz
Member
 
Registered: May 2005
Location: West Central Alabama
Distribution: Fedora Core 4
Posts: 34

Original Poster
Rep: Reputation: 15
I have been using redhat 7.1 at work for a little over two years, using mostly the command line. Mostly writing bash scripts to acomplish certain tasks. Most of what I know I got from google. Your suggestions pointed me in the right direction to know what to search for. Having a linux box at home to play with has helped me at work a great deal. If I blow it up and have to reinstall so what. I can't do that on the production server at work.
 
Old 05-10-2005, 10:55 PM   #12
JimBass
Senior Member
 
Registered: Oct 2003
Location: New York City
Distribution: Debian Sid 2.6.32
Posts: 2,100

Rep: Reputation: 49
The GUI is great, but it also allows you to do things that you don't understand. Having only the command line, you will usually have a better idea of what is going on. Plus with good CLI skills, you can go from any *nix box to another, and still accomplish things. If you depend on the GUI, and you know KDE well and are dumped on a Gnome box, you have small issues to begin with. Obviously the CLI isn't perfectly transferrable between distros - I didn't remember chkconfig, and I couldn't check it from my debian box that I was on when I first replied. But still, CLI transferrs nicely, and you can use CLI skills all over. I am one of the sysadmins for about 12 *nix servers at work, and not a single one of them have X windows installed. Seeing how much resources X can eat up, I would think the majority of production servers in the world don't use it, just for that reason.

By the way, if you have any control over that box at work, you may want to upgrade it, particularly if it is on the public net. Dump "kernel exploit redhat 7.1" into google, and you'll find plenty of hacks in various states of existance. If it is just a local server than you don't have to sweat it, but if it is on the net, look out!

Peace,
JimBass
 
Old 05-11-2005, 03:48 AM   #13
hlpboplz
Member
 
Registered: May 2005
Location: West Central Alabama
Distribution: Fedora Core 4
Posts: 34

Original Poster
Rep: Reputation: 15
I don't have that much control. LOL It is for our inventory/sales software only. It is behind a good hardware firewall, with nothing on it avaliable to the public. Thanks for the tip though.
 
Old 05-25-2005, 03:55 PM   #14
woranl
Member
 
Registered: Apr 2003
Location: Toronto
Distribution: Fedora Core
Posts: 119

Rep: Reputation: 15
Use can edit your rc.local file


Read this
http://www.linuxquestions.org/questi...hreadid=211268
 
  


Reply



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
How To Start WebSphere at Boot Up Time bpellet314 Linux - Newbie 3 08-30-2005 10:09 AM
Start Apache at boot-time alexthedon Linux - Networking 1 06-26-2005 03:59 PM
How do I get VNC to start at boot on Slackware? neocookie Linux - Software 1 09-23-2004 10:05 AM
Start a program at boot time cppkid Programming 3 08-31-2004 09:33 AM
Start VNC at boot VBAHole22 Linux - Networking 3 06-14-2004 04:09 AM

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

All times are GMT -5. The time now is 11:03 AM.

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