Re: freebsd-update install

2009-01-10 Thread Franck
Yes, it is, I will try Like you say.

Thank you

Franck

2009/1/10 Toni Schmidbauer :
> At Sat, 10 Jan 2009 21:24:30 +0100,
> Franck Royer wrote:
>> r...@methrilla ~ $ freebsd-update install
>> Installing updates...chflags: ///.cshrc: Operation not supported
>
> i think i had the same problem updating one machine from 7.0 to 7.1-BETA2.
> any chance that this file is on an zfs filesystem? if yes, i solved this issue
> by commenting out the chflags calls in freebsd-update.
>
> maybe someone with more insight into zfs and freebsd-update can
> elaborate on this issue.
>
> toni
> --
> Don't forget, there is no security | toni at stderror dot at
> -- Wulfgar | Toni Schmidbauer
>



-- 
Franck Royer

Student of Manchester University in Msc of Advanced Computer Science
Etudiant Ingénieur de l'ENSIIE (Ecole Nationale Supérieure
d'Informatique pour l'Industrie et l'Entreprise)

e-mail/jabber: royer.fra...@gmail.com
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


GPT Support on Freebsd

2008-10-29 Thread Franck
Hi,

Thank you for help. I provide you the maximum information about my partitions.

Before, I watch the kernel configuration. When I fetch the kernel
sources, I can see 2 differents configuration files : DEFAULTS and
GENERIC. and the line : "options GEOM_PART_GPT" is present
only in GENERIC. If I use my knowledge in linux systems, I would say
that my actual kernel was compiled with the DEFAULTS conf, which
doesn't enable the support of GPT for GEOM. Maybe I'm wrong, my knew
kernel is compiling...

On Freebsd :

[EMAIL PROTECTED] /usr/home/Dante]$ ls /dev/|grep ^ad
ad0
ad0s2
ad0s3
ad0s4
ad0s4a
ad0s4b
ad0s4c

my dmesg :
http://pastebin.com/m7b5f130e

On Gentoo :

[EMAIL PROTECTED]:~ % LANG=C sudo parted /dev/sda
GNU Parted 1.8.8
Using /dev/sda
Welcome to GNU Parted! Type 'help' to view a list of commands.
(parted) p
Model: ATA ST9200420ASG (scsi)
Disk /dev/sda: 200GB
Sector size (logical/physical): 512B/512B
Partition Table: gpt

Number  Start   End SizeFile system  Name  Flags
 1  20.5kB  210MB   210MB   fat32EFI System Partition  boot
 2  210MB   19.4GB  19.2GB  hfs+ MacOSX
 3  19.4GB  19.6GB  206MB   ext2
 4  19.6GB  39.5GB  19.9GB
 6  39.5GB  42.7GB  3142MB  linux-swap
 5  42.7GB  58.4GB  15.7GB  ext3 Gentoo
 7  58.4GB  74.1GB  15.7GB  ext3
 9  89.9GB  200GB   110GB   ext3

The 4 is my ufs partition. UFS is not recognize on my gentoo system.
The partition 7 is my home, the one that I want to mount under
freebsd.

Again, thank you for your help

Franck

