Linux Tutorial For Beginners in Hindi

แชร์
ฝัง
  • เผยแพร่เมื่อ 31 ก.ค. 2024
  • Free 100$ using Digital Ocean - m.do.co/c/2f2aa100b7ee
    ► TimeStamps
    00:00 - Linux Tutorial - Introduction
    00:09 - Downloading Virtual Box
    03:19 - Downloading Ubuntu (Linux Distribution)
    04:27 - Installing Virtual Box
    05:20 - Creating a Virtual Machine
    07:10 - Starting a Virtual Machine
    07:59 - Installing Ubuntu on Virtual Machine
    09:34 - Basic Commands in Linux
    12:27 - Difference b/w Linux, UNIX & Ubuntu
    13:38 - Interfaces (CLI & GUI)
    15:46 - File system in Linux
    25:39 - Users in Linux
    30:00 - Absolute vs. Relative path
    32:07 - More commands in Linux
    44:10 - User permissions
    51:40 - Other Important Linux Commands
    53:58 - VPS Playlist Detail
    1:00:23 - Where to go from here
    In this Linux Tutorial video, I have used Ubuntu 18.04 as the OS to explain Linux OS concepts and basic Linux commands. Linux is one of the most demanded skills in the industry today and mastering the basic commands is a must for every software engineer due to the popularity of the Linux OS. This video starts with the basic installation using virtualbox and goes in depth towards the Linux file system and other concepts like users, groups and permissions.
    Complete VPS Guide Playlist: • VPS Tutorials Using Di...
    ►Click here to subscribe - / @codewithharry
    Best Hindi Videos For Learning Programming:
    ►Learn Python In One Video - • Learn Python In Hindi ...
    ►Learn JavaScript in One Video - • JavaScript Tutorial
    ►Learn PHP In One Video - • Learn Php In One Video...
    ►Machine Learning Using Python - • Machine Learning Tutor...
    ►Creating & Hosting A Website (Tech Blog) Using Python - • [Hindi] Web Developmen...
    ►Advanced Python Tutorials - • Intermediate/Advanced ...
    ►Object Oriented Programming In Python - • Object Oriented Progra...
    ►Python Data Science and Big Data Tutorials - • Python Data Science an...
    Follow Me On Social Media
    ►Website (created using Flask) - www.codewithharry.com
    ►Facebook - / codewithharry
    ►Instagram - / codewithharry
    ►Personal Facebook A/c - / geekyharis
    Twitter - / haris_is_here

