TCSH / CSH: set vs setenv Command Differences

The set and setenv commands in tcsh and csh shells are used to set environment variables, but with some differences: Syntax: The syntax for the set and setenv commands is different. set uses the following syntax: set variable = value while setenv uses the following syntax: setenv variable value Scoping: set sets a shell variable, … Read more

Enable Telnet Access For Netgear Wireless Router DGND3700 [ N600 ]

Telnet access is not enabled by default on the Netgear DGND3700 N600 wireless router. To enable Telnet access, you’ll need to access the router’s web interface and make changes to the router’s settings. Here’s how: Connect your computer to the Netgear DGND3700 N600 router. Open a web browser and enter the router’s IP address, 192.168.0.1, … Read more

Linux Find Number of CPU Cores Command

To find the number of CPU cores in a Linux system, you can use the nproc command. Simply run the following command in the terminal: nproc This will return the number of processing units available on the system. Another alternative is to use the lscpu command which provides detailed information about the system’s CPU architecture: … Read more

Debian Linux 6: Install libdvdcss2 For DVD Decryption Playback

To install libdvdcss2 on Debian Linux 6, you can follow these steps: Add the VideoLAN repository to your sources list: echo “deb http://download.videolan.org/pub/debian/stable/ /” | sudo tee -a /etc/apt/sources.list Download and install the VideoLAN repository key: wget -O – http://download.videolan.org/pub/debian/videolan-apt.asc | sudo apt-key add – Update your package list: sudo apt-get update Install libdvdcss2: sudo … Read more

Debian / Ubuntu Linux: Install and Configure Shoreline Firewall (Shorewall)

Here’s an overview of the steps to install and configure Shoreline Firewall (Shorewall) on Debian or Ubuntu Linux: Install Shorewall:   sudo apt-get update sudo apt-get install shorewall Configure the network interfaces: Create a file “/etc/network/interfaces” with the following content, replacing “eth0” and “eth1” with your actual interface names:   auto lo iface lo inet … Read more