2008/10/29 John Baldwin <[EMAIL PROTECTED]>:
> On Wednesday 29 October 2008 11:52:19 am Franck Royer wrote:
>> John Baldwin a écrit :
>> > On Wednesday 29 October 2008 07:42:18 am Lowell Gilbert wrote:
>> >
>> >> Franck Royer <[EMAIL PROTECTED]> writes:
>> >>
>> >>
>> >>> Can I oblige pcbsd to look the gpt table instead of the msdos one ? How
>> >>> can I access to my fifth partition ?
>> >>>
>> >> John Baldwin (jhb) has been working on GPT support, but it's still
>> >> reported to be a work in progress. It works as far as recognizing
>> >> disks over 16TB.  It also gets picked up by the geom framework.  I'm
>> >> not sure about booting, although there are tantalizing hints in the
>> >> manual pages.
>> >>
>> >
>> > GPT booting works just fine on 6.x and later.  Using the gpt(8) utility
> you
>> > basically do:
>> >
>> > # gpt create foo0
>> > # gpt boot foo0
>> >
>> > The second command creates a special boot partition in /dev/foo0p1.  You
> can
>> > then add partitions:
>> >
>> > # gpt add -t ufs  foo0
>> > # newfs /dev/foo0p2
>> >
>> > gpart(8) in HEAD works similarly.  The one thing lacking is that
>> > sysinstall/libdisk doesn't handle GPT, so there isn't a nice way to do it
>> > during installation.
>> >
>> >
>> Ok thank you. But actually, it's not what I'm looking for.
>>
>> I use freebsd on a macbook. On this macbook, I already have a gpt,
>> refit, mac os x and some linux partitions. The problem is freebsd, which
>> doesn't recognize partitions after the fourth one (but my gentoo linux
>> see them).
>>
>> Then, I suppose freebsd use the mbr partition table (synchronized from
>> the gpt one using refit) to populate the /dev, but partitions after the
>> fourth, which are those I want to use, are only indexed in the gpt.
>>
>> Finally, I want to force freebsd to use the gpt on my hard drive to
>> allow it to see others partitions.
>>
>> I don't want to destroy my actual gpt, maybe one day, but no right now.
>>
>> Tell me if my english is too bad to be understood.
>>
>> I just want to precise that I use pcvbsd 7.0, so the kernel
>> configuration might be different than the freebsd generic one.
>
> What device entries do you see in /dev?
>
> --
> John Baldwin
>



--
Franck Royer

Student of Manchester University
Etudiant Ingénieur de l'ENSIIE (Ecole Nationale Supérieure
d'Informatique pour l'Industrie et l'Entreprise)

e-mail/jabber: [EMAIL PROTECTED]



-- 
Franck Royer

Student of Manchester University
Etudiant Ingénieur de l'ENSIIE (Ecole Nationale Supérieure
d'Informatique pour l'Industrie et l'Entreprise)

e-mail/jabber: [EMAIL PROTECTED]
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: GPT Support on Freebsd

2008-10-29 Thread Franck
2008/10/29 John Baldwin <[EMAIL PROTECTED]>:
> On Wednesday 29 October 2008 05:39:27 pm Franck wrote:
>> Hi,
>>
>> Thank you for help. I provide you the maximum information about my
> partitions.
>>
>> Before, I watch the kernel configuration. When I fetch the kernel
>> sources, I can see 2 differents configuration files : DEFAULTS and
>> GENERIC. and the line : "options GEOM_PART_GPT" is present
>> only in GENERIC. If I use my knowledge in linux systems, I would say
>> that my actual kernel was compiled with the DEFAULTS conf, which
>> doesn't enable the support of GPT for GEOM. Maybe I'm wrong, my knew
>> kernel is compiling...
>
> The install kernel from the CD is GENERIC.  So only if you've built a custom

I apologize, I didn't watch in the handbook for this

> kernel would you not have GPT support.   It seems that the kernel does find
> the GPT table, but gets confused by it.  Can you get the output of 'fdisk
> ad0' and 'gpt show ad0'?
fdisk ad0 :

*** Working on device /dev/ad0 ***
parameters extracted from in-core disklabel are:
cylinders=387621 heads=16 sectors/track=63 (1008 blks/cyl)

Figures below won't work with BIOS for partitions not in cyl 1
parameters to be used for BIOS calculations are:
cylinders=387621 heads=16 sectors/track=63 (1008 blks/cyl)

Media sector size is 512
Warning: BIOS sector numbering starts with sector 1
Information from DOS bootblock is:
The data for partition 1 is:
sysid 238 (0xee),(EFI GPT)
start 1, size 409639 (200 Meg), flag 0
beg: cyl 1023/ head 254/ sector 63;
end: cyl 1023/ head 254/ sector 63
The data for partition 2 is:
sysid 175 (0xaf),(HFS+)
start 409640, size 37486592 (18304 Meg), flag 0
beg: cyl 1023/ head 254/ sector 63;
end: cyl 1023/ head 254/ sector 63
The data for partition 3 is:
sysid 131 (0x83),(Linux native)
start 37897335, size 401625 (196 Meg), flag 80 (active)
beg: cyl 1023/ head 254/ sector 63;
end: cyl 1023/ head 254/ sector 63
The data for partition 4 is:
sysid 165 (0xa5),(FreeBSD/NetBSD/386BSD)
start 38298960, size 38908800 (18998 Meg), flag 0
beg: cyl 107/ head 0/ sector 1;
end: cyl 818/ head 15/ sector 63

