Linux Tutorial For Beginners in Hindi

Поделиться
HTML-код
  • Опубликовано: 27 ноя 2024

Комментарии • 6 тыс.

  • @CodeWithHarry
    @CodeWithHarry  5 лет назад +584

    Thanks for 200+ subscribers on my new channel ProgrammingWithHarry (In English). You guyz are awesome :)
    Find it here: ruclips.net/channel/UC7btqG2Ww0_2LwuQxpvo2HQ
    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 5 лет назад +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 года назад +267

    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

  • @Being-a-Kalim
    @Being-a-Kalim Год назад +16

    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

  • @RealRajatShahare
    @RealRajatShahare 4 года назад +44

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

  • @samarjeetsingh6916
    @samarjeetsingh6916 8 месяцев назад +8

    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

  • @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.

  • @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

  • @HemantShivalkar
    @HemantShivalkar Год назад +27

    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).

  • @agyanshuvarshney6499
    @agyanshuvarshney6499 3 года назад +688

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

  • @vaibhavvishwakarma9635
    @vaibhavvishwakarma9635 2 года назад +68

    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 2 года назад

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

  • @mihirpatel1340
    @mihirpatel1340 5 лет назад +7

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

  • @saharayub4448
    @saharayub4448 2 года назад +15

    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?

  • @gamescammer1426
    @gamescammer1426 Год назад +150

    # 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.
    -------------------------------------------------------------------------------

  • @Shubhamm.k
    @Shubhamm.k 2 года назад +18

    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 :)

  • @subhamshaw1726
    @subhamshaw1726 3 года назад +103

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

  • @prabodhpatil-xd4nl
    @prabodhpatil-xd4nl 5 месяцев назад

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

  • @shreekant8
    @shreekant8 4 года назад +43

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

  • @nileshda96
    @nileshda96 5 лет назад +17

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

  • @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❤❤

  • @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.

  • @PawanKumar-te6sp
    @PawanKumar-te6sp 4 года назад +12

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

  • @asbishen
    @asbishen 4 года назад +81

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

  • @ADARSHKUMARVERMA-e5w
    @ADARSHKUMARVERMA-e5w 11 дней назад

    Hi Harry sir I am adarsh and I live Lucknow. I am read full course in Linux.🙏

  • @himanshu_rohil
    @himanshu_rohil 3 года назад +50

    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 2 года назад

      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 2 года назад

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

    • @vikas3916
      @vikas3916 2 года назад

      @@himanshu_rohil hey what are you doing Himanshu?

  • @nishitjadiya
    @nishitjadiya 2 года назад +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 :)

  • @ashishshorts8038
    @ashishshorts8038 Год назад +6

    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

  • @sayakarar
    @sayakarar 3 года назад +155

    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.

  • @aaronstanley5867
    @aaronstanley5867 Год назад +7

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

  • @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

  • @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?

  • @abhisekhmukherjee4408
    @abhisekhmukherjee4408 5 лет назад +6

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

  • @raajthegamer
    @raajthegamer 5 месяцев назад +2

    ls - lart :-
    l - long list
    a - include hidden files
    r - reverse order
    t - sort by time
    Gives you a full list with files in order by time of creation/last write with most recent file last in list.

  • @vengeance9047
    @vengeance9047 3 года назад +9

    This legend deserves trillions of subscribers 🔥🔥🔥🔥🔥🔥🔥

    • @anonymousperson9100
      @anonymousperson9100 3 года назад +3

      which is more than the population of whole world.

    • @vengeance9047
      @vengeance9047 3 года назад +2

      @@anonymousperson9100 agar Harry bhai ho to kuch bhi ho sakta hai, cause harry bhai is harry bhai 🔥🔥🔥🔥

    • @anonymousperson9100
      @anonymousperson9100 3 года назад +1

      @@vengeance9047 you are right !!

  • @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.

  • @Agent839
    @Agent839 3 года назад +16

    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 3 года назад

      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 Год назад

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

  • @funworld8379
    @funworld8379 23 дня назад

    37:50
    1. ls -t:
    • Lists files and directories sorted by modification time, with the most recently modified files at the top.
    2. ls -r:
    • Lists files and directories in reverse order, usually alphabetically, but can combine with other options to reverse other sorts (like modification time).
    3. ls -a:
    • Lists all files, including hidden files (files beginning with a dot .), which are usually not shown by default.
    4. ls -l:
    • Lists files and directories in long format, providing detailed information such as permissions, number of links, owner, group, size, and modification date.

  • @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.

  • @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.

  • @hemanthreddy7335
    @hemanthreddy7335 4 года назад +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 😂

  • @rk2342
    @rk2342 Год назад

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

  • @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

  • @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 RUclips.

  • @kanchangandhi1200
    @kanchangandhi1200 4 года назад +6

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

  • @syedabdulrahimk
    @syedabdulrahimk Год назад +1

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

  • @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 4 года назад

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

    • @aryaninsync
      @aryaninsync 4 года назад +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.

  • @ghanshyamvishwakarma2343
    @ghanshyamvishwakarma2343 3 года назад +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 :)

  • @jbhsmeta
    @jbhsmeta 3 года назад +6

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

  • @Scribble.28
    @Scribble.28 Год назад

    I don't understand how people unlike this content, are they jealous

  • @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

  • @adityamukherjee3620
    @adityamukherjee3620 3 года назад +11

    Name : Aditya Mukherjee
    I am eagerly waiting for the course on linux.

  • @satyamdixit5916
    @satyamdixit5916 5 лет назад +36

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

  • @sajawalali6163
    @sajawalali6163 Год назад +1

    Hello harry Bhai i am sajawal Ali from Lahore, Pakistan your videos are awesome ❤️

  • @mukuldubey1491
    @mukuldubey1491 3 года назад +9

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

  • @abhattacharya88
    @abhattacharya88 3 года назад +27

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

  • @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 :)

  • @amankunwar4099
    @amankunwar4099 4 года назад +4

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

  • @rabiahmed7469
    @rabiahmed7469 Год назад

    I am from Pakistan your way of teaching is brilliant

  • @ajittorane
    @ajittorane 5 лет назад +9

    1)MS DOS,2) DATABASE MANAGEMENT WITH ACCESS, 3)CONFIGURING AND USING NETWORKS,4)INTERNET, AND 5) DESIGNING STATIC WEB PAGES PE VIDEO BANEYA SIR

  • @omideccan
    @omideccan 4 года назад +16

    Harry sir, when you will post Linux full tutorial.

  • @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

  • @Rohankhan-yf4br
    @Rohankhan-yf4br Месяц назад

    Hello Bata, I am from Pakistan, My name Haroon, i like your tutorial videos very much and often see them, thank you for making such good tutorial videos

  • @JiteshChaturvedy
    @JiteshChaturvedy 3 года назад +6

    Harry bhai Make a full course on Linux(if possible kali Linux) We want it as soon as possible

    • @FoEyt
      @FoEyt 3 года назад

      Dude the things u do on kali linux can be done in ubuntu also idk why everyone wants to learn kali linux it's just the same

    • @JiteshChaturvedy
      @JiteshChaturvedy 3 года назад

      @@FoEyt Bro I m using Kali as my secondary OS that's why I said that else I just want to learn linux and ubuntu is also my preference coz it'll help during project deployment in servers

    • @FoEyt
      @FoEyt 3 года назад

      @@JiteshChaturvedy i guess zorin os would be best if u are switching from windows zorin os is basically ubuntu but u know since ubuntu is open source so zorin os is the best modified ubuntu

  • @cloudpachehra1113
    @cloudpachehra1113 5 лет назад +4

    Harry bhai... Linux course.. Upload karo bhai ji.... It was awesome guru... Mast... Linux ka course plz plz

  • @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.

  • @muhammadjunaid3193
    @muhammadjunaid3193 5 месяцев назад

    1.ls -R (shows all folders and files)
    2.ls -l (shows all the permissions)
    3.ls -a (shows all hidden files)
    4.list information about files and directories within the file system.

  • @shwetarakshe4396
    @shwetarakshe4396 4 года назад +4

    This is amazing. Thank you.
    Shweta
    Mumbai

  • @SureshKumar-dw1hm
    @SureshKumar-dw1hm 4 года назад +7

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

  • @ShakeelAhmad-xg8or
    @ShakeelAhmad-xg8or 17 дней назад +5

    who is watching in 2024-25

  • @RiteshKumar-pp8zh
    @RiteshKumar-pp8zh Год назад

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

  • @sahelikantha93
    @sahelikantha93 3 года назад +8

    yes! the linux full tutorial?? and what would be the length of that ?

  • @SakshiSharma-oj5os
    @SakshiSharma-oj5os 4 года назад +12

    16:09 it's present working directory.

  • @sanketgaikwad3552
    @sanketgaikwad3552 3 года назад +4

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

  • @harshanand58
    @harshanand58 Год назад

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

  • @MrParshant007
    @MrParshant007 3 года назад +5

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

  • @PradeepKumar-qk3gh
    @PradeepKumar-qk3gh 3 года назад +7

    Dear, When will you post complete Linux tutorials.

  • @VS.VishalSharma
    @VS.VishalSharma 5 лет назад +4

    Ls -a = shows hidden file
    Ls -l = Detailed file information
    Ls -r = Lists contents of the specified directory and all its sub-directories (recursive listing).
    Ls -t = i can't find it ☹️

  • @cold_messss
    @cold_messss Год назад +1

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

  • @binayclasses3798
    @binayclasses3798 5 лет назад +6

    Name-shubham
    Degree-12 passout
    Interest-computer programming
    Address-jamshedpur jharkhand
    Apka bhut thank you bhiya course ke liye...🙏

  • @raakuu
    @raakuu 3 года назад +4

    10:32 linux is a kernel..harry bhai ne mistakenly os keh diya..❤️

    • @abduksam
      @abduksam 3 года назад

      Btw khaali linux ek command line wali linux de gi.

    • @raakuu
      @raakuu 3 года назад

      @@abduksam khaali linux??

    • @abduksam
      @abduksam 3 года назад

      @@raakuu mtlb linux kernel lol

    • @raakuu
      @raakuu 3 года назад

      @@abduksam bro , u need to explain it!

  • @sudipdas7363
    @sudipdas7363 3 года назад +7

    23:09 full paad diya

  • @sabeehasabee1281
    @sabeehasabee1281 23 дня назад

    Hi Harry
    This is sabeeha from Andhra Pradesh,Chittoor district
    Just started my career with u 😊😊😊

  • @sadabaharsongs3425
    @sadabaharsongs3425 4 года назад +8

    ls lart : list long format including hidden files and 'r' mean list in reverse order and 't' short by date and time.

  • @abdullahnisarg
    @abdullahnisarg 4 года назад +7

    Mera naam Abdullah he
    Mein Pakistan se hun😊

    • @pragyaa5371
      @pragyaa5371 4 года назад

      Ashutosh Char broooo

    • @babar2012
      @babar2012 4 года назад

      @Ashutosh Charan Beta kaya hoya daar gaaye

  • @miniverma1924
    @miniverma1924 4 года назад +5

    Hi, My name is Mini Verma. Thank you for this video, it was really helpful. You mentioned about a full course of Linux, is it available. If yes, can I get the link for the same.

  • @yashwantraomeshram9315
    @yashwantraomeshram9315 Год назад

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

  • @anchalmaurya5944
    @anchalmaurya5944 4 года назад +5

    Name: Anchal
    From: Mumbai

  • @ameensohail2030
    @ameensohail2030 4 года назад +6

    ls -lart
    Shows hidden files in long format of date and time
    l-listing.
    s-segment.
    r-reversal.
    a-hidden files.
    t-time.

  • @funforyou5573
    @funforyou5573 5 лет назад +4

    Name - Arpan Das
    Address - West Bengal

  • @GITANJALISACHDEVA
    @GITANJALISACHDEVA 8 месяцев назад

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

  • @goyalakriti
    @goyalakriti 5 лет назад +4

    Name:- Akriti Gaurav
    address:- Bihar(Patna)

  • @sabihakhan2882
    @sabihakhan2882 Год назад +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.

  • @comsianinfo5443
    @comsianinfo5443 Год назад +1

    Thanks Harry Bro From Pakistan 🥰🥰🥰

  • @amarparadkar6578
    @amarparadkar6578 11 месяцев назад

    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.

  • @AbhilashDasChoudhury
    @AbhilashDasChoudhury Год назад

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

  • @vaibhavpandey3288
    @vaibhavpandey3288 Год назад +1

    cli = command line interface ,terminal is type of cli
    gui = graphical user interface
    ls command shows further nodes and lists the content of directory whereas pwd (print working directory) shows the current position/node
    / is called root node
    cd is chain directory which is follwed by the name of destination node eg /$ cd bin
    cd .. ( cd dot dot command) brings you back to prv node
    if we are writing any name of folder like downloads, then we can auto complete the nam by writing its name partially like "dow" and then pressing tab button
    mkdir command makes a new directory within the present working directory that you are currently in
    touch 1.txt command creates a new text file of name "1" in your current node
    mv 1.txt final/ this command moves 1.txt file to new node called final
    cp 2.txt final/ this command copies 2.txt from present position and posts in "final " node

  • @vinaygundu9867
    @vinaygundu9867 4 месяца назад +1

    very beautiful course . I really understood everything. Thanks Harry

  • @neffexff2473
    @neffexff2473 Год назад

    hello bro, I am Saurabh Singh,
    I am from Mumbai and i am your big fan

  • @VishalKumarMoulik
    @VishalKumarMoulik 8 месяцев назад +1

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

  • @raghavn24
    @raghavn24 Год назад

    must watch video in case you are beginner ......i am beginner and now i have completed

  • @BilalKhan-o2s2i
    @BilalKhan-o2s2i 10 месяцев назад

    what a beast! this channel is a GEM for beginners