* Hi
@ 2011-10-28 11:06 lisa hedstrand
0 siblings, 0 replies; 9+ messages in thread
From: lisa hedstrand @ 2011-10-28 11:06 UTC (permalink / raw)
My name is Miss Lisa Please accept my apology if my mode of contacting you will in any way offend you. I am compelled to contact you via this medium because i needed a friend from that part of the world. We will get to know each other in details if my proposition accepted. l am a student in UK but originally from USA.
^ permalink raw reply [flat|nested] 9+ messages in thread
* hi
@ 2013-09-24 23:39 vgrvelu
2013-09-24 23:56 ` hi Chris Murphy
2013-09-25 0:48 ` hi Eric Sandeen
0 siblings, 2 replies; 9+ messages in thread
From: vgrvelu @ 2013-09-24 23:39 UTC (permalink / raw)
To: linux-btrfs
hi
I created btrfs file system on one of sda partition. when I mount
with mount -t /dev/sda17 /btrfs,
it is failing with wrong fs type bad option. when i see the dmesg,
mount command is searching for ext3, ext2 filesystem on sda17. but
not btrfs.
even in the man page of mount, btrfs is not mentioned as supported
file system type.
Please help me to solve this issue.
thanks
rajan
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: hi
2013-09-24 23:39 hi vgrvelu
@ 2013-09-24 23:56 ` Chris Murphy
2013-09-25 13:00 ` hi vgrvelu
2013-09-25 0:48 ` hi Eric Sandeen
1 sibling, 1 reply; 9+ messages in thread
From: Chris Murphy @ 2013-09-24 23:56 UTC (permalink / raw)
To: vgrvelu; +Cc: linux-btrfs
On Sep 24, 2013, at 5:39 PM, vgrvelu <vgrajan2005@gmail.com> wrote:
> hi
>
> I created btrfs file system on one of sda partition. when I mount
> with mount -t /dev/sda17 /btrfs,
remove the -t or add btrfs after it.
Chris Murphy
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: hi
2013-09-24 23:39 hi vgrvelu
2013-09-24 23:56 ` hi Chris Murphy
@ 2013-09-25 0:48 ` Eric Sandeen
1 sibling, 0 replies; 9+ messages in thread
From: Eric Sandeen @ 2013-09-25 0:48 UTC (permalink / raw)
To: vgrvelu; +Cc: linux-btrfs
On 9/24/13 6:39 PM, vgrvelu wrote:
> hi
>
> I created btrfs file system on one of sda partition. when I mount
> with mount -t /dev/sda17 /btrfs,
# mount -t /dev/sda17 /btrfs?
That doesn't work. Maybe you meant :
# mount -t btrfs /dev/sda17 /btrfs ?
> it is failing with wrong fs type bad option. when i see the dmesg,
> mount command is searching for ext3, ext2 filesystem on sda17. but
> not btrfs.
> even in the man page of mount, btrfs is not mentioned as supported
> file system type.
>
> Please help me to solve this issue.
does your kernel support btrfs? Sounds like maybe not.
To load it in case it's a module:
# modprobe btrfs
then see if the kernel even knows what btrfs is, either via the
module, or due to being built into the kernel image already:
# grep btrfs /proc/filesystems
The first cmd might fail if it's built into the kernel, but if that's
the reason, the 2nd one should find btrfs in /proc/filesystems...
If not, you need a kernel that supports btrfs.
-Eric
> thanks
> rajan
> --
> To unsubscribe from this list: send the line "unsubscribe linux-btrfs" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
>
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: hi
2013-09-24 23:56 ` hi Chris Murphy
@ 2013-09-25 13:00 ` vgrvelu
2013-09-25 13:51 ` hi Wang Shilong
2013-09-25 15:29 ` hi Eric Sandeen
0 siblings, 2 replies; 9+ messages in thread
From: vgrvelu @ 2013-09-25 13:00 UTC (permalink / raw)
To: Chris Murphy; +Cc: linux-btrfs
Hi
after doing mofprobe btrfs I could see btrfs entry in proc file
system. But still mount command is failing. It looks like super block
is corrupted
thanks
rajan
On Wed, Sep 25, 2013 at 5:26 AM, Chris Murphy <lists@colorremedies.com> wrote:
>
> On Sep 24, 2013, at 5:39 PM, vgrvelu <vgrajan2005@gmail.com> wrote:
>
>> hi
>>
>> I created btrfs file system on one of sda partition. when I mount
>> with mount -t /dev/sda17 /btrfs,
>
> remove the -t or add btrfs after it.
>
>
>
> Chris Murphy
> --
> To unsubscribe from this list: send the line "unsubscribe linux-btrfs" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
--
A.V.Gomathirajan
M.S Research (Entrepreneurship)
Indian Institute of Technology Madras
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: hi
2013-09-25 13:00 ` hi vgrvelu
@ 2013-09-25 13:51 ` Wang Shilong
2013-09-25 15:29 ` hi Eric Sandeen
1 sibling, 0 replies; 9+ messages in thread
From: Wang Shilong @ 2013-09-25 13:51 UTC (permalink / raw)
To: vgrvelu; +Cc: Chris Murphy, linux-btrfs
Hello,
> Hi
>
> after doing mofprobe btrfs I could see btrfs entry in proc file
> system. But still mount command is failing. It looks like super block
> is corrupted
You can try to recover superblocks.
Steps:
#git clone http://github.com/kdave/btrfs-progs.git
# cd btrfs-progs
# git pull http://github.com/kdave/btrfs-progs.git integration-20130924
# make && make install
# btrfs rescue super-recover -vy <device>
Let's see what will happen..
Thanks,
Wang
>
> thanks
> rajan
>
> On Wed, Sep 25, 2013 at 5:26 AM, Chris Murphy <lists@colorremedies.com> wrote:
>>
>> On Sep 24, 2013, at 5:39 PM, vgrvelu <vgrajan2005@gmail.com> wrote:
>>
>>> hi
>>>
>>> I created btrfs file system on one of sda partition. when I mount
>>> with mount -t /dev/sda17 /btrfs,
>>
>> remove the -t or add btrfs after it.
>>
>>
>>
>> Chris Murphy
>> --
>> To unsubscribe from this list: send the line "unsubscribe linux-btrfs" in
>> the body of a message to majordomo@vger.kernel.org
>> More majordomo info at http://vger.kernel.org/majordomo-info.html
>
>
>
> --
> A.V.Gomathirajan
> M.S Research (Entrepreneurship)
> Indian Institute of Technology Madras
> --
> To unsubscribe from this list: send the line "unsubscribe linux-btrfs" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: hi
2013-09-25 13:00 ` hi vgrvelu
2013-09-25 13:51 ` hi Wang Shilong
@ 2013-09-25 15:29 ` Eric Sandeen
1 sibling, 0 replies; 9+ messages in thread
From: Eric Sandeen @ 2013-09-25 15:29 UTC (permalink / raw)
To: vgrvelu; +Cc: Chris Murphy, linux-btrfs
On 9/25/13 8:00 AM, vgrvelu wrote:
> Hi
>
> after doing mofprobe btrfs I could see btrfs entry in proc file
> system. But still mount command is failing. It looks like super block
> is corrupted
Seems doubtful if you *just* ran mkfs.btrfs.
Can you paste the exact commands you issued, from mkfs to mount,
and the resulting kernel messages?
-Eric
> thanks
> rajan
^ permalink raw reply [flat|nested] 9+ messages in thread
* Hi
@ 2015-10-19 19:23 Judith Guest
0 siblings, 0 replies; 9+ messages in thread
From: Judith Guest @ 2015-10-19 19:23 UTC (permalink / raw)
I am 16 years old girl ,an orphan. I have contacted you to stand as my
Trustee
More details will be sent to you as soon as you acknowledge my mail.
Thanks
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: Hi
@ 2016-04-12 12:58 Stevenson, Marjorie
0 siblings, 0 replies; 9+ messages in thread
From: Stevenson, Marjorie @ 2016-04-12 12:58 UTC (permalink / raw)
How are you doing today? I sent you an email but I am yet to get your response, so I am sending you a reminder.
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2016-04-12 13:13 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-09-24 23:39 hi vgrvelu
2013-09-24 23:56 ` hi Chris Murphy
2013-09-25 13:00 ` hi vgrvelu
2013-09-25 13:51 ` hi Wang Shilong
2013-09-25 15:29 ` hi Eric Sandeen
2013-09-25 0:48 ` hi Eric Sandeen
-- strict thread matches above, loose matches on Subject: below --
2016-04-12 12:58 Hi Stevenson, Marjorie
2015-10-19 19:23 Hi Judith Guest
2011-10-28 11:06 Hi lisa hedstrand
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).