[EMAIL PROTECTED] ~]$ sudo gpt show ad0
gpt show: unable to open device 'ad0': Operation not permitted


>Normally with GPT you don't put a BSD label inside
> a GPT partition, so you wouldn't have /dev/ad0p4a, but instead would use a
> separate GPT partition for each filesystem/swap/etc.  The fstab from my
> laptop (not a macbook) looks like this:
>
> # DeviceMountpoint  FStype  Options DumpPass#
> /dev/ad0p3  noneswapsw  0   0
> /dev/ad0p2  /   ufs rw  1   1
> /dev/ad0p5  /tmpufs rw  2   2
> /dev/ad0p6  /usrufs rw  2   2
> /dev/ad0p4  /varufs rw  2   2
> /dev/acd0   /cdrom  cd9660  ro,noauto   0   0
>
> Are you booting using boot camp or parallels or some such?

Yes, I think It's the problem. Actually I have a Leopard Mac OS X
System. And it seems to automatically switch on the "bootcamp feature"
when I tried to install pcbsd. That's weird because I haven't any
problems to see the gpt table when I boot from a ubuntu cd for
example. If I well remember, I was obliged to install pcbsd in one of
the four first parititions. I'll reboot on the pcbsd cd to see if I
can access to all the partitions.

I realize that's must be efi/refit/bootcamp which mess up all. And I
don't how to fix that.

Thank you,

Franck

>
>> On Freebsd :
>>
>> [EMAIL PROTECTED] /usr/home/Dante]$ ls /dev/|grep ^ad
>> ad0
>> ad0s2
>> ad0s3
>> ad0s4
>> ad0s4a
>> ad0s4b
>> ad0s4c
>>
>> my dmesg :
>> http://pastebin.com/m7b5f130e
>>
>> On Gentoo :
>>
>> [EMAIL PROTECTED]:~ % LANG=C sudo parted /dev/sda
>> GNU Parted 1.8.8
>> Using /dev/sda
>> Welcome to GNU Parted! Type 'help' to view a list of commands.
>> (parted) p
>> Model: ATA ST9200420ASG (scsi)
>> Disk /dev/sda: 200GB
>> Sector size (logical/physical): 512B/512B
>> Partition Table: gpt
>>
>> Number  Start   End SizeFile system  Name  Flags
>>  1  20.5kB  210MB   210MB   fat32EFI System Partition  boot
>>  2  210MB   19.4GB  19.2GB  hfs+ MacOSX
>>  3      19.4GB  19.6GB  206MB   ext2
>>  4  19.6GB  39.5GB  19.9GB
>>  6  39.5GB  42.7GB  3142MB  lin

freebsd-update install

2009-01-10 Thread Franck Royer
Hi,

I tried to upgrade my system from 7.0-RELEASE to 7.1-RELEASE.
I first do a 'freebsd-update upgrade -r 7.1-RELEASE' without any problem.

Then I do 'freebsd-update update' and I have this output :

r...@methrilla ~ $ freebsd-update install
Installing updates...chflags: ///.cshrc: Operation not supported

What can I do for this ?

Thank.

Franck
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re: freebsd-update install

2009-01-10 Thread Franck Royer
Toni Schmidbauer a écrit :
> At Sat, 10 Jan 2009 22:18:57 +,
> Thomas Sparrevohn wrote:
>   
>> If you are using version 13 of ZFS - you just need to run zfs upgrade -a 
>> 
>
> thanks for the hint, i think you mean 'zpool upgrade'.
>
> as far as i can tell fbsd 7.1 only supports version 6, this is what
> 'zpool upgrade -v' tells me. if i recall correctly there was an update
> to version 13 in fbsd-current.
>
> see also 
>
> http://svn.freebsd.org/viewvc/base?view=revision&revision=185029:
>
> - chflags(2)
>   Not all the flags are supported. This still needs work.
>
> toni
>   
Thanks for all this infos. I have another question about the zfs kernel
module : is it still in the GENERIC kernel in the release 7.1 ? Or do I
need to include it and recompile the kernel before the first reboot ?

