- 23
- 7 282
TechVikings
Jordan
เข้าร่วมเมื่อ 30 มิ.ย. 2013
Welcome to TechVikings, where we conquer the world of technology like fearless Norse explorers!
Our channel is dedicated to making IT and tech topics easy to understand, with a focus on everything from coding, programming, and software development, to cybersecurity, hardware, and the latest tech trends. Whether you're a beginner or a tech pro, we break down complex concepts into digestible, actionable insights.
Join us as we navigate the digital seas, armed with knowledge and the tools to conquer challenges in the ever-evolving world of technology. From in-depth tutorials, reviews, and tech tips, to exciting deep dives into future technologies, TechVikings is your go-to hub for all things IT.
Prepare for a journey where tech meets adventure. Subscribe now, and become part of the Viking crew!
Our channel is dedicated to making IT and tech topics easy to understand, with a focus on everything from coding, programming, and software development, to cybersecurity, hardware, and the latest tech trends. Whether you're a beginner or a tech pro, we break down complex concepts into digestible, actionable insights.
Join us as we navigate the digital seas, armed with knowledge and the tools to conquer challenges in the ever-evolving world of technology. From in-depth tutorials, reviews, and tech tips, to exciting deep dives into future technologies, TechVikings is your go-to hub for all things IT.
Prepare for a journey where tech meets adventure. Subscribe now, and become part of the Viking crew!
Lecture 3 - Linux Command Line Tutorial - (mkdir, rmdir, touch, rm) commands
Command: mkdir (Creating Directories)
Description:
The mkdir command creates new directories.
Syntax:
mkdir [OPTION] DIRECTORY...
Common Flags:
• -p: Create parent directories as needed.
• -v: Verbose mode; show the creation of directories.
Examples:
1. Basic Usage:
mkdir my_directory
Creates a directory named my_directory.
2. Create Parent Directories:
mkdir -p parent/child
Creates parent and child directories if they don't exist.
3. Verbose Mode:
mkdir -v example_dir
Displays a message confirming the creation of example_dir.
________________________________________
Command: rmdir (Removing Empty Directories)
Description:
The rmdir command removes empty directories.
Syntax:
rmdir [OPTION] DIRECTORY...
Common Flags:
• -p: Remove a directory and its parent directories if they are empty.
Examples:
1. Basic Usage:
rmdir my_directory
Removes my_directory if it is empty.
2. Remove Parent Directories:
rmdir -p parent/child
Removes child and then parent if both are empty.
________________________________________
Command: touch (Creating Empty Files)
Description:
The touch command creates empty files or updates timestamps.
Syntax:
touch [OPTION] FILE...
Common Flags:
• -a: Change only the access time.
• -m: Change only the modification time.
• -t: Set a specific timestamp.
Examples:
1. Basic Usage:
touch file.txt
Creates an empty file named file.txt.
2. Update Access Time:
touch -a file.txt
Updates the access time of file.txt.
3. Set Specific Timestamp:
touch -t 202401010101 file.txt
Sets the timestamp of file.txt to January 1, 2024, 01:01.
________________________________________
Command: rm (Removing Files and Directories)
Description:
The rm command removes files and directories.
Syntax:
rm [OPTION] FILE...
Common Flags:
• -r: Recursively remove directories.
• -f: Force removal without confirmation.
• -i: Interactive mode; ask before every removal.
Examples:
1. Remove a File:
rm file.txt
Removes file.txt.
2. Remove a Directory Recursively:
rm -r my_directory
Removes my_directory and its contents.
3. Force Removal:
rm -rf my_directory
Forcefully removes my_directory and its contents without prompts.
Description:
The mkdir command creates new directories.
Syntax:
mkdir [OPTION] DIRECTORY...
Common Flags:
• -p: Create parent directories as needed.
• -v: Verbose mode; show the creation of directories.
Examples:
1. Basic Usage:
mkdir my_directory
Creates a directory named my_directory.
2. Create Parent Directories:
mkdir -p parent/child
Creates parent and child directories if they don't exist.
3. Verbose Mode:
mkdir -v example_dir
Displays a message confirming the creation of example_dir.
________________________________________
Command: rmdir (Removing Empty Directories)
Description:
The rmdir command removes empty directories.
Syntax:
rmdir [OPTION] DIRECTORY...
Common Flags:
• -p: Remove a directory and its parent directories if they are empty.
Examples:
1. Basic Usage:
rmdir my_directory
Removes my_directory if it is empty.
2. Remove Parent Directories:
rmdir -p parent/child
Removes child and then parent if both are empty.
________________________________________
Command: touch (Creating Empty Files)
Description:
The touch command creates empty files or updates timestamps.
Syntax:
touch [OPTION] FILE...
Common Flags:
• -a: Change only the access time.
• -m: Change only the modification time.
• -t: Set a specific timestamp.
Examples:
1. Basic Usage:
touch file.txt
Creates an empty file named file.txt.
2. Update Access Time:
touch -a file.txt
Updates the access time of file.txt.
3. Set Specific Timestamp:
touch -t 202401010101 file.txt
Sets the timestamp of file.txt to January 1, 2024, 01:01.
________________________________________
Command: rm (Removing Files and Directories)
Description:
The rm command removes files and directories.
Syntax:
rm [OPTION] FILE...
Common Flags:
• -r: Recursively remove directories.
• -f: Force removal without confirmation.
• -i: Interactive mode; ask before every removal.
Examples:
1. Remove a File:
rm file.txt
Removes file.txt.
2. Remove a Directory Recursively:
rm -r my_directory
Removes my_directory and its contents.
3. Force Removal:
rm -rf my_directory
Forcefully removes my_directory and its contents without prompts.
มุมมอง: 27
วีดีโอ
How to Extend Your C Drive Partition in Windows Step-by-Step Guide
มุมมอง 4.3Kวันที่ผ่านมา
MiniTool Partition Wizard Download Link: drive.google.com/file/d/1Npa-pUibEIB18GO0xHU5pcXr1AF4ltnV/view?usp=sharing
Solved - Ubuntu VM No network interface - no internet - VMware Workstation
มุมมอง 34วันที่ผ่านมา
Commands used : sudo nmcli networking off sudo nmcli networking on
Remote Desktop: Connect and Control a Remote Device from Anywhere
มุมมอง 63วันที่ผ่านมา
Discover how to use Remote Desktop to connect your local Windows device to a remote Windows one and take full control of it. In this tutorial, we’ll walk you through: 1) Setting up Remote Desktop on both devices. 2) Configuring network settings for a seamless connection. 3) Managing and controlling the remote device as if you were there. Perfect for remote work, IT troubleshooting, or accessing...
How to Make Windows 11 Virtual Machine in Full Screen - VMware Workstation
มุมมอง 6714 วันที่ผ่านมา
in this video we learn how to make Windows 11 VM in Full Screen in VMware Workstation and this also applies to any Windows version using VMware
Lecture 2 - Linux Command Line Tutorial - cd & pwd commands with their flags explained
มุมมอง 3414 วันที่ผ่านมา
in this video we learn about cd & pwd commands with their flags explained 1. pwd The pwd command stands for Print Working Directory. It shows the full path of the current directory. Basic Usage: pwd Explanation: • This shows the absolute path of the directory you are in. • Example: /home/user/documents Flags for pwd -L (Logical Path): pwd -L Explanation: • This shows the logical path, which res...
Lecture 1 - Linux Command Line Tutorial - ls command with all flags explained
มุมมอง 8114 วันที่ผ่านมา
in this lecture I teach you about ls command in Linux 1. ls command without any flag ls This lists the files and folders in your current working directory. It's simple and fast but doesn’t show much detail. 2. Adding -l (Long Listing Format) ls -l Explain: • This gives more details about each file: o File permissions o Number of links o Owner and group o File size o Last modified date • Example...
Solve error: Could not create anonymous paging file, Insufficient system resources VMware
มุมมอง 76921 วันที่ผ่านมา
in this tutorial I Solve the following error message in VMware: "Could not create anonymous paging file for 4096 MB: Insufficient system resources exist to complete the requested service. Failed to allocate main memory. Module 'MainMem' power on failed. Failed to start the virtual machine." please Like, Subscribe, and share.
Installing Windows 11 as a Virtual Machine #shorts
มุมมอง 4421 วันที่ผ่านมา
🎥 Oops! The Microphone Wasn't Connected 😅 Sometimes, tech issues happen, but creativity saves the day! Here's a quick, fast-paced short showing How to Installing Windows 11 as a Virtual Machine 🔊 Enjoy the visuals in fast mode and stay tuned for more! Don’t forget to like, comment, and subscribe for better videos in the future. #Shorts #CreativeFix
installing Linux alongside windows 11
มุมมอง 8721 วันที่ผ่านมา
in this tutorial I explain how to install Linux alongside windows 11, step by step.
How to make your computer faster
มุมมอง 13128 วันที่ผ่านมา
in this video we learn how to make your computer faster by easy and simple steps
Compare Between Bridged vs NAT vs Host Only Network
มุมมอง 3728 วันที่ผ่านมา
in this video I explain and compare between Bridged vs NAT vs Host Only Network
installing Linux ubuntu as a virtual machine using VMware
มุมมอง 507หลายเดือนก่อน
installing Linux ubuntu as a virtual machine using VMware
VMware Download and Install on windows 11
มุมมอง 146หลายเดือนก่อน
VMware Download and Install on windows 11
Oracle Virtual Box Download and Install on Windows
มุมมอง 59หลายเดือนก่อน
Oracle Virtual Box Download and Install on Windows
Git/GitHub assignment with Intellij by Adel Mardini
มุมมอง 28หลายเดือนก่อน
Git/GitHub assignment with Intellij by Adel Mardini
Cloud computing using GCP by Adel Mardini
มุมมอง 24หลายเดือนก่อน
Cloud computing using GCP by Adel Mardini
Don't forget to check out my Facebook channel for more updates and exclusive content! 🎥📲: facebook.com/profile.php?id=61571023074757
Don't forget to check out my Facebook channel for more updates and exclusive content! 🎥📲: facebook.com/profile.php?id=61571023074757
Don't forget to check out my Facebook channel for more updates and exclusive content! 🎥📲: facebook.com/profile.php?id=61571023074757
Don't forget to check out my Facebook channel for more updates and exclusive content! 🎥📲: facebook.com/profile.php?id=61571023074757
Don't forget to check out my Facebook channel for more updates and exclusive content! 🎥📲: facebook.com/profile.php?id=61571023074757
Don't forget to check out my Facebook channel for more updates and exclusive content! 🎥📲: facebook.com/profile.php?id=61571023074757
Don't forget to check out my Facebook channel for more updates and exclusive content! 🎥📲: facebook.com/profile.php?id=61571023074757
Don't forget to check out my Facebook channel for more updates and exclusive content! 🎥📲: facebook.com/profile.php?id=61571023074757
Don't forget to check out my Facebook channel for more updates and exclusive content! 🎥📲: facebook.com/profile.php?id=61571023074757
Don't forget to check out my Facebook channel for more updates and exclusive content! 🎥📲: facebook.com/profile.php?id=61571023074757
Don't forget to check out my Facebook channel for more updates and exclusive content! 🎥📲: facebook.com/profile.php?id=61571023074757
Don't forget to check out my Facebook channel for more updates and exclusive content! 🎥📲: facebook.com/profile.php?id=61571023074757
Don't forget to check out my Facebook channel for more updates and exclusive content! 🎥📲: facebook.com/profile.php?id=61571023074757
Don't forget to check out my Facebook channel for more updates and exclusive content! 🎥📲: facebook.com/profile.php?id=61571023074757
Don't forget to check out my Facebook channel for more updates and exclusive content! 🎥📲: facebook.com/profile.php?id=61571023074757
can you send me the link for the installation of the app please?
@@brody3dtz hi, which app ?
@@TechVikings5 vmware
@@brody3dtz you can download VMware Workstation using the following link : drive.google.com/file/d/10inwc5M8znuGEsqkHbZhMgCbFW-TFSS_/view?usp=drive_link
Great explanation Keep it up
@@gamezchannel8796 thank you, I will
Keep up the good work 👏 ❤
Thank you, I will