Found 499 Articles for File System

How to install Everpad Client in Ubuntu

Sharon Christine
Updated on 20-Jan-2020 13:02:43

175 Views

Everpad is a fantastic tool for work, but it is also a great tool outside of the workspace. It is an open-source client for the note taking. Although there isn’t an official Everpad client available for Linux, by installing Wine, you can use the exact Everpad client. This article describes “how to install Everpad client in Ubuntu”It supports Unity Lens which allows you to search through your Everpad, then click to open them for additional editing. From the application, you can create and manage all of your Everpad from one single place.Installing EverpadTo install Everpad, we require Everpad ppa  from ... Read More

How to Use SFTP to Secure File Transfer with a Remote Server

karthikeya Boyini
Updated on 20-Jan-2020 12:42:12

2K+ Views

In this article, you can learn about – how to setup SFTP (Secured File Transfer Protocol) which will help us to transfer the files from local machine to remote server secure. FTP (File Transfer protocol) is a very popular method used to transfer files from one machine to another or from remote servers.SFTP stands for Secure File Transfer protocol, is a separate protocol, which uses SSH to secure the connection and makes the file transfer which traverses the file system on both remote server & local machine.How to Connect using SFTPSFTP uses the SSH protocol to connect and establish a ... Read More

How to Use ‘cat’ and ‘tac’ Commands with Examples in Linux

karthikeya Boyini
Updated on 20-Jan-2020 12:22:24

942 Views

Cat command is a well known Unix utility that reads files sequentially. Writing them to conventional output. The name is derived from its function for concatenating and listing the documents. Tac (that is “cat” backwards) concatenates every record to traditional output much like the cat command. However in opposite: line-by means of-line, printing the last line first. This article explains about “How to use ‘cat’ and ‘tac’ commands with examples”.The basic example of cat command should be like this –$ cat text.txtThe above command is to read files and display them to stdout, meaning to display the content of files ... Read More

How to Install Best Open Source Text Editors

Sharon Christine
Updated on 20-Jan-2020 12:30:46

182 Views

Text editors can be utilized for writing code, enhancing text files such as configuration records, developing person guideline documents and plenty of extra. In Linux, text editors are of two kinds ie., graphical user interface (GUI) and command line text editors. This article explains about how to install best Open Source Text Editors.Vi/Vim EditorVim is designed for use of both command-line interface and as a standalone application in a graphical user interface. Vim is free and open source software and is released under a license that includes some charity ware clauses. To install vim editor, use the following command –$ ... Read More

How to Setup Own Fileserver using Pydio on Ubuntu

karthikeya Boyini
Updated on 20-Jan-2020 11:49:12

63 Views

In this article we will learn, how to host a file sharing server using Pydio which can run well without a powerful hardware. We will install community edition but if we go for enterprise license, it is free for teams smaller than 10 persons.Pydio is a utility which looks like Dropbox and allows files sharing. Pydio has a good feature as other file syncing services, a web interface, native client for Mac, Windows and Linux, Mobile client for IOS and Andriod. It has an ability to share files with other Pydio user who are in the public.PrerequisitesUser with no root ... Read More

How to Remove Empty Lines from a File on ubuntu

karthikeya Boyini
Updated on 20-Jan-2020 10:45:11

4K+ Views

Do you know how to remove empty lines from the file in Ubuntu? It may also be performed manually if the file has few strains but if the file has hundreds of thousands of line that is tough to be accomplished manually. This article explains you about – how to remove empty lines from a file on Ubuntu.Our sample file should be like this –Use the following command to remove the Empty lines from a file as shown below –$ ex -s +'v/\S/d' -cwq abc.txtIn the above command abc.txt indicates the file name. The sample output should be like this ... Read More

How to Recursively Search all Files for Strings on a Linux

karthikeya Boyini
Updated on 20-Jan-2020 10:38:44

11K+ Views

The grep command is used to search text or scans the given record for lines containing a match to the given strings or words. Use grep to search for lines of text that match one or many regular expressions, and outputs only the matching lines. Using the grep command, we can recursively search all files for a string on a Linux.Syntax of is shown as below-$ grep -r "word"For example, for searching “Linux” word in Downloads directory. The command should be like this~/Downloads$ grep -r "Linux"The sample output should be like this –zookeeper_installation.htm:Any of Linux OS − Supports development and ... Read More

Find the Largest Top 10 Files and Directories On a Linux

Sharon Christine
Updated on 20-Jan-2020 09:45:31

18K+ Views

Sometimes, it becomes important to find which files or directories are ingesting up, all of your disk area on a Linux. Similarly, we should be able to discover a particular directory location on file system such as /tmp/ or /var/ or /domestic/. This article will help you to use Unix and Linux commands for finding the most important or biggest files or directories on the file systems.Although, there is no shortcut command which is available to discover the largest documents/directories on a Linux/UNIX/BSD file system but there is a possibility which we will be showcasing you about.By aggregating the following ... Read More

Best Online Tools for Compressing Images

Sharon Christine
Updated on 20-Jan-2020 06:37:59

110 Views

How many times have you thought of sending multiple images to your loved ones but just because of the file size would have easily avoided. Gone are those days of worrying about file sizes as now embrace compression based online tools to your rescue. Here we have shortlisted a few online tools which can help you compress images without losing quality. Hope you will be excited to discover for yourself. Go ahead and make the best use of these tools.Compressor.ioThis is the best image size optimization tools as it allows the user to choose between lossy (picture quality reduction) and ... Read More

Difference between TELNET and FTP

Kiran Kumar Panigrahi
Updated on 22-Aug-2022 13:59:32

7K+ Views

FTP is an Internet protocol for transmitting or transferring data from one computer to another via TCP or IP networks. TELNET, on the other hand, is a connection protocol that allows a user to connect to a remote server waiting for commands. The user can then give commands to the server and inspect the returned responses, once the connection has been established.Read through this article to find out more about Telnet and FTP and how they are different from each other.What is Telnet?Telnet is a network protocol that allows you to remotely connect to a computer and establish a two-way, ... Read More

Advertisements