Franck
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


GPT Support on Freebsd

2008-10-27 Thread Franck Royer
Hi,

That's my first real try of a bsd system.

I installed pc bsd (the last version) on my macbook.

I use refit to sync my dos and gui partition table.

I already have many partitions :

- fat32 (containing the firmware of the macbook)
- hfsplus (mac os X + the files for efi)
- ext2 ( /boot of my gentoo system )
- ufs (PCBSD)
- ext3 (my /home of my gentoo system )
- some other stuff

I would like to mount my /home in pcbsd. The problem is pcbsd populate
the /dev only with the four first partitions. It's the partitions that
are in the msdos table.

Can I oblige pcbsd to look the gpt table instead of the msdos one ? How
can I access to my fifth partition ?

If you need more informations or logs, just tell me :D

Thank you.

Franck

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: GPT Support on Freebsd

2008-10-29 Thread Franck Royer
John Baldwin a écrit :
> On Wednesday 29 October 2008 07:42:18 am Lowell Gilbert wrote:
>   
>> Franck Royer <[EMAIL PROTECTED]> writes:
>>
>> 
>>> Can I oblige pcbsd to look the gpt table instead of the msdos one ? How
>>> can I access to my fifth partition ?
>>>   
>> John Baldwin (jhb) has been working on GPT support, but it's still
>> reported to be a work in progress. It works as far as recognizing
>> disks over 16TB.  It also gets picked up by the geom framework.  I'm
>> not sure about booting, although there are tantalizing hints in the
>> manual pages.
>> 
>
> GPT booting works just fine on 6.x and later.  Using the gpt(8) utility you 
> basically do:
>
> # gpt create foo0
> # gpt boot foo0
>
> The second command creates a special boot partition in /dev/foo0p1.  You can 
> then add partitions:
>
> # gpt add -t ufs  foo0
> # newfs /dev/foo0p2
>
> gpart(8) in HEAD works similarly.  The one thing lacking is that 
> sysinstall/libdisk doesn't handle GPT, so there isn't a nice way to do it 
> during installation.
>
>   
Ok thank you. But actually, it's not what I'm looking for.

I use freebsd on a macbook. On this macbook, I already have a gpt,
refit, mac os x and some linux partitions. The problem is freebsd, which
doesn't recognize partitions after the fourth one (but my gentoo linux
see them).

Then, I suppose freebsd use the mbr partition table (synchronized from
the gpt one using refit) to populate the /dev, but partitions after the
fourth, which are those I want to use, are only indexed in the gpt.

Finally, I want to force freebsd to use the gpt on my hard drive to
allow it to see others partitions.

I don't want to destroy my actual gpt, maybe one day, but no right now.

Tell me if my english is too bad to be understood.

I just want to precise that I use pcvbsd 7.0, so the kernel
configuration might be different than the freebsd generic one.

Thank you for your answers.

Franck
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: GPT Support on Freebsd

2008-10-29 Thread Franck Royer
More news :

1) Boot from the livecd pcbsd
- Like I remember, pcbsd shows me only the first four partitions in the 
installation wizard. That's correspond to the partitions which are 
synchronised from the gpt by refit.
- When I boot to emergency mode, I am able to access to all my 
partitions ! 
and a "gpt show ad0" works fine. But, still from the emergency mode, I chroot 
in my pcbsd root partition, I can't see the gpt anymore. Pretty weird...

2) New kernel
Like I said, I recompile a kernel from the generic with two more lines :
"options GEOM_PART_MBR"
"options EXT2FS"
When I booted on it, I had a problem : ad0 became ad5. So the mountroot asked 
me to enter the name of my root partition and Miracle ! it show me ALL my gpt 
partitions, include my Home in ext2.

Then I enter "ad5s4a" which is my pcbsd root partition.
After the boot, I thought all was fixed but no, I still can only see the 4 
first partitions in the /dev and "gpt show ad5" still returns an error.

It's pretty weird because before the mount of the root partition, i was able 
to see all my gpt partitions, then after, the problem remains.

I don't enough know the freebsd boot process to understand by myself. Any 
Ideas ?

Franck



