Posts: 5
ragnar_danneskjold
Joined: 13 Apr 2014
#1
Hey Guys,

I'm trying to mount my other Linux distro's filesystem in AntiX.

When I try it, I get an error message.

I ran"dmesg | tail" and got the following...

Code: Select all

dmesg | tail
[    8.642834] Adding 1830908k swap on /dev/sda6.  Priority:1 extents:1 across:1830908k 
[    8.661143] EXT4-fs (sda5): re-mounted. Opts: (null)
[    8.836100] EXT4-fs (sda5): re-mounted. Opts: (null)
[   11.534163] 8139too 0000:02:05.0 eth0: link up, 100Mbps, full-duplex, lpa 0x45E1
[   11.585805] NET: Registered protocol family 17
[   14.299858] input: ACPI Virtual Keyboard Device as /devices/virtual/input/input5
[   15.119216] lp: driver loaded but no devices found
[   15.326498] ppdev: user-space parallel port driver
[   15.382851] IT8718 SuperIO detected.
[  577.059662] JFS: nTxBlock = 8192, nTxLock = 65536
Any idea what the problem might be and how to fix it? (I'm fairly computer illiterate, but I don't like the looks of that last line!)
Posts: 850
fatmac
Joined: 26 Jul 2012
#2
As you say 'other' linux distro, I am guessing that would be sda5.
Is it in your fstab file? If not you will need to add it to have it automounted at boot up.
See if you can manually mount it

Code: Select all

 sudo mount /dev/sda5 /mnt 
Posts: 1,308
BitJam
Joined: 31 Aug 2009
#3

========= SCRAPER REMOVED AN EMBEDDED LINK HERE ===========
url was:"https://bbs.archlinux.org/viewtopic.php?id=63086"
linktext was:"This thread"
====================================
was about a similar problem. The solution was to run fsck on the partition you are having trouble with.
Posts: 5
ragnar_danneskjold
Joined: 13 Apr 2014
#4
Fatmac; No, actually it's SDA1 I'm trying to mount; and I was trying to mount it manually, as I can't get into it because I don't have the /boot/grub/menu.lst set up to recognize it yet (but I'm trying)
________
Bitjam, I will take a look at that thread.

_______________

Thanks for the assistance, guys!
Posts: 5
ragnar_danneskjold
Joined: 13 Apr 2014
#5
Ding-ding-ding ding-ding!

Running fsck did it! The file file system is now mount!

That was fast!

Thanks again!