command Archives - Mp3 Store https://mp3store.in/tag/command/ Technical and technology Sun, 28 Aug 2022 05:59:08 +0000 en-US hourly 1 https://wordpress.org/?v=6.7.1 https://i0.wp.com/mp3store.in/wp-content/uploads/2022/09/cropped-logooooo-1.jpg?fit=32%2C32&ssl=1 command Archives - Mp3 Store https://mp3store.in/tag/command/ 32 32 208601112 HOW TO FORMAT USING CMD https://mp3store.in/2022/08/28/how-to-format-using-cmd/ https://mp3store.in/2022/08/28/how-to-format-using-cmd/#respond Sun, 28 Aug 2022 05:59:08 +0000 https://mp3store.in/?p=367 HOW TO FORMAT USING THE CMD IN WINDOWS     In windows command line there is a very powerful drive formatting tool build in it It can be used to format drive or change the format of a drive or usb to another format as well partition the drive as per the user intended HOW TO FORMAT A USB DRIVE/HARD DRIVE: STEP 1:    Open Command Prompt As Administrator Opening the command prompt. To Search for command prompt search in taskbar ,and right click or select  run as Administrator from the menu. STEP 2:Use Diskpart To use diskpart Once the command line

The post HOW TO FORMAT USING CMD appeared first on Mp3 Store.

]]>
HOW TO FORMAT USING THE CMD IN WINDOWS

    In windows command line there is a very powerful drive formatting tool build in it

It can be used to format drive or change the format of a drive or usb to another format as well partition the drive as per the user intended

HOW TO FORMAT A USB DRIVE/HARD DRIVE:

STEP 1:    Open Command Prompt As Administrator

Opening the command prompt.

To Search for command prompt search in taskbar ,and right click or select  run as Administrator from the menu.

STEP 2:Use Diskpart

To use diskpart

Once the command line is open, type ‘diskpart’ in the terminal and press Enter it will open the  diskpart cli utility.

diskpart command

STEP 3:Type List Disk

to list the available disks in the entire system

The above command will open a Diskpart window. In this terminal prompt, type ‘list disk’ and press Enter. It will list all the available drives in the entire system.

Note the drive number of the disk because it will be used in the next step

list disk command

STEP 4:Select the Drive to Format

To format  a drive.

Now type ‘select disk (disk number)’ Select  the drive number which needs to be formatted by typing “select disk ‘no’ ” this will select the disk.

select disk command

STEP 5:Clean the Disk

Using the clean function.

In this step, type ‘clean’. This command will format all files and folders within them, and successfully clean up the disk.in after this step the drive become inaccessible

STEP 6:Create Partition Primary

To make a primary partition.

To make the drive access the drive again, type ‘create partition primary’ and press enter

STEP 7:Format the Drive

To Formatting a drive.

The above steps are all same for usb or harddisk but formatting the drive is little bit different from each others

Now format the drive with the NTFS file system. Type ‘format fs=ntfs quick’ and press Enter.

Now format the usb drive with the fat32 file system. Type ‘format fs=fat32 quick’ and press Enter.

Don’t forget to enter quick or it may take long time to format

format command

STEP 8:Assign a Drive Letter

To Assigning a drive letter.

To assign a drive letter, you can type ‘assign’ and enter this will assign a random letter to the newly formatted drive.

STEP 9 : Exiting the diskpart

Type “EXIT” in the prompt

Then type EXIT again to close the cmd

The post HOW TO FORMAT USING CMD appeared first on Mp3 Store.

]]>
https://mp3store.in/2022/08/28/how-to-format-using-cmd/feed/ 0 367
USEFUL LINUX COMMAND [PART-2] https://mp3store.in/2022/08/15/useful-linux-command-part-2/ https://mp3store.in/2022/08/15/useful-linux-command-part-2/#respond Mon, 15 Aug 2022 03:41:40 +0000 https://mp3store.in/?p=356 Linux is an open-source operating system that runs on a wide variety of hardware from watches to supercomputers . this operating system can be controlled using just your keyboard and no need to use your mouse but all the linux operating system comes with graphical user interface {GUI}.but learning commands is useful to make your experience amazing If you want to try linux checkout this article of best linux distro in 2022 .as well as check out other linux command series here 1.vim vim is a free and open source terminal text editor that’s in use since the ’90s. It

The post USEFUL LINUX COMMAND [PART-2] appeared first on Mp3 Store.

]]>
Linux is an open-source operating system that runs on a wide variety of hardware from watches to supercomputers . this operating system can be controlled using just your keyboard and no need to use your mouse but all the linux operating system comes with graphical user interface {GUI}.but learning commands is useful to make your experience amazing