> Hi,
>
> Thank you for help. I provide you the maximum information about my
> partitions.
>
> Before, I watch the kernel configuration. When I fetch the kernel
> sources, I can see 2 differents configuration files : DEFAULTS and
> GENERIC. and the line : "options GEOM_PART_GPT" is present
> only in GENERIC. If I use my knowledge in linux systems, I would say
> that my actual kernel was compiled with the DEFAULTS conf, which
> doesn't enable the support of GPT for GEOM. Maybe I'm wrong, my knew
> kernel is compiling...
>
> On Freebsd :
>
> [EMAIL PROTECTED] /usr/home/Dante]$ ls /dev/|grep ^ad
> ad0
> ad0s2
> ad0s3
> ad0s4
> ad0s4a
> ad0s4b
> ad0s4c
>
> my dmesg :
> http://pastebin.com/m7b5f130e
>
> On Gentoo :
>
> [EMAIL PROTECTED]:~ % LANG=C sudo parted /dev/sda
> GNU Parted 1.8.8
> Using /dev/sda
> Welcome to GNU Parted! Type 'help' to view a list of commands.
> (parted) p
> Model: ATA ST9200420ASG (scsi)
> Disk /dev/sda: 200GB
> Sector size (logical/physical): 512B/512B
> Partition Table: gpt
>
> Number  Start   End SizeFile system  Name  Flags
>  1  20.5kB  210MB   210MB   fat32EFI System Partition  boot
>  2  210MB   19.4GB  19.2GB  hfs+ MacOSX
>  3  19.4GB  19.6GB  206MB   ext2
>  4  19.6GB  39.5GB  19.9GB
>  6  39.5GB  42.7GB  3142MB  linux-swap
>  5  42.7GB  58.4GB  15.7GB  ext3 Gentoo
>  7  58.4GB  74.1GB  15.7GB  ext3
>  9  89.9GB  200GB   110GB   ext3
>
> The 4 is my ufs partition. UFS is not recognize on my gentoo system.
> The partition 7 is my home, the one that I want to mount under
> freebsd.
>
> Again, thank you for your help
>
> Franck
>
> 2008/10/29 John Baldwin <[EMAIL PROTECTED]>:
> > On Wednesday 29 October 2008 11:52:19 am Franck Royer wrote:
> >> John Baldwin a écrit :
> >> > On Wednesday 29 October 2008 07:42:18 am Lowell Gilbert wrote:
> >> >> Franck Royer <[EMAIL PROTECTED]> writes:
> >> >>> Can I oblige pcbsd to look the gpt table instead of the msdos one ?
> >> >>> How can I access to my fifth partition ?
> >> >>
> >> >> John Baldwin (jhb) has been working on GPT support, but it's still
> >> >> reported to be a work in progress. It works as far as recognizing
> >> >> disks over 16TB.  It also gets picked up by the geom framework.  I'm
> >> >> not sure about booting, although there are tantalizing hints in the
> >> >> manual pages.
> >> >
> >> > GPT booting works just fine on 6.x and later.  Using the gpt(8)
> >> > utility
> >
> > you
> >
> >> > basically do:
> >> >
> >> > # gpt create foo0
> >> > # gpt boot foo0
> >> >
> >> > The second command creates a special boot partition in /dev/foo0p1. 
> >> > You
> >
> > can
> >
> >> > then add partitions:
> >> >
> >> > # gpt add -t ufs  foo0
> >> > # newfs /dev/foo0p2
> >> >
> >> > gpart(8) in HEAD works similarly.  The one thing lacking is that
> >> > sysinstall/libdisk doesn't handle GPT, so there isn't a nice way to do
> >> > it during installation.
> >>
> >> Ok thank you. But actually, it&

geom lvm class - glvm

2008-12-20 Thread Franck Royer
 Hi,

I found this entry on the official website :

http://www.freebsd.org/news/status/r...0-2007-12.html


But I didn't find any other information about the geom lvm class or glvm.

How can i activate it in the kernel ? Is here any tools about it ?

Thank
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re: geom lvm class - glvm

