- 27
- 30 546
TechTalks with RebbaSai
India
เข้าร่วมเมื่อ 19 ก.ค. 2023
Hey everyone this is Sai | Software Engineer | ETL, LINUX, BIG DATA, JAVA, PYTHON, SQL, |
Please subscribe to my channel, like, comment & share 🤗🙏🏻
--TechTalks with RebbaSai..
Please subscribe to my channel, like, comment & share 🤗🙏🏻
--TechTalks with RebbaSai..
วีดีโอ
complete rpm commands
มุมมอง 369ปีที่แล้ว
complete rpm commands how to intsall a package using rpm? how to reinstall a package using rpm? how to remove/uninstall a package using rpm? how to update a package? how to check whether package is installled or not? how to get the installed package information? how to check all the configuration files of a installed package using rpm? how to check all the documents of a installed package?
How to decommission / delete a partition and disk in linux?
มุมมอง 711ปีที่แล้ว
How to decommission / delete a partition and disk in linux? how to delete a partition in linux? how to delete a lvm partition in linux? how to decommission a LVM partition in linux? how to delete disk in linux? how to delete primary partition in linux? how to delete a file system in linux?
How to reduce ext3 or ext4 file system in Linux?
มุมมอง 663ปีที่แล้ว
How to reduce ext3 or ext4 file system in Linux? How to reduce ext3 file system? how to reduce ext4 file system? how to reduce ext4 partition? how to reduce ext3 partition? how to reduce file system in linux? how to reduce the partition in linux?
How to extend root or var partition in Linux?
มุมมอง 3.9Kปีที่แล้ว
How to extend root or var partition in Linux? How to extend the /var partition? How to extend the root file system in linux? how to increase the file system in linux? how to extend the /var file system if that gets full? how to extend /var file system? how to extend root file system?
How to reduce the XFS partition in Linux?
มุมมอง 578ปีที่แล้ว
How to reduce the XFS file system in Linux? how to reduce the xfs partition? How to reduce the file system in linux? how to reduce the file system? how to reduce file system in linux? how to reduce the linux file system of type xfs in linux?
How to mount the disk as a file system || How to mount the raw disk in linux?
มุมมอง 590ปีที่แล้ว
How to mount the disk as a file system || How to mount the raw disk in linux? Steps: echo command to scan the disk mkfs.xfs /dev/sdb add an entry in the /etc/fstab how to mount a disk? how to mount a raw disk in linux? disk management linux disk management mounting a raw disk how to mount disk?
how to extend LVM partition in Linux step by step?
มุมมอง 1.1Kปีที่แล้ว
How to extend LV partition in Linux? lv partition extend extending the LVM partition? how to extend the LVM partition? how to extend LV if space is not available in VG? how to extend the file system in linux? how to extend LV if space is available in VG?
Logical Volume Creation in Linux || LVM Creation in Linux
มุมมอง 1.9Kปีที่แล้ว
Logical Volume Creation in Linux how to create LV partition? how to create LV? how to create LVM? LVM How to create a lvm from stratch? how to create LV in detail in linux Linux Admin partition creation LVM creation in linux
Disk Management Part-1 (primary partition creation)
มุมมอง 6Kปีที่แล้ว
Disk Management Part-1 (primary partition creation) In this video we discussed, disk architecture partition sector primary partition creation how to create primary partition? how to create primary partition in linux? how to create file system in linux? how to create primary partition and create a file system in linux? linux admin tasks linux administration realtime linux administration realtime...
Full Linux User Management & Administration
มุมมอง 3.8Kปีที่แล้ว
Full Linux User Management & Administration We covered in this video: Full linux user management how to create user in linux user management in linux user administration in linux how to unlock the password for a user how to unlock the user account how to delete the user including home directory user login issue troubleshooting variables system variables bash_profile bash_logout bash_history .ba...
How to create local repository in Redhat Linux?
มุมมอง 429ปีที่แล้ว
how to create local repository? how to create local repository in redhat linux? how to create repository in linux? local repository creation in linux? how to create repository for few packages in linux? local repository creation repository creation linux admin linux repository creation redhat repository creatoin local redhat repository creation how to create local repository
Linux Installation in Vmware & Explain Linux Architecture & Explain Linux File System
มุมมอง 1.2Kปีที่แล้ว
Linux Installation in VMware Explain Linux Architecture Explain Linux File System VMWARE: www.vmware.com/in/products/workstation-pro/workstation-pro-evaluation.html RHEL 7.6 OS: archive.org/download/rhel-server-7.6-x86_64-dvd/rhel-server-7.6-x86_64-dvd.iso
Find command in Linux with complete details with Realtime use-cases
มุมมอง 354ปีที่แล้ว
Find command in Linux with complete details with real-time use cases gzip: th-cam.com/video/LnwdbKyQgZM/w-d-xo.html Permissions: th-cam.com/video/eWsCbBfxZ04/w-d-xo.html find command in linux? how to search for a file in linux? how to search for a file in linux with permissions? what is find command? what is find command in linux? linux linux videos linux administration complete linux command w...
How to change default file permissions in Linux?
มุมมอง 437ปีที่แล้ว
How to change default file permissions in Linux?
Linux File Permissions ( chmod, chown, chgrp )
มุมมอง 1.7Kปีที่แล้ว
Linux File Permissions ( chmod, chown, chgrp )
troubleshooting user login issues in Linux
มุมมอง 2.1Kปีที่แล้ว
troubleshooting user login issues in Linux
Compression in Linux Zip tar gzip gunzip
มุมมอง 462ปีที่แล้ว
Compression in Linux Zip tar gzip gunzip
Linux Passwordless Authentication Or Trust Relationship
มุมมอง 324ปีที่แล้ว
Linux Passwordless Authentication Or Trust Relationship
Great content🎉 thank you
good explain bro
Hi sir How to resolve " resource temporary unavailable" error I have a mount point available and it is operational but it is not displaying in df -h and giving error Could you please help on this
The "resource temporarily unavailable" error often occurs due to issues with the mount point or underlying resources. Here are some steps you can try to resolve it: 1. Check Mount Status Run the following command to check if the mount point is still active and what the current status is: mount | grep <mount-point> Replace <mount-point> with the actual mount path (e.g., /mnt/my_mount). If the mount is listed, it may still be active but might have issues. 2. Check for Stale NFS Mounts (if applicable) If you’re using an NFS mount, this error can occur if the NFS server is unresponsive. You can try remounting it or restarting the NFS service: sudo umount -f <mount-point> sudo mount -a The -f option forces unmount in case of stale mounts. 3. Use lsof to Check Open Files Sometimes, files or processes may be using the mount point, causing it to be "busy." Use lsof to check: sudo lsof +D <mount-point> Kill any processes that may be using files on the mount point. 4. Check for Lock Files In some cases, temporary files or lock files could prevent access. Check for .lock or .lck files and delete them if appropriate. find <mount-point> -name "*.lock" -o -name "*.lck" 5. Force Unmount and Remount You might need to unmount and remount the point to reset its state: sudo umount -l <mount-point> sudo mount <mount-point> The -l (lazy unmount) option detaches the filesystem now and cleans up later. 6. Check dmesg Logs for Errors Sometimes, kernel logs can give insight into why the mount is unavailable. Use: dmesg | tail -n 20 Look for errors related to the device or mount point, which could provide further clues. If these steps do not resolve the issue, the error could stem from system limits or hardware issues.
@techtalkswithRebbaSai sure sir I will try the shared the steps and update you
Great video...thanks for the details
How to connect u
9182284717
Good morning sir
Hi Sir! I reached out about installation BI12C installation on Linux. Please can you help?
waaawo wonderful explanation love from Rwanda
sweet and simple. loved it
Which methods you told in this video to remove disk from linux server?
supper bro
Hi what if instead of new disk the vm team as added to existing sda disk what we can do ?
ajob!
Putty me Linux ip kaise banae or delet kare es k uper ek video banae
Sir putty me Linux ip ko delet ka command ..
👌👌👌🏻👌🏻👌🏻👌🏻
Can we get your notes please
Good content
Sir I really like yours troubleshooting video.would you please more videos on troubleshooting
Sure
saved my day, thanks for sharing~
Teaching is excellent.... Thank you ❤❤❤🌹
Thank you! 😃
Please try again to Hindi language 😅😅
😄
Today I did it for /var and I am able to extend the space from 2GB to 20 GB. I was looking for this solution to upgrade my RHEL 7.9 to 8.4. Thanks a lot for the quick, easy and lucid steps. Keep it up ! ✌👍
I'm so happy to hear. I am glad that you were able to solve your problem. I am also happy that you found my tutorial helpful. Thank you!!
bro can you provide document?
Very useful.cover all topics in linux with trouble shooting scenarios mainly. Thanks for the useful video.
Good explanation
Thank you brother
very nice explanation anna can you please share interview questions for 2 years thank you.
email your number here lnxaws@gmail.com
Can I call you
Provide number here.. I'll call you saisoft4@gmail.com
Can I call you
Provide number here.. I'll call you lnxaws@gmail.com
@@techtalkswithRebbaSai sent email .can you please check
Great video sir Thank you very much, Can you please share notes?
You can make notes for what I explained in video
Hi bro. Good explanation. Please make a video on ssh concept
Will do
Nice video. Great content. Easy to understand. Thank you for your efforts .
Thank you brother
What is your Instagram and LinkedIn I'd???
Very useful video
Thank you brother
We'll explained Brother.. Thank you
Thank you Brother
hi bro after searching lots of tutorial i stopped here very good explanation could you make video on crontab,vi ,sed & AWK please
Will do bro
Well explained ❤
Thanks brother
Got to know about this channel from Arif, loved the way you explained bro
Thank you Brother
Excellent
Thank you
@@techtalkswithRebbaSai what is Ur email please
good
Thank you
Hi bro I want learn linux administration course pls give ur deatials
Give me your contact details on saisoft4@gmail.com
Thanks for the support Anna
You are most welcome brother!
Thanks for the support Anna
You are welcome
Hi Sai I want to learn Linux Administration at L3 Pls give ur details
Contact here saisoft4@gmail.com
Keep it up🙂
Thank you!
Nice explanation👌👌
Thank you 🙂
@@narayanac720 how to connect u sir I am having doubts
Ping your number here. I'll call you
Nice
Thank you 🙏
Superb sir👌 Your explanation is awsome👍 Pls put here series like from basic to advance🙏
Sure will keep soon
Thank you brother for sharing the knowledge it really helps us a lot 👌☺️👌........Keep sharing your valuable tips, learning a lot from you...Bro☺️☺️
Sure Brother!
Bro nice video thankyou take care bro all the best I really appreciate for your effort bro
Thank you bro!