If you want to try linux checkout this article of best linux distro in 2022 .as well as check out other linux command series here

1.vim

vim is a free and open source terminal text editor that’s in use since the ’90s. It lets users to edit plain text files using efficient keybindings.

Some people thinks it is difficult to use but exiting Vim is one of the most-viewed questions but once you get used to it, it becomes your best ally in the command line.

2.suble

Its an alternate gui text editor,it is the command line command to open a file in the popular sublime text editor it is a gui text editor .but you need to install the sublime text editor to use this command

3.which

The which command prints the full path of shell commands. If it can’t recognize the given command, it’ll throw an error.

For eg, we can use this to check the folder path for Python

4.shred

If you want a file to be impossible to recover,then  shred can help you with this task. This command rewrites the contents of a file again and again until the final result becomes extremely difficult to recover.

5.whoami

The whoami command (stands for “who am i”) displays the username currently in use

6.whatis

whatis simple prints a single-line description of any other command, making it a helpful reference:

It gives a single line definition for the  command or programs .

7.wc

Wc stands for “word count,” and as the name suggests, it returns the number of words in a text document or a text file:

wc long.txt

 

# 37 207 1000 long.txt

Let’s breakdown the output of this command:

  • 37 lines
  • 207 words
  • 1000 byte-size
  • The name of the file (long.txt)

If you only need the number of words in the file, use the -w flag:

wc -w long.txt

8.uname

uname(short for “Unix name”) prints the operative system information, which comes in handy when you know your current Linux version.

Most of the time, you’ll be using the -a (–all) flag, since the default output isn’t that useful:

9.neofetch

Neofetch is a command-line interface tool that allows users to display information about your system — like shell,kerbal  version and hardware information — next to an ASCII logo of your Linux distro:

10.wget

World Wide Web get is a utility that allows the user to  retrieve content from the internet. It has one of the largest option flags available.

 

The post USEFUL LINUX COMMAND [PART-2] appeared first on Mp3 Store.

]]>
https://mp3store.in/2022/08/15/useful-linux-command-part-2/feed/ 0 356
BASICS LINUX COMMAND FOR ABSOLUTE BEGINNERS [PART-2] https://mp3store.in/2022/07/05/basics-linux-command-for-absolute-beginners-part-2/ https://mp3store.in/2022/07/05/basics-linux-command-for-absolute-beginners-part-2/#respond Tue, 05 Jul 2022 14:09:30 +0000 https://mp3store.in/?p=30 In this series we will learn about various linux command as this goes on we will get into intermediate and advance linux commands  So in PART-1 of basic linux command we see command linux command. In this post, we will continue to learn some other basic commands of linux in this post. Check out the PART-1 OF BASIC LINUX COMMAND FOR ABSOLUTE BEGINNERS WHAT IS LINUX ?     Linux is a open source operating system that runs linux kernel there are lot of distribution of linux, linux is highly customizable os unlike windows for macos they are very restricted compare

The post BASICS LINUX COMMAND FOR ABSOLUTE BEGINNERS [PART-2] appeared first on Mp3 Store.

]]>
In this series we will learn about various linux command as this goes on we will get into intermediate and advance linux commands 

So in PART-1 of basic linux command we see command linux command. In this post, we will continue to learn some other basic commands of linux in this post.

Check out the PART-1 OF BASIC LINUX COMMAND FOR ABSOLUTE BEGINNERS

WHAT IS LINUX ?

    Linux is a open source operating system that runs linux kernel there are lot of distribution of linux, linux is highly customizable os unlike windows for macos they are very restricted compare to the linux os,os linux can run on wide variety of hardware from smartwatch to supercomputer and they are well know for it stability and reliability 

to learn little bit more about linux click here

this article will show additional and useful basic linux commands

1.locate

    You can use this command to find a file, just like the windows search in Windows.in addition to that, using the -i argument along with this command will make it case-insensitive, so you can search for a file even if you don’t know its exact name.

To search for a file that having more than two words, use an asterisk *. For ex, locate -i scnotes* note command will search for any file that contains the word “scnote” and “scnote”, even if it is in uppercase or lowercase.

2.find

    It is similar to the locate command, using find it also  searches for files and directories. The difference between locate and find commands is that, you use the find command to find the files within a specific directory.

As an example, find /home/ -name scnotes.txt command will search for a file called scnotes.txt within the home directory and its subdirectories.

