Categories
- Blog (1)
- Grandstream UCM (1)
- IP Telephony (45)
- KVM (1)
- Linux (54)
- Microsoft (5)
- Mikrotik (14)
- Network (16)
- Paloalto Firewall (1)
- Uncategorized (196)
- Vicidial (4)
- VMware (67)
-
Recent Posts
- How to Retrieve VICIdial Admin Password from MySQL Database
- How to Manage KVM Virtual Machines on Ubuntu Server Using virsh
- Palo Alto UNAT Configuration – Step-by-Step Lab Guide (LAN → DMZ via WAN)
- Point-to-Point Wireless Devices Comparison: Practical Hardware Selection Guide
- Excitel Broadband Router Default Login
Category Archives: Linux
How to check Internet Speed on Centos CLI
How to check Internet Speed on Centos CLI Speedtest-cli is Python script its works on Python program. you must have Python installed. check if have installed . python –version python3 –version lsb_release -a if you have not install then install … Continue reading
Centos 6.x repository not working
Centos 6.4 repository not working just rename /etc/yum.repos.d/CentOS-Base.repo cd /etc/yum.repos.d/ mv CentOS-Base.repo CentOS-Base.repo.old copy and paste below code on command prompt they try to use yum . cat <<-‘EOF’ > /etc/yum.repos.d/CentOS-Base.repo [C6.4-base] name=CentOS-6.4 – Base baseurl=http://vault.centos.org/6.4/os/$basearch/ gpgcheck=1 gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-6 enabled=1 … Continue reading
Centos 7 Setup command not found
yum install setuptool -y yum install system-config-network* -y yum install system-config-firewall* -y yum install system-config-securitylevel-tui -y yum install system-config-keyboard -y yum install ntsysv -y yum install NetworkManager-tui nmtui
Posted in Linux
Leave a comment
How to search text in Ubuntu Linux
How to search text in Ubuntu Linux 1- Install ack-grep by typing #sudo apt-get install ack-grep 2- Change to the directory where you want to search # ack-grep yourtext it will show all files containing text yourtext
How to record linux ssh terminal output and replay it for all users
How to record linux ssh terminal output and replay it for all users we can get it done using script command .you can save all the session from all users login in to your server and there activity. this will … Continue reading
How to install bigbluebutton web conference server.
How to install BigBlueButton web conference server. The minimum requirements for a BigBlueButton server are Ubuntu 16.04 64-bit OS running Linux kernel 4.x 8 GB of memory with swap enabled (16 GB of memory is better) 4 CPU cores (8 … Continue reading
Posted in Linux
Leave a comment
Backup and Restore your Centos
Backup and Restore your Centos 7 Some time you want to take backup of your server including application and settings .below are the easy method a small example 1- The first step is to create a location to store the … Continue reading
How to Install VMware Tools on CentOS 7
How to Install VMware Tools on CentOS 7 # yum install -y open-vm-tools check file is exist # ls /usr/bin/vmtoolsd Now reboot the server
Posted in Linux, VMware
Leave a comment
How to check directory size in Linux
How to check directory size in Linux DU command uses for disk uses you can use du command to check directory size. for example you want to check directory size of a folder “database” use -h for size in MB … Continue reading
Posted in Linux
Leave a comment
How to update Centos 5 .X and cannot find a valid baseurl for repo
How to update Centos 5 .X and cannot find a valid baseurl for repo If you are using CentOS 5.x and want to install any software and update CentOS 5.x . you are getting following error . root@server1 [~]# yum … Continue reading