Meniu
Autor | Mirela
Tutorial English How to prevent Spammers from accessing your Linux Server - GNU/Linux
How to prevent Spammers from accessing your Linux Server

I run an article directory on a dedicated Linux server and provide full article RSS feeds for any query or tag. When spammers find the site, they usually pull the feeds and repost the articles on their Wordpress or Blogger blogs. Occasionaly, for whatever...

---
English Linux commands - most commonly used - GNU/Linux
Linux commands - most commonly used

Linux is a very simple Operating system to use and the commands that you use on them span across the vast majority of Linux distros. I have included a list of the most commonly used commands below. cd cd stands for change directory. If you put in a forward...

Tutorial English Linux commands. The most used - GNU/Linux
Linux commands. The most used

Linux is a very simple Operating system to use and the commands that you use on them span across the vast majority of Linux distros. I have included a list of the most commonly used commands below. cd cd stands for change directory. If you put in a forward slash then it will start...

Tutorial English ACL: Setting Access Control List for non privileged users - GNU/Linux
ACL: Setting Access Control List for non privileged users

There are two type of ACLs Access ACL The user and group access permissions for all kinds of file system objects (files and directories) are determined by means of access ACLs Default ACL Default...

Tutorial English How to Setup a Home Network Using Static Addresses - GNU/Linux
How to Setup a Home Network Using Static Addresses

If you have more than one computer at home, you’ll probably want to set up a network so that they can communicate. This way you’ll be able to share your Internet connection and to transfer files and services between your different computers. Most home networks have two functions: They...

Tutorial English 10 ways to make Linux boot faster - GNU/Linux
10 ways to make Linux boot faster

Linux rarely needs to be rebooted. But when it does, it’s often slow to boot. Fortunately, there are ways to speed things up. Some of these methods are not terribly difficult (although some, unfortunately, are). Let’s take a look. 1: Disable unnecessary...

Tutorial English RAID - Redundant array of independent disks - GNU/Linux
RAID - Redundant array of independent disks

RAID is an acronym for Redundant Array of Independent Disks. With RAID enabled on a storage system you can connect two or more drives in the system so that they act like one big fast drive or set them up so that one drive in the system is used to automatically and instantaneously duplicate (or mirror)...

Tutorial English IPtables - Basic concepts - GNU/Linux
IPtables - Basic concepts

The IPTables program that comes with Linux distributions allows administrators to configure the operating system so that it allows applications and clients to connect through the network and stop unwanted applications and clients from communicating and corrupting the operating system. It is really a...

Tutorial English How to record a UNIX terminal session - GNU/Linux
How to record a UNIX terminal session

Start the recording of Unix terminal session with script command. And start doing your important configurations, it will recorded in a file. After completing the task ,you can exit the recording with exit command Example procedure:

Tutorial English Securing Your Network by Filtering MAC Addresses - GNU/Linux
Securing Your Network by Filtering MAC Addresses

If you live in the middle of nowhere you probably wonder why you should secure the access to your network. If you’re setting up a company network however, this probably seems obvious to you: you don’t want unwanted access to the network. Even at home, with wireless...

Tutorial English Sever Administration - mail troubleshooting - GNU/Linux
Sever Administration - mail troubleshooting

Go through this post to troubleshoot mail issues on your server.. Check emails in mail queue root@server [~]# exim -bp Count number of emails in mail queue root@server [~]# exim -bpc ...

Security English john (John the Ripper) — a password cracker for Linux and Windows - GNU/Linux
john (John the Ripper) — a password cracker for Linux and Windows

John the Ripper (a.k.a. JtR, or simply john) is a popular fast password cracker for both Linux and Windows . It is quite useful for identifying weak passwords. By weak, I mean ones that do not take a long time to crack. In this article I will show you how to...

Tutorial English No volume control GStreamer ... found — no sound on Ubuntu - GNU/Linux
No volume control GStreamer ... found — no sound on Ubuntu

I was introduced to Linux via RedHat distributions, such Fedora or CentOS. With Fedora you tend to learn a lot because so many things are broken! I also used Novell’s openSuSE for a while. I found it to be much more polished than Fedora. SuSE includes Yast...