3.grep

This is another basic Linux command that is very helpful for everyday use .It lets you search through all the text in a given file.

For example if you type “grep pink colors.txt” it will search for the word pink in the colors file. Lines that contain the word will be shown fully.

4.df

    df command is used to get a report on the system’s disk space usage, shown in percentage and KBs. If you want to see the disk space usage report in megabytes, type df -m.

5.du

    If you want to check the size of a file or a directory, the du (Disk Usage) command is used for that purpose.However, the disk usage summary will show disk- block numbers instead of the usual size format. If you want it to show it in bytes, kilobytes, and megabytes, add the -h argument to the command.

6.tar

    The tar command is one of the most used commands to archive multiple files into a tarball file ,a common Linux file format that is like zip format in other operating systems, with compression being optional.

This command has a long list of functions such as adding new files into an existing tarball file, listing the total  content of an archive, extracting the content from a file, and many more.

7.chmod

    chmod is another Linux command, used to change the write,read and execute permissions of files and directories.

8.ping

    Ping command is used to check the connecting status of the server that is still alive and does it give response back or not

9.history

     History command is used to show the previously typed command in the terminal 

10.echo

    This command is used to copy some data into a file. For eg, if you want to add the text, “hello world” into a file called nameless.txt, you would type echo hello world >> nameless.txt

The post BASICS LINUX COMMAND FOR ABSOLUTE BEGINNERS [PART-2] appeared first on Mp3 Store.

]]>
https://mp3store.in/2022/07/05/basics-linux-command-for-absolute-beginners-part-2/feed/ 0 30
 BASIC LINUX COMMAND FOR ABSOLUTE BEGINNERS [PART-1] https://mp3store.in/2022/07/05/basic-linux-command-for-absolute-beginners-part-1/ https://mp3store.in/2022/07/05/basic-linux-command-for-absolute-beginners-part-1/#respond Tue, 05 Jul 2022 14:04:19 +0000 https://mp3store.in/?p=20 WHAT IS LINUX ?     Linux is a family of open source operating system running linux kernel you might not know about linux but the world is run by linux ,all the server are exclusively runs linux operating system because linux is known for its stability and relatability as well is it can run on wide range of hardware from watches to supercomputers     Unlike windows and mac os linux is completely open source and it has a very large community of people that helps ordinary people to get using linux, and there are lot of distribution there is something

The post  BASIC LINUX COMMAND FOR ABSOLUTE BEGINNERS [PART-1] appeared first on Mp3 Store.

]]>
WHAT IS LINUX ?

    Linux is a family of open source operating system running linux kernel you might not know about linux but the world is run by linux ,all the server are exclusively runs linux operating system because linux is known for its stability and relatability as well is it can run on wide range of hardware from watches to supercomputers

    Unlike windows and mac os linux is completely open source and it has a very large community of people that helps ordinary people to get using linux, and there are lot of distribution there is something for everyone in the linux 

    Unlike other os the linux doesn’t even need GUI(Graphical user interface) or mouse  to operate the entire system ,it can even operate by commands in the terminal many people are scared because of that but most linux distros come with GUI but still learning some command will improve your day to day workflow in linux

    So these are some of the command for beginners 

check out the a small introduction to linux here.

1.ls command

    ls  command is used to list all the file in the current directory you are in if you want the ls command to to show hidden files then use -a as an argument to show the all the file with hidden files in the current directory

2.cp-command 

    cp command is used to copy files through the command line interface. It takes two parameter: The first is the location of the file to be copied, the second is where to copy the file.

3.cd command

    cd-  change directory

    It is used to go to a specific directory. For example, if you are in the home folder, and you want to change it to the downloads folder, then you can type in “cd Downloads”., this command is case sensitive, and you have to type in exact name of the folder. But the changing director should be with in the current directory for example you are in downloads folder you want to open ex1 folder but it is inside 

Some other folder in the download directory then the command should be cd Download/folder/ex1 also if the folder you want to open having two name like space in between then the space should be denoted by \ for example if the name of the folder is home work then the command should be cd home\work

If you want to go back then use cd ..

5.cat command

    cat command is used to display the contents of a file. For example cat hello.txt 

The contents of the hello.txt file will be displayed

6.mv-command

    mv it is similar to cut in other operating system it is same as cp command but instead of coping its content it will move the content it have two argument the first should be the source location next should be the destination

7.mkdir-command

    mkdir command is used to create a new director for example mkdir hello it will create a new folder in the current working directory it can also use to create inside the other director for example it can create new folder inside the hello folder by using mkdir /hello/hello2

