Articles by admin

  • A Note From The Editors: Anonymous Comments

    Author: adminTags: Comments: 5

    A Note From The Editors: Anonymous Comments You might have noticed that up to now, you could comment on a tutorial only as a registered user. We handled it that way to prevent spam. In order to drive a more lively discussion about our articles, we have decided to open the comment function to anyone, regardless if you're a registered user or not. Please note that we will take the time to approve each and every comment to fight spam, so your comments might not go live immediately.    We'd be excited to see loads of comments from anyone to make annotations, report bugs in the tutorials (yes, we are human and make errors), present better solutions, etc. If you have questions or need help, please use our forum instead as it's easier to help people there due to formatting options, etc. We reserve the right to not publish help requests in the comments. And now: Comments, anyone?

  • PDF Whitepapers By Novell

    Author: adminTags: Comments: 0

    Why to Choose SUSE Linux Enterprise Desktop Over Windows Vista You shouldn't have to spend a fortune in upgrade and licensing costs in order to get a secure and reliable desktop. Take a look at SUSE Linux Enterprise Desktop as it is designed for general business use and is a comprehensive solution including both an operating system and an integrated suite of applications. Most people do not need expensive Windows XP or Windows Vista to do their job. Take advantage of its significantly lower total cost.

  • How To Mark Yourself As A HowtoForge Supporter

    Author: adminTags: Comments: 0

    How To Mark Yourself As A HowtoForge Supporter After you have become a HowtoForge Supporter, you can change the way your username appears in the HowtoForge forum. Your username will then be decorated with two golden stars and be shown as a member of the HowtoForge Supporters group: This is how you activate it in three easy steps: Log in on the HowtoForge web site, then go to your User Control Panel:

  • Invalid or corrupt certificate error code -8182, how can i fix it?

    apache Author: adminTags: Comments: 0

    You can re-generate the ISPConfig SSL certificate like this: openssl genrsa -des3 -passout pass:yourpassword -out /root/ispconfig/httpd/conf/ssl.key/server.key2 1024 openssl req -new -passin pass:yourpassword -passout pass:yourpassword -key /root/ispconfig/httpd/conf/ssl.key/server.key2 -out /root/ispconfig/httpd/conf/ssl.csr/server.csr -days 365 openssl req -x509 -passin pass:yourpassword -passout pass:yourpassword -key /root/ispconfig/httpd/conf/ssl.key/server.key2 -in /root/ispconfig/httpd/conf/ssl.csr/server.csr -out /root/ispconfig/httpd/conf/ssl.crt/server.crt -days 365

  • How do I search for a term in a file?

    apache Author: adminTags: Comments: 0

    With the grep command. If you want to find out if the term user is in /etc/httpd/conf/httpd.conf, you would run grep -i user /etc/httpd/conf/httpd.conf (-i makes the search case-insensitive). Normally grep does not tell you the line number where it finds the term. If you want to find out the line number, run grep -n -i user /etc/httpd/conf/httpd.conf

  • How do I find out who is logged in on my system?

    apache Author: adminTags: Comments: 0

    You can find out about logged in users either by running who (Sample output: server:~# who root pts/0 Nov 12 11:28 (192.168.0.202) ) or w which gives more detailed output: server:~# w 11:29:49 up 2:19, 1 user, load average: 0.02, 0.01, 0.00 USER TTY FROM LOGIN@ IDLE JCPU PCPU WHAT root pts/0 192.168.0.202 11:28 0.00s 0.08s 0.01s w

  • How do I find out which gateway a Linux system is currently using?

    apache Author: adminTags: Comments: 6

    Run route -nee The output will look like this: Kernel IP routing table Destination Gateway Genmask Flags Metric Ref Use Iface MSS Window irtt 192.168.0.0 0.0.0.0 255.255.255.0 U 0 0 0 eth0 0 0 0 0.0.0.0 192.168.0.1 0.0.0.0 UG 0 0 0 eth0 0 0 0 0.0.0.0 192.168.0.1 0.0.0.0 UG 0 0 0 eth0 0 0 0 This means that the system with the IP address 192.168.0.100 is using 192.168.0.1 as gateway.

  • How do I find out if a remote system is still alive, if certain services are running, which processes are running, etc.?

    apache Author: adminTags: Comments: 0

    You can use ping to see if the system is alive: ping -c4 <system's IP address> To see if a certain service is still alive, use the telnet command: telnet <system's IP address> 25 (for SMTP) telnet <system's IP address> 80 (for HTTP) telnet <system's IP address> 110 (for POP3) You can login to the system using SSH (port 22) (use PuTTY if you are on a Windows PC; PuTTY is an SSH client for Windows), and when you are on the system, you have a few useful tools to gather more information:

  • Screenshots

    android Author: adminTags: Comments: 2

    If you have made screenshots of a distribution not listed here, we would be pleased if you submitted them to us for publication on HowtoForge.Requirements:The screenshots should have a resolution of at least 800x600 pixels.Accepted image formats: .jpg, .gif, .png Please send your screenshots as .zip or .tar.gz archive to: [email protected]