Tutorial English Network config files in Linux - GNU/Linux
Network config files in Linux

In most cases, the DNS configuration is stored within /etc/resolv.conf. To add a DNS server, you can simply add a line “namespace 123.123.123.123? in /etc/resolv.conf (assuming you want to use 123.123.123.123 as your DNS Server): nameserver 123.123.123.123 However,...

Tutorial English 9 Server Configuration checking useful commands - GNU/Linux
9 Server Configuration checking useful commands

Server Configuration checking commands: 1.HTTP Webserver: httpd -t Run syntax tests for configuration files only. The program immediately exits after these syntax parsing tests with either a return...

Tutorial English Connection reset by peer — ssh sshfs error - GNU/Linux
Connection reset by peer — ssh sshfs error

Recently, after re-installation of Ubuntu Linux, sshfs mount, from a Fedora Core, has failed with the following error message, read: Connection reset by peer. In fact this error is not due to sshfs but its ssh subsystem. Unlike ssh, sshfs does not give a very...

Tutorial English Basic commands a system admin need to know - GNU/Linux
Basic commands a system admin need to know

Basic commands a system admin need to know. - tty – tty command will tells you current terminal. #tty /dev/pts/1 - whoami- whoami commands tells you current logged-in username #whoami ...

Tutorial English How To Perform HTTP-GET via Curl Commands inside PHP - GNU/Linux
How To Perform HTTP-GET via Curl Commands inside PHP

PHP supports libcurl that allows you to connect and communicate to many different types of servers with many different types of protocols. libcurl currently supports the http, https, ftp, gopher, telnet, dict, file, and ldap protocols. libcurl also supports HTTPS...

Tutorial English important uses of LSOF Command for Linux admin - GNU/Linux
important uses of LSOF Command for Linux admin

Important uses of LSOF Command - lsof is a Linux utility which lists the information about files opened by processes.LSOF is one of the powerful tool available for troubleshooting problems. Below listed important uses of LSOF Command Listing Files Open...

Tutorial English lsof | grep snd — how to free a Linux sound device - GNU/Linux
lsof | grep snd — how to free a Linux sound device

A program attempting to open a sound device for exclusive access may fail, if that audio device is already in use by another program. Also, depending on the capabilities of the audio device, such as whether it is full-duplex or not, errors may occur if capture is requested...

Tutorial English aspell — spelling with foreign dictionaries - GNU/Linux
aspell — spelling with foreign dictionaries

Regardless of whether you are a spelling genius or a spelling disaster, like myself, it is useful to have a spellchecker handy. There are number of tools available for this purpose. For single words, Google is quite useful. There are many other websites with...

Tutorial English lprm — cancel print jobs - GNU/Linux
lprm — cancel print jobs

lprm is a useful tool for removal of active or queued print jobs. Lets start by having a look at line printer queue status using lpq utility. Simply type lpq at the shell to produce a list of active and queued jobs for your default printer. printer is ready and printing Rank Owner Job ...

---
English ./ — dealing with a leading minus in filenames under Linux shell  - GNU/Linux
./ — dealing with a leading minus in filenames under Linux shell

Dealing with files whose filenames contain special shell characters can be tricky. Unless you know how to handle their filenames properly, you may not be able to perform even simple operations on such files. In this post I’ll show you how to deal with files...

Tutorial English tar — how to create and extract tar.gz and tar.bz2 archives - GNU/Linux
tar — how to create and extract tar.gz and tar.bz2 archives

The commonly employed archive types on Linux and Unix systems are tar, tar.gz and tar.bz2 archives. Note that tar.gz and tar.bz2 archives are simply gzip-ped and bzip(2)-ped tar archives, respectively. Working with these files is made very simple through the use of GNU...

Tutorial English cups — fixing cups printer problem: lpd failed - GNU/Linux
cups — fixing cups printer problem: lpd failed

Recently, our HP2420dn printer stopped working. Well, it was not really the printer… printing jobs went but nothing came out of the printer. The cups server has put the printer into a stopped state with the StateMessage /usr/lib/cups/backend/lpd failed. ...