If you folder need two word then the blank space is represented by \

8.rmdir-command

    rmdir  is exactly opposite to mkdir command; it is use to delete the directory but it can only delete empty directory to delete the contents of the file rm command is used for that purpose.

9.rm command

 rm command is used to delete files and directories.  Use “rm -r” to delete just the directory. Defaut It deletes both the folder and the files contained within the directory.

10.touch-command

    Touch command is used to create file it can create any type of file for example touch hello.txt

It will create an empty text file with the name hello

The post  BASIC LINUX COMMAND FOR ABSOLUTE BEGINNERS [PART-1] appeared first on Mp3 Store.

]]>
https://mp3store.in/2022/07/05/basic-linux-command-for-absolute-beginners-part-1/feed/ 0 20
HISTORY OF LINUX https://mp3store.in/2022/07/05/history-of-linux/ https://mp3store.in/2022/07/05/history-of-linux/#respond Tue, 05 Jul 2022 14:00:40 +0000 https://mp3store.in/?p=24 A history of Linux: tracing the operating system’s development from its early beginnings to its current form. this article will show the little slice of every thing in the different stages of linux . 1. INTRODUCTION     In 1991, a young computer scientist named Linus Torvalds created a new operating system that would come to be known as Linux. This open source operating system has since enjoyed a surge in popularity, and is now used by millions of people around the world. In this article, we will take a closer look at the history of Linux, and explore how it

The post HISTORY OF LINUX appeared first on Mp3 Store.

]]>
A history of Linux: tracing the operating system’s development from its early beginnings to its current form. this article will show the little slice of every thing in the different stages of linux .

1. INTRODUCTION

    In 1991, a young computer scientist named Linus Torvalds created a new operating system that would come to be known as Linux. This open source operating system has since enjoyed a surge in popularity, and is now used by millions of people around the world. In this article, we will take a closer look at the history of Linux, and explore how it has evolved over the years.

2. THE EARLY DAYS OF LINUX

    Linux was first created in 1991, when Linus Torvalds, a student at the University of Helsinki, decided to write his own operating system. Torvalds was inspired by MINIX, an operating system developed by Andrew Tanenbaum.

Torvalds began work on Linux in October of 1991, and released the first version of the operating system in December of that year. Linux was a departure from traditional operating systems, as it was based on the Linux kernel, a free and open source operating system kernel.

Linux has grown in popularity over the years, and is now used by millions of people around the world. In addition to its use as a desktop operating system, Linux is also used as a server operating system, and is popular in the world of cloud computing.

.The Linux kernel is a monolithic kernel. It is responsible for managing the system’s resources, and providing basic services to all other applications. The kernel is also responsible for security, and ensuring that the system’s resources are used efficiently.

The kernel is the first program that starts when the system boots. It is responsible for initializing the system’s hardware, and for loading the user-space programs and libraries that make up the system’s environment.

3. THE RISE OF LINUX

    Linux is a free and open-source operating system that was first developed by Linus Torvalds in 1991. Today, Linux is used by millions of people around the world and is the most popular operating system for web servers.

One of the reasons Linux is so popular is because it is very versatile. It can be used on a wide variety of devices, from servers and mainframes to desktop computers and mobile phones. Linux is also very user-friendly, especially for those who are familiar with using the command line.

Another reason Linux is so popular is because it is an open-source operating system. This means that anyone can view and modify the source code, making it easy to customize for specific needs. Linux is also highly reliable and secure, making it an ideal choice for mission-critical applications.

If you’re looking for an alternative to Windows or macOS, Linux is a great option. It’s free, user-friendly, and very versatile. Give it a try today!

4. THE CURRENT STATE OF LINUX

    Since the open nature of the linux lead to the wide adoption nearly all the servers in the world runs on the linux in other words the backend of the internet is running of the linux the enterprise adopted buy the mainstream users are not adopted by them yet since they are main attracted to the popular option but it is changing step by step more and more user are trying to use the linux operating system because they are tired of the big companies trying as they wisee os now they are drawn towards the open and privacy focused linux operating systems if you want to wet your feet on linux here is the link to the best linux distribution to try for beginners 

5. CONCLUSION

    In conclusion linux is still popular among enthusiasts as well as in the server and it will continue to improve as time goes on .

The post HISTORY OF LINUX appeared first on Mp3 Store.

]]>
https://mp3store.in/2022/07/05/history-of-linux/feed/ 0 24