Hello everyone , I am having a error in installation process , I am getting ext4 file system error while installing kali linux in bootable pendrive ?? . Also I am not able to run fsck command in shell as it's a root command , PLEASE HELP ??
- Hot
- Active
-
Forum Thread: How to Track Who Is Sms Bombing Me . 4 Replies
2 mo ago -
Forum Thread: Removing Pay-as-You-Go Meter on Loan Phones. 1 Replies
2 mo ago -
Forum Thread: Hydra Syntax Issue Stops After 16 Attempts 3 Replies
2 mo ago -
Forum Thread: moab5.Sh Error While Running Metasploit 17 Replies
3 mo ago -
Forum Thread: Execute Reverse PHP Shell with Metasploit 1 Replies
4 mo ago -
Forum Thread: Install Metasploit Framework in Termux No Root Needed M-Wiz Tool 1 Replies
5 mo ago -
Forum Thread: Hack and Track People's Device Constantly Using TRAPE 35 Replies
6 mo ago -
Forum Thread: When My Kali Linux Finishes Installing (It Is Ready to Boot), and When I Try to Boot It All I Get Is a Black Screen. 8 Replies
6 mo ago -
Forum Thread: HACK ANDROID with KALI USING PORT FORWARDING(portmap.io) 12 Replies
7 mo ago -
Forum Thread: Hack Instagram Account Using BruteForce 208 Replies
7 mo ago -
Forum Thread: Metasploit reverse_tcp Handler Problem 47 Replies
9 mo ago -
Forum Thread: How to Train to Be an IT Security Professional (Ethical Hacker) 22 Replies
9 mo ago -
Metasploit Error: Handler Failed to Bind 41 Replies
9 mo ago -
Forum Thread: How to Hack Android Phone Using Same Wifi 21 Replies
10 mo ago -
How to: HACK Android Device with TermuX on Android | Part #1 - Over the Internet [Ultimate Guide] 177 Replies
10 mo ago -
How to: Crack Instagram Passwords Using Instainsane 36 Replies
10 mo ago -
Forum Thread: How to Hack an Android Device Remotely, to Gain Acces to Gmail, Facebook, Twitter and More 5 Replies
10 mo ago -
Forum Thread: How Many Hackers Have Played Watch_Dogs Game Before? 13 Replies
10 mo ago -
Forum Thread: How to Hack an Android Device with Only a Ip Adress 55 Replies
11 mo ago -
How to: Sign the APK File with Embedded Payload (The Ultimate Guide) 10 Replies
11 mo ago
-
How To: Scan for Vulnerabilities on Any Website Using Nikto
-
How To: Use Burp & FoxyProxy to Easily Switch Between Proxy Settings
-
How To: Crack Password-Protected Microsoft Office Files, Including Word Docs & Excel Spreadsheets
-
Android for Hackers: How to Turn an Android Phone into a Hacking Device Without Root
-
How To: Enumerate SMB with Enum4linux & Smbclient
-
How To: Hack Facebook & Gmail Accounts Owned by MacOS Targets
-
How To: Find Identifying Information from a Phone Number Using OSINT Tools
-
How To: Make Your Own Bad USB
-
How to Hack Wi-Fi: Stealing Wi-Fi Passwords with an Evil Twin Attack
-
How To: Top 10 Things to Do After Installing Kali Linux
-
How To: Fuzz Parameters, Directories & More with Ffuf
-
How To: Extract Bitcoin Wallet Addresses & Balances from Websites with SpiderFoot CLI
-
How To: Scrape Target Email Addresses with TheHarvester
-
How To: Dox Anyone
-
How To: Use Metasploit's WMAP Module to Scan Web Applications for Common Vulnerabilities
-
Hack Like a Pro: Cryptography Basics for the Aspiring Hacker
-
Steganography: How to Hide Secret Data Inside an Image or Audio File in Seconds
-
How To: Exploit EternalBlue on Windows Server with Metasploit
-
How To: Check if Your Wireless Network Adapter Supports Monitor Mode & Packet Injection
-
How To: The Hacks Behind Cracking, Part 1: How to Bypass Software Registration
3 Responses
Hi I solved this error while creating partions choose manual
and create these partions below
boot - ext4
root - ext4
home - ext4
swap- click use as and click swap area
usr - ext4
If you have any problems reply to me Thanks
I have done exaclty like you said but I am getting same problem. Can you please explain the steps in detail.
There are a few steps to do before you check and repair your file system. You need to locate a device and unmount.
View Mounted Disks and Partitions
To view all mounted devices on your system and check disk location, use one of the available tools in Linux.
One method to locate the disk you want to scan is to list the filesystem disks with the df command:
The tool prints the data usage on your system and filesystems. Take note of the disk you want to check with the fsck command.
To view partitions for your first disk, for example, use the following command:
sudo parted /dev/sda 'print'
sda is how Linux refers to your first SCSI disk. If you have two, the second would be sdb, and so on.
Make sure to run the unmount command:
sudo umount /dev/sdb
Replace /dev/sdb with the device you want to unmount.
Note that you cannot unmount root filesystems. Hence, now fsck can't be used on a running machine. More on that towards the end of the guide.
Run fsck to Check for Errors
Now that you unmounted the disk, you can run fsck. To check the second disk, enter:
sudo fsck /dev/sdb
I hope this helps!
Matt Henry
Share Your Thoughts