IPInfo.io Home

Get IP address location info from command line

The Linux command line is a great tool. Today I’ll like to share a method to get Geographical IP information with one command, using curl and the tool of ipinfo.io. It is as easy to use this command: $ curl ipinfo.io/<IP Address> Here you have an example: You will have these parameters: IP City Region Country Loc (Coordinates) Org Postal Timezone If you want to get information about the Public IP Address you use to go to The Internet, you could execute the command this way:...

September 5, 2020 Â· 1 min Â· Yvoictra

Solve issue "client intended to send too large body" in NGINX

I have faced an issue in a web server using NGINX while trying to upload a file using wordpress. In the nginx error log I saw the error “Client intended to send too large body” in this entry: $ tail -f /var/log/nginx/*error*.log 2020/09/01 14:31:04 [error] 884#884: *126565 client intended to send too large body: 1195619 bytes, client: 55.173.250.46, server: test.com, request: "POST /wp-json/wp/v2/media?_locale=user HTTP/2.0", host: "test.com", referrer: "https://test.com/wp-admin/post.php?post=2460&action=edit" This limitation is defined in the NGINX web server, so I have to changed the configuration of the server:...

September 1, 2020 Â· 1 min Â· Yvoictra

How to resolve LAN hostnames with Ubuntu

By default, Ubuntu desktop installation will provide DNS resolving configured, however in Ubuntu server installation avahi-daemon (or mdnsresponder) is needed to be installed to provide local LAN DNS resolution. In my case, i found the error “Temporary failure in name resolution” when I tried to resolve a machine of my LAN from Ubuntu. yvoictra@zoar:~$ ping erie.local ping: erie.local: Temporary failure in name resolution To solve this issue, there is no need to install a DNS server in the LAN....

April 19, 2020 Â· 2 min Â· Yvoictra
Sudo Ubuntu

How to activate SUDO in Ubuntu for a user

The sudo command allows users to run programs with the security privileges of another user, by default, the root user. First if all, the user should be created in the system if it doesn’t exists yet. On Ubuntu systems, by default members of the group sudo are granted to sudo command access. Once the user is created, from root user, or a user with sudo access, you have to execute this command to add the user to sudo group....

April 18, 2020 Â· 1 min Â· Yvoictra
vnStat

How to monitor network traffic on Ubuntu using vnStat

Monitoring network traffic or bandwitdh usage is a must in a SysAdmin tasks. There are many differents tools to manage this monitoring, but one of my favorites is vnStat. The main advantage of this tool is the simplicity of its usage. Installation With Ubuntu, the way to install this tool is with apt. sudo apt install vnstat First steps Once installed, it is important to know which interfaces are going to be monitoried....

April 3, 2020 Â· 2 min Â· Yvoictra

How to set up Wi-Fi on Ubuntu running on the Raspberry Pi 4

First step is to check the status of the interfaces. For this, we will use the net-tools package. sudo apt install net-tools Then, we can see the interfaces status ifconfig -a In my case, I have this status of my interface wlan0: ubuntu@ubuntu:~$ ifconfig -a wlan0 wlan0: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether dc:a6:32:6c:xx:xx txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0....

April 2, 2020 Â· 2 min Â· Yvoictra

Create a new user in Ubuntu from terminal

In order to create a new user in a Linux Ubuntu distribution from terminal, you have to use this command. sudo adduser username After this, the system will ask you some parameters included the password. [23:43:24] ubuntu|zoar:~$ sudo adduser yvoictra Adding user `yvoictra' ... Adding new group`yvoictra' (1001) … Adding new user `yvoictra' (1001) with group`yvoictra' … Creating home directory `/home/yvoictra' ... Copying files from`/etc/skel' … New password: Retype new password: passwd: password updated successfully Changing the user information for yvoictra Enter the new value, or press ENTER for the default Full Name []: Yvoictra Room Number []: Work Phone []: Home Phone []: Other []: Is the information correct?...

April 1, 2020 Â· 1 min Â· Yvoictra

Customize Bash Prompt with colours in Linux

There are lot of people that simply like to customize the appearence of the terminal, is my case. When you use a terminal during a lot of time, it usually helps to have a prompt more visible than the default one. Backup First of all, you should make a backup of the configuration file in order to fall back in case it is necessary. The file is at the user $HOME, so first step is to go the directory....

April 1, 2020 Â· 2 min Â· Yvoictra