Showing 8 Result(s)

IAT – ISO9660 Analyzer Tools by Salvatore Santagati

iat is Iso9660 Analyzer Tools by Salvatore Santagati, this tool have engine for detect many structure of image file. Install iat to mount .bin files on Ubuntu Operating System. Install iat: sudo apt-get install iat Convert the .bin file to .iso file: iat source.bin target.iso Mount the .iso file: sudo mkdir -p /mnt/DVD1 sudo mount …

How to Install FFmpeg on Ubuntu 20.04

What is FFmpeg? FFmpeg is the leading multimedia framework, able to decode, encode, transcode, mux, demux, stream, filter and play pretty much anything that humans and machines have created. It supports the most obscure ancient formats up to the cutting edge. No matter if they were designed by some standards committee, the community or a …

How to recover MySQL root password?

How to recover MySQL root password? Let’s learn how to recover MySQL root password in case you have lost it. Know how to recover MySQL root password. Log in to account using SSH. You must login to your account using SSH as the root user to recover MySQL root password. Stop the MySQL service Use …

Create file with TimeStamp in Shell Script

I love using Ubuntu OS for development. I need to create a shell script that saves new file with a timestamp. Following are steps that I’ve followed: Understanding date command. nishant@nishantvaity:~$ date Wed Sep 18 13:53:49 IST 2019 Use any of following command to know options for date command. nishant@nishantvaity:~$ date –h OR nishant@nishantvaity:~$ man …

Automated conversion of Excel to PDF using LibreOffice

While converting an excel to pdf following operations are done Read existing excel file. Modify cell values of existing excel file. Convert output of worksheet to PDF Here Node.js, LibreOffice, unoconv are used for automated conversion with Ubuntu operating system. Following are instructions to install Node.js Run curl -sL https://deb.nodesource.com/setup_10.x | sudo bash – Run sudo apt-get …

How to mount remote directory using SSH ?

How to mount remote directory using SSH and make it available it as local directory. Install the module sshfs: [php]sudo apt-get install sshfs[/php] Load it to kernel [php]sudo modprobe fuse[/php] Set permissions [php] sudo adduser $USER fuse sudo chown root:fuse /dev/fuse sudo chmod +x /dev/fusermount [/php] Now create a directory to mount the remote folder …

How To Record Streaming Audio In Ubuntu

How To Record Streaming Audio In Ubuntu: Audio Recorder records all type of sound your computer makes. It records audio played through your system’s soundcard, microphones, browsers, webcams and more. It provides option of selecting the recording device such as webcam, microphone, Skype etc. Use a PPA to install Audio Recorder in Ubuntu. Use the following …