You are not logged in.
Pages: 1
This is my first time using linux, except a few experiment with fedora, so I have no idea how to use the command line very well. I've been trying to get the network setup, but I keep accidentally starting endless pings when I forget to set the number of pings to complete. Is there any way to quit ping?
Another question I have is, how do you reload the network interface without rebooting?
Thanks for the help, I'll probably have plenty more stupid questions to come
-Connor McKay
"He is no fool who gives what he cannot keep to gain what he cannot lose" - Jim Elliot
Offline
This is my first time using linux, except a few experiment with fedora, so I have no idea how to use the command line very well. I've been trying to get the network setup, but I keep accidentally starting endless pings when I forget to set the number of pings to complete. Is there any way to quit ping?
Ctrl-C will stop any program started from the command line.
Another question I have is, how do you reload the network interface without rebooting?
As root user, do:
/etc/rc.d/network restart
and Welcome to Arch!
Offline
Also, you can do
ping -c 4 www.google.com
that will ping google 4 times
Offline
don't forget to look in the wiki, there's tons of docs that will fix most of your problems,
arch + gentoo + initng + python = enlisy
Offline
Thanks, now I won't get stuck in ping anymore
I've looked in the wiki a bunch, but I couldn't find anything about these problems
I guess you can use the restart command on any of those interfaces listed under rc.d?
-Connor McKay
"He is no fool who gives what he cannot keep to gain what he cannot lose" - Jim Elliot
Offline
One other question. How do I get the command line to display full screen?
-Connor McKay
"He is no fool who gives what he cannot keep to gain what he cannot lose" - Jim Elliot
Offline
I guess you can use the restart command on any of those interfaces listed under rc.d?
Yes, the /etc/rc.d/ scripts are arch specific... they are just scripts so you can open them in an text editor if you'd like to view them.
They usually accept "start", "stop", and "restart".
One other question. How do I get the command line to display full screen?
When you're in X (I'm assuming you are) you can just maximize the terminal you're using. If you want to switch back to your virtual terminals (like the one you see on boot), you can use Ctrl+Alt+F1 - Ctrl+Alt+F6 (Ctrl+Alt+F7 is your X server, so you can switch back to it).
Offline
No, I haven't installed X yet...
Its the normal text-only command line that doesn't display full screen.
-Connor McKay
"He is no fool who gives what he cannot keep to gain what he cannot lose" - Jim Elliot
Offline
No, I haven't installed X yet...
Its the normal text-only command line that doesn't display full screen.
Hmmm... do you have a camera to take a picture? You're saying your virtual terminal does not take up the entire monitor? That's odd - what kind of monitor/video card do you have?
Offline
Well, its a toshiba laptop (satelite pro 6000) with a trident video card.
I read on another site something about increasing the framebuffer size. How do you do that?
http://freeunix.dyndns.org:8088/site2/h … 6000.shtml
-Connor McKay
"He is no fool who gives what he cannot keep to gain what he cannot lose" - Jim Elliot
Offline
General information, including boot parameters, about the tridentfb driver can be found here:
less /usr/src/INSERT_YOUR_KERNEL_VERSION_HERE/Documentation/fb/tridentfb.txt
Offline
Pages: 1