2008-12-20 Thread Franck Royer
Ivan Voras a écrit :
> Franck Royer wrote:
>   
>>  Hi,
>>
>> I found this entry on the official website :
>>
>> http://www.freebsd.org/news/status/r...0-2007-12.html
>> <http://www.freebsd.org/news/status/report-2007-10-2007-12.html>
>>
>> But I didn't find any other information about the geom lvm class or glvm.
>>
>> How can i activate it in the kernel ? Is here any tools about it ?
>> 
>
> It's still here, it's just been renamed to geom_linux_lvm to avoid
> confusion with possible future native LVM.
>   
Thank you but what do you mean ? Because When I add "option
GEOM_LINUX_LVM" in the kernel configuration, this option is refused. And
when I try a kldload geom_linux_lvm the module is still not found.

Franck

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re: geom lvm class - glvm

2008-12-20 Thread Franck Royer
Apparently, the option is only available on freebsd-8.0.

I will check If I can compile a Freebsd-8.0 kernel on a freebsd-7.0 just
for getting the files from my lvm and then going back on a stable kernel.

Franck

Franck Royer a écrit :
> Ivan Voras a écrit :
>   
>> Franck Royer wrote:
>>   
>> 
>>>  Hi,
>>>
>>> I found this entry on the official website :
>>>
>>> http://www.freebsd.org/news/status/r...0-2007-12.html
>>> <http://www.freebsd.org/news/status/report-2007-10-2007-12.html>
>>>
>>> But I didn't find any other information about the geom lvm class or glvm.
>>>
>>> How can i activate it in the kernel ? Is here any tools about it ?
>>> 
>>>   
>> It's still here, it's just been renamed to geom_linux_lvm to avoid
>> confusion with possible future native LVM.
>>   
>> 
> Thank you but what do you mean ? Because When I add "option
> GEOM_LINUX_LVM" in the kernel configuration, this option is refused. And
> when I try a kldload geom_linux_lvm the module is still not found.
>
> Franck
>
> ___
> freebsd-questions@freebsd.org mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"
>   

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re: geom lvm class - glvm

2008-12-20 Thread Franck Royer
Ivan Voras a écrit :
> 2008/12/20 Franck Royer :
>   
>> Apparently, the option is only available on freebsd-8.0.
>> 
>
> /boot/kernel/geom_linux_lvm.ko is present in 7-STABLE.
>   
Sorry, but it's not the case on my freebsd.
my uname -a : FreeBSD methrilla-test.home 7.0-RELEASE FreeBSD
7.0-RELEASE #0: Fri Dec 12 21:54:37 GMT 2008
r...@methrilla-test.home:/usr/obj/usr/src/sys/ZFS  i386

How did you do that ?
>   
>> I will check If I can compile a Freebsd-8.0 kernel on a freebsd-7.0 just
>> for getting the files from my lvm and then going back on a stable kernel.
>> 
> ___
> freebsd-questions@freebsd.org mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"
>   

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re: geom lvm class - glvm

2008-12-20 Thread Franck Royer
Ivan Voras a écrit :
> 2008/12/21 Franck Royer :
>   
>> Ivan Voras a écrit :
>>     
>>> 2008/12/20 Franck Royer :
>>>
>>>   
>>>> Apparently, the option is only available on freebsd-8.0.
>>>>
>>>> 
>>> /boot/kernel/geom_linux_lvm.ko is present in 7-STABLE.
>>>
>>>   
>> Sorry, but it's not the case on my freebsd.
>> my uname -a : FreeBSD methrilla-test.home 7.0-RELEASE FreeBSD
>> 7.0-RELEASE #0: Fri Dec 12 21:54:37 GMT 2008
>> r...@methrilla-test.home:/usr/obj/usr/src/sys/ZFS  i386
>>
>> How did you do that ?
>> 
>
> Probably by using 7-STABLE, not 7.0-RELEASE :)
>   
Good point, I didn't see the difference, I'm still a newbie in Freebsd
:) Thank you !
> 
>
> ___
> freebsd-questions@freebsd.org mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


empty root password

2008-12-24 Thread Franck Royer
Hi,

It's not a "how can I recover my root password" but something more weird.

I copied my root filesystem from a partition to another with rsync -Pia.
But since that moment, I don't need any password to log myself as root
or to do a "su" from a user who is in the wheel group.

I did some passwd on root, but that changes nothing. And my normal user
password wasn't affected.

What can I do ?

Thank you

Franck
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"