Welcome

Welcome to TechPulp.com. Here you can find technical articles, examples, sample code snippets. We lay more emphasis on usage scenarios by giving practical examples. Please submit your comments, suggestions and requests for any new articles.

Did you know? You can also participate and start writing articles and publish here.



Category ‘Linux’

1 2 3 4 »

  • TECHPULP | How to install VLC Media Player on Fedora
    Fedora doesn’t distribute VLC media player as part its core and updates. So you need download rpms from rpmfusion.org as shown below. [root@techpulp ~]# rpm -ivh http://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-stable.noarch.rpm [root@techpulp ~]# yum install -y vlc [root@techpulp ~]# yum install -y mozilla-vlc Off...
  • TECHPULP | How to retain RPMs downloaded by yum
    Generally yum deletes all RPMs it downloads right after installing them. If you want to save Internet bandwidth and have multiple systems to be updated, you can make yum to keep the RPMs it downloads. The highlighted line in /etc/yum.conf...

  • TECHPULP | How to free cached memory and dirty pages in Linux
    When an application reads a file, Linux kernel keeps cache of file contents in memory. The Linux keeps the cache even after application closes the file to improve performance for further read operations of same file. This cache is freed...
  • TECHPULP | How to run multiple commands at once in bash shell
    All commands can be just appended using a semicolon (;) to make the bash to run all the commands one after the other as shown below. [liz@techpulp ~]# make config; make; make release The above command is equivalent to running...

  • TECHPULP | How to solve ‘Stale NFS file handle’ error while accessing or unmounting a NFS volume
    This error is typically seen in a system which has active NFS mount point. The NFS protocol doesn’t define any automatic way of communication for any change of NFS server configuration. For example, if a client system mounts an NFS...
  • TECHPULP | How to change the order of network card detection in Linux
    There are multiple issues you would notice when you have more than one Ethernet card (NIC) in your system. The NICs may not get detected in the order you want it to be. The on-board Ethernet port may get detected...

  • TECHPULP | How to export a NFS volume in Fedora or RedHat Linux
    NFS stands for Network File System and is a easy way to share files across Linux systems. However the downside of NFS file sharing is that shared folder can’t be protected with a password. But you can limit access to...
  • TECHPULP | Fedora 11 (LEONIDAS) gets ready to hit the road by end of May
    The upcoming Fedora 11 release, named Leonidas, is scheduled to be released towards end of May. This release comes up with all latest versions of desktops like KDE, GNOME, XFCE and popular applications like Firefox, OpenOffice.org etc. The following are...

  • TECHPULP | How to get a shell with root access in Ubuntu similar to “su” in RedHat or Fedora Linux
    In RedHat or Fedora systems, you will separate passwords and separate user accounts for root and non-root user. But in Ubuntu, the default user already has root privileges but not allowed to run any command that requires root privileges directly....
  • TECHPULP | How to merge two files using text mode in Linux
    The Linux provides a command “vimdiff” which can open two files using standard “vim” editor but in two separate logical windows. This is a text-mode based tool. This tool highlights the differences between two files so that the user can...

1 2 3 4 »