Linux Tutorial For Beginners in Hindi

  Рет қаралды 2,654,893

CodeWithHarry

CodeWithHarry

Күн бұрын

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

Пікірлер: 6 200
@CodeWithHarry
@CodeWithHarry 5 жыл бұрын
Thanks for 200+ subscribers on my new channel ProgrammingWithHarry (In English). You guyz are awesome :) Find it here: kzfaq.info/love/7btqG2Ww0_2LwuQxpvo2HQ Will be dropping some fresh content in English soon!
@Lucky_Singh720
@Lucky_Singh720 5 жыл бұрын
Ap kha se ho
@sidharths9416
@sidharths9416 5 жыл бұрын
Thank u very much🤝
@TheCritic108
@TheCritic108 5 жыл бұрын
Bhai plz app se bat krna hai please
@chetanmirajkar5215
@chetanmirajkar5215 5 жыл бұрын
Hi Harry, You are doing good bro. Keep it up. :) Can you please start tutorial for Linux/Unix shell scripting?
@rizwanpathan6512
@rizwanpathan6512 4 жыл бұрын
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 жыл бұрын
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 Жыл бұрын
I need your suggestions could u help me?
@shifasayyad1922
@shifasayyad1922 Жыл бұрын
Hi Sachin I need your help
@dharmraj51
@dharmraj51 3 ай бұрын
@@shifasayyad1922
@SatishSharma-en2ll
@SatishSharma-en2ll 3 сағат бұрын
Sachin bhaiya I want referral
@saryy_
@saryy_ 51 минут бұрын
​@@SatishSharma-en2ll😂
@RealRajatShahare
@RealRajatShahare 4 жыл бұрын
I don't have knowledge about Linux but I can atleast understand the basics of Linux because of your tutorial. Thank you bro!
@HemantShivalkar
@HemantShivalkar 10 ай бұрын
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).
@aaronstanley5867
@aaronstanley5867 Жыл бұрын
Great short little course for absolute beginners... completed smoothly!
@gamescammer1426
@gamescammer1426 Жыл бұрын
# 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. -------------------------------------------------------------------------------
@sagarsrivarma7446
@sagarsrivarma7446 Жыл бұрын
Thanks a lot bro it means a lot
@shahbazkhan-ek7hp
@shahbazkhan-ek7hp Жыл бұрын
thanks👍
@rohitdongare4727
@rohitdongare4727 4 ай бұрын
unable to create new directory using mkdir
@KentoNanami-jm1jw
@KentoNanami-jm1jw 2 ай бұрын
Thank you
@Being-a-Kalim
@Being-a-Kalim Жыл бұрын
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
@TARUNSHARMA-nb3bd
@TARUNSHARMA-nb3bd Жыл бұрын
Your courses are really awesome and career-building! We all are eagerly waiting for the full-fledged course of LINUX.
@shreekant8
@shreekant8 4 жыл бұрын
cool dude with pure hindi. Rare combination to see. Overall the video is nice.
@PawanKumar-te6sp
@PawanKumar-te6sp 3 жыл бұрын
Bro I am so excited for your full fledged Linux tutorial video. Plz 🙏 make it as soon as possible.❤️
@SaleenmAh
@SaleenmAh Жыл бұрын
Am Zahid Siddiqui from Pakistan, Thanks a lot for learning us programming languages, power full tools and much more. Stay happy Sir
@namahkalbande4274
@namahkalbande4274 3 жыл бұрын
I am Namah Kalbande from Pune. I have accessed your playlists of Java Python and even Html. I love you as a teacher.
@9891833795
@9891833795 Жыл бұрын
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 :)
@abhinandanmaurya47
@abhinandanmaurya47 4 ай бұрын
What u do sir?
@samarjeetsingh6916
@samarjeetsingh6916 4 ай бұрын
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
@entertainmentzone4416
@entertainmentzone4416 Жыл бұрын
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 жыл бұрын
From- Pune(Maharashtra) You are brilliant keep it up bro 👍
@subhamshaw1726
@subhamshaw1726 3 жыл бұрын
l - LONG LIST FORMAT a - LIST ALL FILES INCLUDING FILES STARTING WITH "." r - SORT IN REVERSE ORDER t - SORT ACCORDING TO MODIFICATION TIME
@vikings24
@vikings24 6 ай бұрын
Sunday enjoy with your Linux video. I am just thinking from many days to learn but today I'm done with you . Thnx
@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
@agyanshuvarshney6499
@agyanshuvarshney6499 3 жыл бұрын
Yes brother we want a full course on Linux(Ubuntu)
@aruntyagi6643
@aruntyagi6643 3 жыл бұрын
Bhai aaya kya full course Please link send kr do
@amanrajfr
@amanrajfr 3 жыл бұрын
Yes Bhai
@rakeshv8500
@rakeshv8500 3 жыл бұрын
Yes, sir we need full course for developing our linux skills
@cubingwithabhinav8517
@cubingwithabhinav8517 3 жыл бұрын
Kali Linux
@AvinashKumar-xj4sm
@AvinashKumar-xj4sm 2 жыл бұрын
Linux ka fayda jab windows hai to
@abhisekhmukherjee4408
@abhisekhmukherjee4408 5 жыл бұрын
Eagerly waiting for your Linux complete course...your Teaching skill is way too good. Thank you Bhai.
@syedabdulrahimk
@syedabdulrahimk Жыл бұрын
Thank you dada... it was an awesome course... I have completed word to word... thanks bro... ❤
@vatsvlogs6110
@vatsvlogs6110 7 ай бұрын
Smjhke dusron ko samjhana is an art
@ashishshorts8038
@ashishshorts8038 Жыл бұрын
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
@vaibhavvishwakarma9635
@vaibhavvishwakarma9635 2 жыл бұрын
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 жыл бұрын
We can also use ls -al
@maskladyvlogs
@maskladyvlogs Жыл бұрын
@@trishitmaji3208 not ls -al correct one is ls - la = show all hidden files and folders
@nishitjadiya
@nishitjadiya Жыл бұрын
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 :)
@user-rv6qi7nj5u
@user-rv6qi7nj5u Жыл бұрын
Love you Harry. Great teacher. Linux ka full video mene bahut dhunda mil nahi rha.
@sabihakhan2882
@sabihakhan2882 11 ай бұрын
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.
@Agent839
@Agent839 2 жыл бұрын
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..
@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.
@user-jq1st8si8x
@user-jq1st8si8x 4 ай бұрын
you are the best bro .............watching again all your videos.really worth it....explained very well.....................
@saharayub4448
@saharayub4448 Жыл бұрын
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?
@mihirpatel1340
@mihirpatel1340 5 жыл бұрын
I recently installed Linux and within few days your video came out, thank you so much.
@prashantkulla7877
@prashantkulla7877 5 жыл бұрын
I cant download..Linux how I can ..,??
@cold_messss
@cold_messss 9 ай бұрын
Harryyyy... thanku so much..u are truly Life saviour 😢i wanted to learn all this but was not getting how...now i know
@VishalKumarMoulik
@VishalKumarMoulik 3 ай бұрын
Thankuu brother for this. yes i want full linux course..
@Aashutosh_kumar
@Aashutosh_kumar 3 жыл бұрын
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.
@ASHUTOSHKUMARSHARMA-iu6gw
@ASHUTOSHKUMARSHARMA-iu6gw 2 жыл бұрын
Right
@jbhsmeta
@jbhsmeta 3 жыл бұрын
Harry, Your teaching style is awesome. Heartfelt thanks to you. Please make full course on Linux. From Kolkata.
@user-jk6uy4xp3s
@user-jk6uy4xp3s 4 ай бұрын
Awesome revision!
@shahed3056
@shahed3056 Жыл бұрын
Linux full course badly needed brother
@sayakarar
@sayakarar 3 жыл бұрын
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.
@theexplodingcube7873
@theexplodingcube7873 2 жыл бұрын
ls -a ?
@AbdulWahab-rl5uu
@AbdulWahab-rl5uu 2 жыл бұрын
@@theexplodingcube7873 it will show you current directory files list including hidden file
@manasranjanbehera6868
@manasranjanbehera6868 Жыл бұрын
Can I use Ubuntu 22
@shujajilani7496
@shujajilani7496 Жыл бұрын
@@manasranjanbehera6868 Yes
@daredevil6145
@daredevil6145 Жыл бұрын
is ls -lart and ls -l same??
@himanshu_rohil
@himanshu_rohil 3 жыл бұрын
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?
@Theanonymousyou
@Theanonymousyou Жыл бұрын
Thanks Bhaai-Awesome efforts!
@krishnamohanmandal1676
@krishnamohanmandal1676 Жыл бұрын
Great video, I learned a lot from this Thank you Harry bhai...
@sketchy2673
@sketchy2673 3 жыл бұрын
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 жыл бұрын
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 жыл бұрын
@@subhambairagi5642 use hyper V instead of Virtualbox it's great
@HAMZAKHAN-sb8py
@HAMZAKHAN-sb8py 2 жыл бұрын
​@@wut9167 how about we install ubuntu through wsl on windows ? will there be any drawbacks ??
@sarvesh_soni
@sarvesh_soni 2 жыл бұрын
3rd point is wrong
@sayanjitb
@sayanjitb 2 жыл бұрын
@@subhambairagi5642 isn't it just half of the system ram? So according to the 3rd point it should work.
@mukuldubey1491
@mukuldubey1491 3 жыл бұрын
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
@vinaygundu9867
@vinaygundu9867 14 күн бұрын
very beautiful course . I really understood everything. Thanks Harry
@s.k3518
@s.k3518 2 жыл бұрын
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 KZfaq.
@zen-x-football
@zen-x-football Жыл бұрын
lart command lists all the directories in a list format along with the time of last modification,read and write permission, permitted user access and total contents in each
@faisal98499
@faisal98499 3 ай бұрын
07:53 Linux is an open-source operating system that can be installed using VirtualBox on Windows. 15:46 Linux is an open source operating system with command line and graphical user interfaces. 23:39 Linux file system has a tree structure with the root node as the starting point. 31:32 Copying files using the cp command in Linux 39:25 Understanding absolute and relative paths in Linux 47:18 Commands for printing on the command line and creating files in Linux. 55:11 chmod calculator and changing file permissions using chmod 1:03:00 How to change password and use vim editor in Linux Crafted by Merlin AI.
@amalgupta5095
@amalgupta5095 4 жыл бұрын
Sir. Very nice tutorial! Please inform whenever you are going to upload the complete Linux tutorial as you said. It would be very helpful.
@sivashish5143
@sivashish5143 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
@whitedevilwz8sl8bs6t
@whitedevilwz8sl8bs6t Күн бұрын
Yes please give the full course
@RiteshKumar-pp8zh
@RiteshKumar-pp8zh Жыл бұрын
Hello Harry Bhai I am Ritesh from Bihar. Thank you very much for your super support for making us learn.
@asbishen
@asbishen 4 жыл бұрын
l - list long listing a - list all r - reverse sorting t - arrange by time
@TVFocusFuel365
@TVFocusFuel365 2 жыл бұрын
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
@user-ex2nt7it6z
@user-ex2nt7it6z Жыл бұрын
waiting for full linux course,u r awesome harry
@user-gu5dj1xv8e
@user-gu5dj1xv8e 6 ай бұрын
what a beast! this channel is a GEM for beginners
@kanchangandhi1200
@kanchangandhi1200 3 жыл бұрын
chmod explanation was superb , got cleared all my doubts ! Thank you :-)
@rajeshhalder968
@rajeshhalder968 2 жыл бұрын
Right 👍 hello kanchan
@ravirajput396
@ravirajput396 4 жыл бұрын
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.
@salmananwar6728
@salmananwar6728 Жыл бұрын
Thank you so much Harry bro. Really approciate your efforts.
@reshamamanat3143
@reshamamanat3143 Жыл бұрын
I'm from Pakistan I saw your video its great for beginners learning
@sanketgaikwad3552
@sanketgaikwad3552 2 жыл бұрын
Thank you so much for covering everything from the beginning. Loved it !
@sadabaharsongs3425
@sadabaharsongs3425 4 жыл бұрын
ls lart : list long format including hidden files and 'r' mean list in reverse order and 't' short by date and time.
@surabhibtech
@surabhibtech 8 ай бұрын
Hi Harry , can we rum transportation based simulator SUMO in this type installed Linux
@just_believer
@just_believer Жыл бұрын
Harry bhai you are awesome 🔥🔥🔥 big fan sir from uttarakhand 😍
@ajitsekhar2716
@ajitsekhar2716 3 жыл бұрын
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
@ashishmishra5448
@ashishmishra5448 2 жыл бұрын
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.
@ZaherruddinShaik
@ZaherruddinShaik 22 күн бұрын
ویڈیو اچہی تہی۔ معلومات میں اصافہ ہواہ۔ 👌👋🔚🌻🌸۔۔
@rahulrathore6648
@rahulrathore6648 29 күн бұрын
Very very supportive bhaiya❤
@ghanshyamvishwakarma2343
@ghanshyamvishwakarma2343 2 жыл бұрын
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 :)
@sidharthbhardwaj641
@sidharthbhardwaj641 4 жыл бұрын
Yaar aap mastt ho Aapko toh million subscribers milne chaiye Mai abhi class 10 me hu Software engineer banna chata hu
@shoaibakhann93
@shoaibakhann93 4 жыл бұрын
Abhi time hai bhaglo
@unstoppable9668
@unstoppable9668 4 жыл бұрын
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 жыл бұрын
@@unstoppable9668 thanks
@harharmahadev7036
@harharmahadev7036 4 жыл бұрын
Me bhi class 9 me hu
@pranjalpathak4498
@pranjalpathak4498 4 жыл бұрын
Main class 1 me hu... Mera kitna secure ho gya placement?
@PrathamMandal-hj7zo
@PrathamMandal-hj7zo Жыл бұрын
Yes sir, We want full course of Linux.
@abdulmateen7486
@abdulmateen7486 11 ай бұрын
Excellent lecture. Hats off
@omideccan
@omideccan 3 жыл бұрын
Harry sir, when you will post Linux full tutorial.
@satyamdixit5916
@satyamdixit5916 5 жыл бұрын
Bhai competitive programming or placement preparation se related videos....
@maskedpersonality
@maskedpersonality 4 жыл бұрын
Abhi kya kr rhe ho bhai??
@swapnilchilwant174
@swapnilchilwant174 Жыл бұрын
Thank you so much sir..😁👍
@spicy2602
@spicy2602 Жыл бұрын
Thank you very much bro. Waiting for complete course on linux.❤️
@tanmaykhatri6061
@tanmaykhatri6061 2 жыл бұрын
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 :)
@hemanthreddy7335
@hemanthreddy7335 3 жыл бұрын
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 😂
@abhattacharya88
@abhattacharya88 3 жыл бұрын
This guy is working so hard, so that we learn the basics well. Kudos to you @CodeWithHarry .
@81_monish_roy74
@81_monish_roy74 5 ай бұрын
Thanks for such a clear explanation
@muzammilkhan9192
@muzammilkhan9192 Жыл бұрын
hey Hi Harry I'm Muzammil and I'm from Bhopal and... you are doing awesome :)
@mohitagarwall
@mohitagarwall Жыл бұрын
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 :)
@cricbolly3252
@cricbolly3252 3 жыл бұрын
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
@yashwantraomeshram9315
@yashwantraomeshram9315 11 ай бұрын
Yas ok Chhattisgarh se We want full course of linux👌👍👍👌
@swarajkokare715
@swarajkokare715 Жыл бұрын
thank you brother for this course
@sharankumar917
@sharankumar917 4 жыл бұрын
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 жыл бұрын
@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.
@rahulagni9016
@rahulagni9016 2 жыл бұрын
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 :)
@satvikchauhan3489
@satvikchauhan3489 Жыл бұрын
i m also from bhopal near aura mall
@Phenomenalsanjeev16
@Phenomenalsanjeev16 Жыл бұрын
Nice doing broh..., it literally would work who are not aware about things genuinely and get trapped very easily, superb ✔️✔️💯
@priyanujbora9089
@priyanujbora9089 Жыл бұрын
ls -lart is a combination of the options -l, -a, -r and -t which will display the contents of the current directory along with the hidden files(-a) in long listing format(-l), in reverse sorted order(-r) by the modification time(-t), oldest first. Am I right?
@Aashee0009
@Aashee0009 2 жыл бұрын
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" 🙏🙏🙏.
@amankunwar4099
@amankunwar4099 3 жыл бұрын
kamal bhai aap hai harry please jaldi se hindi main linux ka full course upload karo
@-ECE-DebojoytiDas
@-ECE-DebojoytiDas Ай бұрын
Best explanation ❤
@sankyazone
@sankyazone Жыл бұрын
very helpfull video ❣
@sahelikantha93
@sahelikantha93 3 жыл бұрын
yes! the linux full tutorial?? and what would be the length of that ?
@MrParshant007
@MrParshant007 3 жыл бұрын
This is simply awesome. Harry bro you are the best.
@thesoulofindiangamers
@thesoulofindiangamers 6 ай бұрын
Thanks for this useful information !
@koustubhsatalkar9215
@koustubhsatalkar9215 Ай бұрын
Thank you so much bro❤
@Pawanjangra160
@Pawanjangra160 4 жыл бұрын
Bro...awesome video for beginners. Please share the full course as well, that will be really helpful. Thanks once again.
💥Windows vs Linux vs Mac - End of Debate (Eye-Opening) 💥
10:49
CodeWithHarry
Рет қаралды 127 М.
100+ Linux Things you Need to Know
12:23
Fireship
Рет қаралды 869 М.
Эффект Карбонаро и нестандартная коробка
01:00
История одного вокалиста
Рет қаралды 9 МЛН
Stay on your way 🛤️✨
00:34
A4
Рет қаралды 9 МЛН
마시멜로우로 체감되는 요즘 물가
00:20
진영민yeongmin
Рет қаралды 33 МЛН
What is Docker? Simply Explained by Shradha Ma'am
19:32
Apna College
Рет қаралды 235 М.
This is Wrong - Our Shameful Cheap Mentality !
8:00
GT Plus
Рет қаралды 126 М.
Linux File System/Structure Explained!
15:59
DorianDotSlash
Рет қаралды 4 МЛН
Java Is Better Than Rust
42:14
ThePrimeTime
Рет қаралды 113 М.
Google CEO Sundar Pichai and the Future of AI | The Circuit
24:02
Bloomberg Originals
Рет қаралды 3,1 МЛН
Fastest Way To Become a Software Developer
22:09
CodeWithHarry
Рет қаралды 3,8 МЛН
The moment we stopped understanding AI [AlexNet]
17:38
Welch Labs
Рет қаралды 777 М.
The mind behind Linux | Linus Torvalds | TED
21:31
TED
Рет қаралды 6 МЛН
Эффект Карбонаро и нестандартная коробка
01:00
История одного вокалиста
Рет қаралды 9 МЛН