ความคิดเห็น • 6K

  • @CodeWithHarry
    @CodeWithHarry  5 ปีที่แล้ว +567

    Thanks for 200+ subscribers on my new channel ProgrammingWithHarry (In English). You guyz are awesome :)
    Find it here: th-cam.com/channels/7btqG2Ww0_2LwuQxpvo2HQ.html
    Will be dropping some fresh content in English soon!

    • @Lucky_Singh720
      @Lucky_Singh720 5 ปีที่แล้ว +7

      Ap kha se ho

    • @sidharths9416
      @sidharths9416 5 ปีที่แล้ว +2

      Thank u very much🤝

    • @TheCritic108
      @TheCritic108 5 ปีที่แล้ว +2

      Bhai plz app se bat krna hai please

    • @chetanmirajkar5215
      @chetanmirajkar5215 5 ปีที่แล้ว +1

      Hi Harry, You are doing good bro. Keep it up. :) Can you please start tutorial for Linux/Unix shell scripting?

    • @rizwanpathan6512
      @rizwanpathan6512 4 ปีที่แล้ว +2

      i have watched your video and you explanation is awesome
      i want to learn kali linux in detail means i want to each and every tool which is given in list of all program how it works and whats the use of it
      are you bringing such types of videos in future
      hope you will rply to me

  • @sachinlande7554
    @sachinlande7554 2 ปีที่แล้ว +235

    Hi Harry , You are awesome teacher. I have been working in IT industry for more than 5 years but did not see anybody who explains like you. Bro good bless you

    • @adarshkashyap7402
      @adarshkashyap7402 ปีที่แล้ว +5

      I need your suggestions could u help me?

    • @shifasayyad1922
      @shifasayyad1922 ปีที่แล้ว

      Hi Sachin I need your help

    • @dharmraj51
      @dharmraj51 3 หลายเดือนก่อน

      @@shifasayyad1922

    • @SatishSharma-en2ll
      @SatishSharma-en2ll 5 วันที่ผ่านมา +1

      Sachin bhaiya I want referral

    • @saryy_
      @saryy_ 5 วันที่ผ่านมา

      ​@@SatishSharma-en2ll😂

  • @HemantShivalkar
    @HemantShivalkar 10 หลายเดือนก่อน +22

    37:42 Answer : The `ls` command is used to list the contents of a directory in Linux and other Unix-based operating systems. The `-l` option tells `ls` to use a long listing format, showing permissions, ownership, size, and modification date for each file¹². The `-a` option tells `ls` to include entries whose names begin with a dot (`.`), which are normally hidden¹⁶. The `-r` option tells `ls` to reverse the order of the sort¹⁶. The `-t` option tells `ls` to sort by modification time, newest first¹⁷. Combining these options, `ls -lart` lists all files in the specified directory, including hidden files, in long format, sorted by modification time in ascending order (oldest first).

  • @RealRajatShahare
    @RealRajatShahare 4 ปีที่แล้ว +36

    I don't have knowledge about Linux but I can atleast understand the basics of Linux because of your tutorial. Thank you bro!

  • @namahkalbande4274
    @namahkalbande4274 3 ปีที่แล้ว +9

    I am Namah Kalbande from Pune. I have accessed your playlists of Java Python and even Html. I love you as a teacher.

  • @gamescammer1426
    @gamescammer1426 ปีที่แล้ว +90

    # Most used Linux Commands
    ~ mkdir --> To make A File or Folder.
    ~ cd --> To Access particular File or Folder.
    ~ touch --> To create a Blank File.
    ~ mv --> To move a File or Folder.
    ~ cp --> To copy a File or Folder.
    ~ pwd --> To know the present Directory.[print working directory]
    ~ ls --> Shows the list of the Directory.
    ~ ls -R --> Shows the list of directory also the folders in the directory.
    ~ touch .(filename) --> To Create a Hidden File.
    ~ ls -a --> Shows the list of directory with the Hidden files.
    ~ ls -l --> Gives the details of the Creates Files and Folders.
    ~ ls -r --> Reverse the list of files and folders.
    ~ ls -t --> Sort the files and folders by a time.
    ~ apt --> To Install software packages.
    ~ sudo apt update --> Updates the list of Software that can be updated to the User.
    ~ sudo apt upgrade --> Update the softwares.
    ~ clear --> Clears the Terminal.
    ~ history --> Prints the Commands used.
    ~ echo --> To print any String.[Also 'printf' can be used]
    ~ chmod --> To give permission between User Group and Owner.[it can be done for particular file]
    ~ chgrp -->
    ~ top --> Shows the top Process that consumes most of the resources.
    ~ ps --> Shows all the Processes running.
    ~ ps -a -->
    ~ ps -ef -->
    ~ kill [PID] --> Kills the particular process.
    ~ vim --> Use to Edit Any file within terminal.[Needed to be installed first]
    -------------------------------------------------------------------------------
    # Users in Linux :-
    1. Regular User --> This Users only have Access to their own directory.
    2. Root User [Super User]--> This Users have File Access to the file System.[ADMIN]
    sudo (Command) --> This command is use by the User who Regular User but has the access to the Root.
    sudo su (Command) --> Not recommended to use this Command.
    -------------------------------------------------------------------------------
    # Absolute vs Relative Path
    Linux has a Tree Structured file system.
    cd /home/kali/Pratik..... --> Absolute Path.
    cd Pratik --> Relative Path.
    -------------------------------------------------------------------------------

  • @Being-a-Kalim
    @Being-a-Kalim ปีที่แล้ว +3

    Hi Sir i m kalim khan from Pakistan
    I watched your videos from around 4 years and recently i started your linux one video course
    and waited for your full linux course

  • @aaronstanley5867
    @aaronstanley5867 ปีที่แล้ว +6

    Great short little course for absolute beginners... completed smoothly!

  • @abhisekhmukherjee4408
    @abhisekhmukherjee4408 5 ปีที่แล้ว +6

    Eagerly waiting for your Linux complete course...your Teaching skill is way too good. Thank you Bhai.

  • @9891833795
    @9891833795 ปีที่แล้ว +19

    Hello Harry Bhai, I'm Shubham Kaushik from Gurugram.
    Your courses are really awesome and career-building! We all are eagerly waiting for the full-fledged course of LINUX.
    Thanks a Bro :)

  • @SaleenmAh
    @SaleenmAh ปีที่แล้ว +36

    Am Zahid Siddiqui from Pakistan, Thanks a lot for learning us programming languages, power full tools and much more. Stay happy Sir

  • @TARUNSHARMA-nb3bd
    @TARUNSHARMA-nb3bd ปีที่แล้ว +16

    Your courses are really awesome and career-building! We all are eagerly waiting for the full-fledged course of LINUX.

  • @PawanKumar-te6sp
    @PawanKumar-te6sp 3 ปีที่แล้ว +11

    Bro I am so excited for your full fledged Linux tutorial video.
    Plz 🙏 make it as soon as possible.❤️

  • @nishitjadiya
    @nishitjadiya ปีที่แล้ว +7

    Hello Harry Bhai, I'm Nishit Jadiya from Indore
    Your courses are really awesome and career-building! We all are eagerly waiting for the full-fledged course of LINUX.
    Thanks Bhai :)

  • @prabodhpatil-xd4nl
    @prabodhpatil-xd4nl หลายเดือนก่อน

    best coding teacher in world i have seen i am just 11years old and i learn html,css,js,python,java

  • @entertainmentzone4416
    @entertainmentzone4416 ปีที่แล้ว +1

    Hello, Harry sir i am abhishek yadav from varanasi. You are great, you teach any topic very easy and understand to anyone. So you are a good teacher.
    Thank you so much❤❤

  • @nileshdatkhile
    @nileshdatkhile 4 ปีที่แล้ว +17

    From- Pune(Maharashtra)
    You are brilliant keep it up bro 👍

  • @vikings24
    @vikings24 6 หลายเดือนก่อน +1

    Sunday enjoy with your Linux video. I am just thinking from many days to learn but today I'm done with you . Thnx

  • @mihirpatel1340
    @mihirpatel1340 5 ปีที่แล้ว +7

    I recently installed Linux and within few days your video came out, thank you so much.

  • @jbhsmeta
    @jbhsmeta 3 ปีที่แล้ว +6

    Harry, Your teaching style is awesome. Heartfelt thanks to you. Please make full course on Linux. From Kolkata.

  • @syedabdulrahimk
    @syedabdulrahimk ปีที่แล้ว +1

    Thank you dada... it was an awesome course... I have completed word to word... thanks bro... ❤

  • @user-rv6qi7nj5u
    @user-rv6qi7nj5u ปีที่แล้ว

    Love you Harry. Great teacher. Linux ka full video mene bahut dhunda mil nahi rha.

  • @subhamshaw1726
    @subhamshaw1726 3 ปีที่แล้ว +98

    l - LONG LIST FORMAT
    a - LIST ALL FILES INCLUDING FILES STARTING WITH "."
    r - SORT IN REVERSE ORDER
    t - SORT ACCORDING TO MODIFICATION TIME

  • @TVFocusFuel365
    @TVFocusFuel365 2 ปีที่แล้ว +7

    hows it possible for a person having these many skills and mastering them ,its a very huge thing to say thankyou harry bhaya for impacting millions of students teaching teaching all the resources they needed .thank you thanks a lot brother . Big Love from Hyderabad,Telangana

  • @samarjeetsingh6916
    @samarjeetsingh6916 4 หลายเดือนก่อน +2

    1. ls -l is used to show in the long format like with complete directory etc.
    2. ls -r is used to show in the reverse sort
    3. ls -a is used to show all the directories
    4. ls -t is used to show sorting by time
    so ls -lart will show in the content such that it includes even hidden files, they are sorted by time but in reverse order and also they are in their long form

  • @sabihakhan2882
    @sabihakhan2882 11 หลายเดือนก่อน +1

    hello harry bhai , I am Sabiha from kota
    Your courses are really awesome and career-building! We all are eagerly waiting for the full-fledged course of LINUX.

  • @agyanshuvarshney6499
    @agyanshuvarshney6499 3 ปีที่แล้ว +623

    Yes brother we want a full course on Linux(Ubuntu)

    • @aruntyagi6643
      @aruntyagi6643 3 ปีที่แล้ว +21

      Bhai aaya kya full course Please link send kr do

    • @amanrajfr
      @amanrajfr 3 ปีที่แล้ว +7

      Yes Bhai

    • @rakeshv8500
      @rakeshv8500 3 ปีที่แล้ว +10

      Yes, sir we need full course for developing our linux skills

    • @cubingwithabhinav8517
      @cubingwithabhinav8517 3 ปีที่แล้ว +5

      Kali Linux

    • @AvinashKumar-xj4sm
      @AvinashKumar-xj4sm 2 ปีที่แล้ว +1

      Linux ka fayda jab windows hai to

  • @Agent839
    @Agent839 2 ปีที่แล้ว +15

    Good to see more and more people making and spreading content on GNU/Linux. Been using it since like 1 year and I have just forgotten about Windows forever now. Started off with Linux Mint (an Ubuntu based distro), then Manjaro and currently Arch :)

    • @devs9776
      @devs9776 2 ปีที่แล้ว

      Bro i also want to work on linux in .. currently i am in windows want to install linux Ubuntu.pls yr wil u tell me how to install that linux i mean any right yt video for that and also i i got switched to linux what will happen to my windows 10 . Will i able to switch back to window 10 again if want? Help me bro

    • @pranavkharat8245
      @pranavkharat8245 2 ปีที่แล้ว

      @@devs9776 hey bro i would recommend you to get a 8 gb usb, install linux mint(for beginnner) in it and use it on your pc as a live os and whenever u need windows back you can use the hard disk in which your windows is installed.

    • @69thalienfrommars25
      @69thalienfrommars25 2 ปีที่แล้ว

      @@devs9776 you can dualboot so it will ask at every startup which os u want

    • @technologymad9253
      @technologymad9253 8 หลายเดือนก่อน

      I have recently installed ubuntu and I am loving it.. I have no plans of going back to windows. ubuntu is really awesome..

  • @cold_messss
    @cold_messss 9 หลายเดือนก่อน +1

    Harryyyy... thanku so much..u are truly Life saviour 😢i wanted to learn all this but was not getting how...now i know

  • @amarparadkar6578
    @amarparadkar6578 7 หลายเดือนก่อน

    hello harry bhaii , I'm Amar Paradkar from thane Your courses are really awesome and career-building! We all are eagerly waiting for the full-fledged course of LINUX.

  • @shreekant8
    @shreekant8 4 ปีที่แล้ว +41

    cool dude with pure hindi. Rare combination to see. Overall the video is nice.

  • @vinaygundu9867
    @vinaygundu9867 20 วันที่ผ่านมา +1

    very beautiful course . I really understood everything. Thanks Harry

  • @user-jq1st8si8x
    @user-jq1st8si8x 4 หลายเดือนก่อน

    you are the best bro .............watching again all your videos.really worth it....explained very well.....................

  • @vaibhavvishwakarma9635
    @vaibhavvishwakarma9635 2 ปีที่แล้ว +66

    37:51 ls -lart --> Shows the overall files and folders including hidden files on the path, and shows the permission of file accessing.
    ls -l --> Shows all files and folders on the path.
    ls -r --> Reverse the list of files and folders
    ls -t --> Sort the files and folders by a time.

    • @undivided_bharat
      @undivided_bharat 2 ปีที่แล้ว

      read and write access?

    • @trishitmaji3208
      @trishitmaji3208 2 ปีที่แล้ว +1

      We can also use ls -al

    • @maskladyvlogs
      @maskladyvlogs ปีที่แล้ว

      @@trishitmaji3208 not ls -al
      correct one is ls - la = show all hidden files and folders

  • @sivashish5143
    @sivashish5143 3 ปีที่แล้ว +3

    Thankyou so much sir i have learnt so many things about linux in this video. This was first time I have used the Linux operating system and it was really very interesting because of your tutorial thanks from deep of heart.
    Yours big fan
    Sivashish

  • @Phenomenalsanjeev16
    @Phenomenalsanjeev16 ปีที่แล้ว

    Nice doing broh..., it literally would work who are not aware about things genuinely and get trapped very easily, superb ✔️✔️💯

  • @Theanonymousyou
    @Theanonymousyou ปีที่แล้ว

    Thanks Bhaai-Awesome efforts!

  • @Aashutosh_kumar
    @Aashutosh_kumar 3 ปีที่แล้ว +7

    Yes we want full linux course as soon as possible.
    Because by this video there are many questions arising in mind about other possible operation in Linux.

  • @ashishshorts8038
    @ashishshorts8038 ปีที่แล้ว +5

    25:02 according to bard
    The basic ccommonds of linux
    cd - This command is used to change directories. For example, to change to the "home" directory, you would type "cd ~".
    ls - This command is used to list the contents of a directory. For example, to list the contents of the current directory, you would type "ls".
    pwd - This command prints the current working directory.
    mkdir - This command creates a new directory. For example, to create a new directory called "my_directory", you would type "mkdir my_directory".
    rmdir - This command removes a directory. For example, to remove the directory called "my_directory", you would type "rmdir my_directory".
    touch - This command creates an empty file. For example, to create an empty file called "my_file", you would type "touch my_file".
    cat - This command displays the contents of a file. For example, to display the contents of the file called "my_file", you would type "cat my_file".
    cp - This command copies a file. For example, to copy the file called "my_file" to a new file called "my_copy", you would type "cp my_file my_copy".
    mv - This command moves or renames a file. For example, to move the file called "my_file" to a new directory called "my_directory", you would type "mv my_file my_directory".
    rm - This command removes a file. For example, to remove the file called "my_file", you would type "rm my_file

  • @mukuldubey1491
    @mukuldubey1491 3 ปีที่แล้ว +9

    It's better to give permission using symbolic method instead of number.
    Nice video 👍👍

  • @harshanand58
    @harshanand58 10 หลายเดือนก่อน

    Hi Harry bhai I am Harsh Anand from Agra, Uttar Pradesh. Your courses are really awesome for building and upgrading our skills

  • @krishnamohanmandal1676
    @krishnamohanmandal1676 ปีที่แล้ว

    Great video, I learned a lot from this
    Thank you Harry bhai...

  • @himanshu_rohil
    @himanshu_rohil 3 ปีที่แล้ว +49

    Hello Harry Bhai, I'm Himanshu Rohil from Mumbai.
    Your courses are really awesome and career-building! We all are eagerly waiting for the full-fledged course of LINUX.
    Thanks a ton Bro :)

    • @s.d8756
      @s.d8756 ปีที่แล้ว

      Hi Himanshu Rohli, I am S.D and I am from India. I think your name is misspelled. It should be "kohli" not "rohli"

    • @himanshu_rohil
      @himanshu_rohil ปีที่แล้ว

      @@s.d8756 hello! It's named correctly lol, don't worry. My surname is rohil only

    • @vikas3916
      @vikas3916 ปีที่แล้ว

      @@himanshu_rohil hey what are you doing Himanshu?

  • @kanchangandhi1200
    @kanchangandhi1200 3 ปีที่แล้ว +6

    chmod explanation was superb , got cleared all my doubts ! Thank you :-)

  • @reshamamanat3143
    @reshamamanat3143 ปีที่แล้ว +1

    I'm from Pakistan I saw your video its great for beginners learning

  • @VishalKumarMoulik
    @VishalKumarMoulik 4 หลายเดือนก่อน +1

    Thankuu brother for this. yes i want full linux course..

  • @ghanshyamvishwakarma2343
    @ghanshyamvishwakarma2343 2 ปีที่แล้ว +5

    hey bro myself Ghanshyam Vishwakarma from Mumbai- City of Dreams
    Your courses are really awesome and career-building! We all are eagerly waiting for the full-fledged course of LINUX.
    Thanks a ton Bro :)

  • @saharayub4448
    @saharayub4448 ปีที่แล้ว +13

    Quiz: 37:30
    $ ls -l use a long listing format
    $ ls -a don't ignore entries starting with .
    $ ls -r reverse order while sorting
    $ ls -t sort by modification time, newest first
    $ ls -lart for using above commands all at once

    • @ahsanasif8819
      @ahsanasif8819 ปีที่แล้ว

      Thanks. By the way, what is the purpose of your Linux training?

  • @abhattacharya88
    @abhattacharya88 3 ปีที่แล้ว +27

    This guy is working so hard, so that we learn the basics well. Kudos to you @CodeWithHarry .

  • @salmananwar6728
    @salmananwar6728 ปีที่แล้ว

    Thank you so much Harry bro. Really approciate your efforts.

  • @ZaherruddinShaik
    @ZaherruddinShaik 27 วันที่ผ่านมา

    ویڈیو اچہی تہی۔ معلومات میں اصافہ ہواہ۔ 👌👋🔚🌻🌸۔۔

  • @sanketgaikwad3552
    @sanketgaikwad3552 2 ปีที่แล้ว +4

    Thank you so much for covering everything from the beginning. Loved it !

  • @sketchy2673
    @sketchy2673 3 ปีที่แล้ว +143

    Point to be noted: 1. You must have java runtime environment to run virtualbox 2. You must have virtualization enabled from pc bios 3. Your virtualbox ram cannot exceed half of your pc ram

    • @subhambairagi5642
      @subhambairagi5642 2 ปีที่แล้ว +7

      My pc have 4.0 GB ram (3.9 GB usuable) and i have allocated 2.0 GB to the vm, it is working.🤔

    • @wut9167
      @wut9167 2 ปีที่แล้ว +1

      @@subhambairagi5642 use hyper V instead of Virtualbox it's great

    • @HAMZAKHAN-sb8py
      @HAMZAKHAN-sb8py 2 ปีที่แล้ว +1

      ​@@wut9167 how about we install ubuntu through wsl on windows ? will there be any drawbacks ??

    • @sarvesh_soni
      @sarvesh_soni 2 ปีที่แล้ว +2

      3rd point is wrong

    • @sayanjitb
      @sayanjitb 2 ปีที่แล้ว +1

      @@subhambairagi5642 isn't it just half of the system ram? So according to the 3rd point it should work.

  • @qasimabbasi.
    @qasimabbasi. ปีที่แล้ว

    Thank you so much harry Bai!
    Love you from Pakistan 🇵🇰..
    Now I know much about Linux!..

  • @RiteshKumar-pp8zh
    @RiteshKumar-pp8zh ปีที่แล้ว

    Hello Harry Bhai I am Ritesh from Bihar. Thank you very much for your super support for making us learn.

  • @amalgupta5095
    @amalgupta5095 4 ปีที่แล้ว +5

    Sir. Very nice tutorial! Please inform whenever you are going to upload the complete Linux tutorial as you said. It would be very helpful.

  • @ravirajput396
    @ravirajput396 4 ปีที่แล้ว +5

    I want to go in the core IT ,so I am trying to learn about various new things I.e SQL, Linux , python..as I am from non IT background .This video is helpful , waiting for your video on devops.

  • @sayyedrabbani972
    @sayyedrabbani972 ปีที่แล้ว

    Hi harry bhai Sayyed Rabbani from mumbai ...Thanks alot have learned python from ur channel now going with linux .

  • @user-gu5dj1xv8e
    @user-gu5dj1xv8e 6 หลายเดือนก่อน

    what a beast! this channel is a GEM for beginners

  • @tanmaykhatri6061
    @tanmaykhatri6061 2 ปีที่แล้ว +19

    Hello Harry Bhai, I'm Tanmay Khatri
    Your courses are really awesome and career-building! We all are eagerly waiting for the full-fledged course of LINUX.
    Thanks a ton Bro :)

  • @sayakarar
    @sayakarar 3 ปีที่แล้ว +156

    Time stamp: 37:46
    ls -lart command lists all the directories in a list format along with the time of last modification, read and write permissions, permitted user access and total contents in each.

  • @just_believer
    @just_believer ปีที่แล้ว +1

    Harry bhai you are awesome 🔥🔥🔥 big fan sir from uttarakhand 😍

  • @theyoutubeessentials3538
    @theyoutubeessentials3538 9 หลายเดือนก่อน

    Thankyou so much Harry hai for such clear info shared regarding linux. Thanks and Love u a lot bro❤️

  • @rahulagni9016
    @rahulagni9016 2 ปีที่แล้ว +13

    Hello Harry Bhai, I'm Rahul agnihotri from bhopal.
    Your courses are really awesome and career-building! We all are eagerly waiting for the full-fledged course of LINUX.
    Thanks a Bro :)

  • @s.k3518
    @s.k3518 2 ปีที่แล้ว +13

    Hi Harry,
    Could you please provide full Linux course video link?. The way of your teaching is awesome never seen you type of teacher over TH-cam.

  • @vatsvlogs6110
    @vatsvlogs6110 8 หลายเดือนก่อน +3

    Smjhke dusron ko samjhana is an art

  • @yashwantraomeshram9315
    @yashwantraomeshram9315 11 หลายเดือนก่อน

    Yas ok Chhattisgarh se
    We want full course of linux👌👍👍👌

  • @mohitagarwall
    @mohitagarwall ปีที่แล้ว +3

    Hello Harry Bhai, I'm Mohit Agarwal from Hyderabad
    Your courses are really awesome and career-building! We all are eagerly waiting for the full-fledged course of LINUX.
    Thanks Bhai :)

  • @ashishmishra5448
    @ashishmishra5448 2 ปีที่แล้ว +3

    Sir please make a full Linux course video from beginner to advanced level so that we can deeply understand about Linux
    Thank you very much for make this video.

  • @spicy2602
    @spicy2602 ปีที่แล้ว

    Thank you very much bro. Waiting for complete course on linux.❤️

  • @81_monish_roy74
    @81_monish_roy74 5 หลายเดือนก่อน

    Thanks for such a clear explanation

  • @hemanthreddy7335
    @hemanthreddy7335 3 ปีที่แล้ว +4

    Dude, I made a joinBot that joins online classes automatically. Thanks to your python course and for explaining how to install Virtual Box.
    @CodewithHarry bro, keep up with the new ideas. Keep inspiring us.👍

    • @acidopcodes
      @acidopcodes 3 ปีที่แล้ว

      Vai GitHub ka link dedo 😂

  • @MrParshant007
    @MrParshant007 3 ปีที่แล้ว +5

    This is simply awesome. Harry bro you are the best.

  • @muzammilkhan9192
    @muzammilkhan9192 ปีที่แล้ว

    hey Hi Harry I'm Muzammil and I'm from Bhopal and... you are doing awesome :)

  • @user-ex2nt7it6z
    @user-ex2nt7it6z ปีที่แล้ว

    waiting for full linux course,u r awesome harry

  • @ajitsekhar2716
    @ajitsekhar2716 3 ปีที่แล้ว +14

    ls -ltr file* : This command just list the contents of the current directory in the long listing format ( -l ), sorted by modification time ( -t ) in reverse order ( -r ) of all files and directories beginning with file* .

    • @PoojaVerma-vz5bn
      @PoojaVerma-vz5bn 3 ปีที่แล้ว

      U can also use" ls -l" or " ll " its used for long listing files and dir

  • @moinulhuqqureshi8773
    @moinulhuqqureshi8773 3 ปีที่แล้ว +13

    Till now I was using the English language to learn Linux but the first time by watching this video, my whole basics concept got clear.
    I am also interested in your upcoming Linux course.

  • @vii2sharma
    @vii2sharma 11 หลายเดือนก่อน

    Hello Harry, thank you for this amazing tutorial.

  • @user-jk6uy4xp3s
    @user-jk6uy4xp3s 4 หลายเดือนก่อน

    Awesome revision!

  • @Pawanjangra160
    @Pawanjangra160 4 ปีที่แล้ว +3

    Bro...awesome video for beginners.
    Please share the full course as well, that will be really helpful.
    Thanks once again.

  • @Aashee0009
    @Aashee0009 2 ปีที่แล้ว +3

    Hello Harry bhaiya, I'm Ashima Kowdo Form Chhattisgarh...your course are really awesome and you're awesome teacher, please make a full course on linux including "Bash Scripting" 🙏🙏🙏.

  • @rk2342
    @rk2342 ปีที่แล้ว

    Hello sir, I'm Rinki from Delhi.
    I really love the way you explain it. Thank you ❤️ sir.

  • @ali.swatian
    @ali.swatian ปีที่แล้ว

    Love and big respect from Pakistan, bro. Really good work.

  • @sharankumar917
    @sharankumar917 4 ปีที่แล้ว +98

    Hey brother, thanks for sharing this Tutorial. As said, when are you going to upload the complete Linux Tutorial ? Will be a great help!

    • @muktarhossain1260
      @muktarhossain1260 3 ปีที่แล้ว

      @Yousuf Ali no this is only terminal based tutorial we need more

    • @aryaninsync
      @aryaninsync 3 ปีที่แล้ว +1

      @Yousuf Ali bhai tumhe sachme lagta hai linux 1hour ka hai course h

    • @nidhipachouri
      @nidhipachouri 3 ปีที่แล้ว

      Sir what is complete Linux learning link I m watching from uk

    • @nausheensiddiqui8745
      @nausheensiddiqui8745 2 ปีที่แล้ว

      @@nidhipachouri Wow you are so lucky to reside in UK.

  • @soofib1
    @soofib1 3 ปีที่แล้ว +5

    You are doing great job by teaching us. You are great instructor .May god bless you . Thank you
    I m in USA my name is Nasir

    • @mohdazeem4834
      @mohdazeem4834 2 ปีที่แล้ว

      Sir you are doing job in linux

  • @swarajkokare715
    @swarajkokare715 ปีที่แล้ว

    thank you brother for this course

  • @PrathamMandal-hj7zo
    @PrathamMandal-hj7zo ปีที่แล้ว

    Yes sir,
    We want full course of Linux.

  • @amankunwar4099
    @amankunwar4099 3 ปีที่แล้ว +4

    kamal bhai aap hai harry please jaldi se hindi main linux ka full course upload karo

  • @sidharthbhardwaj641
    @sidharthbhardwaj641 4 ปีที่แล้ว +114

    Yaar aap mastt ho
    Aapko toh million subscribers milne chaiye
    Mai abhi class 10 me hu
    Software engineer banna chata hu

    • @shoaibakhann93
      @shoaibakhann93 4 ปีที่แล้ว +5

      Abhi time hai bhaglo

    • @unstoppable9668
      @unstoppable9668 4 ปีที่แล้ว +10

      mai college mai hoon hum first year mai yeh seekh rahe hain ,tumne 10 mein seekh li ,well done bro ,tumhara goal clear hai,tumne 25 percent placement yahin secure kar liya nice ,continue in the same way,learn atleat one computer language before college. God bless!!!

    • @sidharthbhardwaj641
      @sidharthbhardwaj641 4 ปีที่แล้ว +5

      @@unstoppable9668 thanks

    • @harharmahadev7036
      @harharmahadev7036 4 ปีที่แล้ว +3

      Me bhi class 9 me hu

    • @pranjalpathak4498
      @pranjalpathak4498 4 ปีที่แล้ว +12

      Main class 1 me hu... Mera kitna secure ho gya placement?

  • @rishabhsharma4300
    @rishabhsharma4300 7 หลายเดือนก่อน

    Very well explained, thanks Bro 👍

  • @thesoulofindiangamers
    @thesoulofindiangamers 6 หลายเดือนก่อน

    Thanks for this useful information !

  • @SureshKumar-dw1hm
    @SureshKumar-dw1hm 3 ปีที่แล้ว +7

    I wish to join linux course. It was nice to go through this clip.

  • @cricbolly3252
    @cricbolly3252 3 ปีที่แล้ว +4

    La -lart show all hidden file(la) in reverse order(r) acc to time(t)
    Means the file which u create know you can view in the last of the list

  • @swapnilchilwant174
    @swapnilchilwant174 ปีที่แล้ว

    Thank you so much sir..😁👍

  • @sunilnakrani3244
    @sunilnakrani3244 ปีที่แล้ว

    Hello Harry Bhai 😊 i m sunil from raipur your courses are really awesome and your video is very easy to understand thank you bro 🙏🙏

  • @satyamdixit5916
    @satyamdixit5916 5 ปีที่แล้ว +36

    Bhai competitive programming or placement preparation se related videos....

  • @asbishen
    @asbishen 4 ปีที่แล้ว +80

    l - list long listing
    a - list all
    r - reverse sorting
    t - arrange by time

  • @abdulmateen7486
    @abdulmateen7486 11 หลายเดือนก่อน

    Excellent lecture. Hats off

  • @SantoshYadav-nh5qf
    @SantoshYadav-nh5qf ปีที่แล้ว

    Hello bhai I am santosh yadav from prayagraj uttar Pradesh your Linux course really help full

  • @shwetarakshe4396
    @shwetarakshe4396 3 ปีที่แล้ว +4

    This is amazing. Thank you.
    Shweta
    Mumbai