Re: Installing Matlab

2013-03-01 Thread Vijay Kaul
On Fri, Feb 15, 2013 at 11:40 AM, Tijl Coosemans t...@coosemans.org wrote:
 On 15-02-2013 10:36, Tijl Coosemans wrote:
 On 14-02-2013 22:42, Vijay Kaul wrote:
 I was wondering if anyone has had any recent (or not-so-recent)
 experience installing Matlab on FreeBSD/PC-BSD? (Yes, I know about
 octave.)

  I'm not entirely new to *nix, but I'm novice enough that I can't seem
 to get this to work.

  Perhaps the shortest and simplest solution would be if Mathworks own
 installer would function, but that runs as a Java Web Start
 application, and I can't seem to get that working in Opera, Firefox,
 or Konqueror.

  The automatic rout having failed, I've downloaded the files manually,
 and I've tried to run the install script; however, it's failed as
 well. I found this site:
 http://matrossi.blogspot.com/2011/08/installing-matlab-2011a-on-freebsd.html,
 which claims installation instructions for PC-BSD8.2 boiling down to:
 open up the shell scripts and take /bin/sh -- /compat/linux/bin/sh.
 Well, that seems to help a bit, but it also fails because the install
 script determines my architecture to be x68, while the downloads are
 for (what they call) a64. (My system is indeed a 64-bit system.
 Perhaps the above instructions were for an x86 system.)

  I feel like if I could modify the install script sufficiently, the
 install would work. My bash scripting is weak, though, and I worry
 about screwing up my system and/or the installation. There are only a
 few functions in there that are looking for architecture type, usually
 with the output from uname. I think fixing those would work...?

  Could anyone help me get past this point?

  Thanks in advance! And please, if there's any info I can provide that
 would be helpful, please just let me know.

  Output of uname -a:
  FreeBSD pcbsd-8517 9.1-RELEASE FreeBSD 9.1-RELEASE #2: Tue Nov 27
 03:45:16 UTC 2012
 root@darkstar:/usr/obj/pcbsd-build90/fbsd-source/9.1/sys/GENERIC amd64

  The install script in question: http://pastebin.com/QkEH1vkF

 Try creating this link:

 ln -s ../usr/bin/expr /compat/linux/bin/expr

 Without this link Linux scripts run the FreeBSD expr which isn't fully
 compatible.

 And also, the Linux compatibility layer is 32bit so you need the x86
 version of Matlab.


Oh, I didn't realize that Linux on FBSD was 32 bit. Thanks for
pointing that out. BTW, mathworks has stopped releasing new 32-bit
versions of matlab for linux, but you can still get R2012a for 32-bit
linux.

Regarding the linking advice I have a /bin/expr and
/compat/linux/usr/bin/expr. My naivety is showing, but if I did

~ ln -s /usr/bin/expr /compat/linux/usr/bin/expr

don't I also need to edit my path so that the script would find my
link before finding the built-in FBSD command? Currently, my path
begins: /sbin:/bin:/usr/sbin:/usr/bin:/usr/games:/usr/local/sbin:/usr/local/bin:
 So I think the script would still use '/bin/expr'.

The install of the 32-bit linux matlab does still throw the error:

expr: illegal option -- r
expr: usage: expr [-e] expression

presumably because I need to use the linux version. (The install
script itself is essentially identical to the last.) It also is
throwing some Java exceptions, but maybe let's take this one error at
a time!

Thanks for the tips and help so far!
--Vijay
___
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: Installing Matlab

2013-03-01 Thread Vijay Kaul
On Fri, Mar 1, 2013 at 3:27 PM, Tijl Coosemans t...@coosemans.org wrote:
 On 01-03-2013 21:07, Vijay Kaul wrote:
 On Fri, Feb 15, 2013 at 11:40 AM, Tijl Coosemans t...@coosemans.org wrote:
 On 15-02-2013 10:36, Tijl Coosemans wrote:
 On 14-02-2013 22:42, Vijay Kaul wrote:
 I was wondering if anyone has had any recent (or not-so-recent)
 experience installing Matlab on FreeBSD/PC-BSD? (Yes, I know about
 octave.)

  I'm not entirely new to *nix, but I'm novice enough that I can't seem
 to get this to work.

  Perhaps the shortest and simplest solution would be if Mathworks own
 installer would function, but that runs as a Java Web Start
 application, and I can't seem to get that working in Opera, Firefox,
 or Konqueror.

  The automatic rout having failed, I've downloaded the files manually,
 and I've tried to run the install script; however, it's failed as
 well. I found this site:
 http://matrossi.blogspot.com/2011/08/installing-matlab-2011a-on-freebsd.html,
 which claims installation instructions for PC-BSD8.2 boiling down to:
 open up the shell scripts and take /bin/sh -- /compat/linux/bin/sh.
 Well, that seems to help a bit, but it also fails because the install
 script determines my architecture to be x68, while the downloads are
 for (what they call) a64. (My system is indeed a 64-bit system.
 Perhaps the above instructions were for an x86 system.)

  I feel like if I could modify the install script sufficiently, the
 install would work. My bash scripting is weak, though, and I worry
 about screwing up my system and/or the installation. There are only a
 few functions in there that are looking for architecture type, usually
 with the output from uname. I think fixing those would work...?

  Could anyone help me get past this point?

  Thanks in advance! And please, if there's any info I can provide that
 would be helpful, please just let me know.

  Output of uname -a:
  FreeBSD pcbsd-8517 9.1-RELEASE FreeBSD 9.1-RELEASE #2: Tue Nov 27
 03:45:16 UTC 2012
 root@darkstar:/usr/obj/pcbsd-build90/fbsd-source/9.1/sys/GENERIC amd64

  The install script in question: http://pastebin.com/QkEH1vkF

 Try creating this link:

 ln -s ../usr/bin/expr /compat/linux/bin/expr

 Without this link Linux scripts run the FreeBSD expr which isn't fully
 compatible.

 And also, the Linux compatibility layer is 32bit so you need the x86
 version of Matlab.


 Oh, I didn't realize that Linux on FBSD was 32 bit. Thanks for
 pointing that out. BTW, mathworks has stopped releasing new 32-bit
 versions of matlab for linux, but you can still get R2012a for 32-bit
 linux.

 Regarding the linking advice I have a /bin/expr and
 /compat/linux/usr/bin/expr. My naivety is showing, but if I did

 ~ ln -s /usr/bin/expr /compat/linux/usr/bin/expr

 That's not the same command as above.

You're right. I didn't understand at first, but I think the command
you suggested assumed that the working directory was
/compat/linux/bin.


 don't I also need to edit my path so that the script would find my
 link before finding the built-in FBSD command? Currently, my path
 begins: 
 /sbin:/bin:/usr/sbin:/usr/bin:/usr/games:/usr/local/sbin:/usr/local/bin:
  So I think the script would still use '/bin/expr'.

 Under Linux compat the order becomes:

 1: /compat/linux/sbin/expr
 2: /sbin/expr
 3: /compat/linux/bin/expr   - You need to create this as a link to 7
 4: /bin/expr- FreeBSD expr
 5: /compat/linux/usr/sbin/expr
 6: /usr/sbin/expr
 7: /compat/linux/usr/bin/expr   - Linux expr
 8: /usr/bin/expr
 ...

I don't have #s 1, 2, 5, 6, or 8. I have created 3 as a link to 7.
(And, of course, still have 4.)
This does, indeed, clear up any errors from expr! Thanks!!

snip

The next issue is the java errors given. A brief linux install guide I
was given instructed:

... (2) install Sun/Oracle java and plugin (32-bit) and you may
actually need to use one or two versions back from the current version
(depending on what's in the repositories anyway)

I have, currently, installed the OpenJDK b27 PBI (recall I'm really
on PC-BSD).

Any tips or suggestions on where to find and how to install Oracle's
Java? Why might I need an older version of Java? (Maybe they mean
going back to JRE 6?) How would I know? (I ask about where to get
Java, since Oracle claims only to support linux, and the handbook
doesn't seem to have a section on it. I'm wondering if there's a right
and wrong way to go here.)

The Java exceptions I see are at http://pastebin.com/GJCnEXfR.

If I can get all this done, and get matlab working, I'd love to
contribute the write-up to the Handbook. It's matlab installation
information is, um, dated, though I hope the post-install information
has remained accurate.
___
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


Installing Matlab

2013-02-14 Thread Vijay Kaul
I was wondering if anyone has had any recent (or not-so-recent)
experience installing Matlab on FreeBSD/PC-BSD? (Yes, I know about
octave.)

 I'm not entirely new to *nix, but I'm novice enough that I can't seem
to get this to work.

 Perhaps the shortest and simplest solution would be if Mathworks own
installer would function, but that runs as a Java Web Start
application, and I can't seem to get that working in Opera, Firefox,
or Konqueror.

 The automatic rout having failed, I've downloaded the files manually,
and I've tried to run the install script; however, it's failed as
well. I found this site:
http://matrossi.blogspot.com/2011/08/installing-matlab-2011a-on-freebsd.html,
which claims installation instructions for PC-BSD8.2 boiling down to:
open up the shell scripts and take /bin/sh -- /compat/linux/bin/sh.
Well, that seems to help a bit, but it also fails because the install
script determines my architecture to be x68, while the downloads are
for (what they call) a64. (My system is indeed a 64-bit system.
Perhaps the above instructions were for an x86 system.)

 I feel like if I could modify the install script sufficiently, the
install would work. My bash scripting is weak, though, and I worry
about screwing up my system and/or the installation. There are only a
few functions in there that are looking for architecture type, usually
with the output from uname. I think fixing those would work...?

 Could anyone help me get past this point?

 Thanks in advance! And please, if there's any info I can provide that
would be helpful, please just let me know.

 Output of uname -a:
 FreeBSD pcbsd-8517 9.1-RELEASE FreeBSD 9.1-RELEASE #2: Tue Nov 27
03:45:16 UTC 2012
root@darkstar:/usr/obj/pcbsd-build90/fbsd-source/9.1/sys/GENERIC amd64

 The install script in question: http://pastebin.com/QkEH1vkF

 Thanks again,
 --Vijay
___
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


SORRY. NO SPACE IN lost+found DIRECTORY

2009-04-16 Thread vijay kumar
 

___
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


My birthday calendar

2007-02-12 Thread Vijay D

   Vijay D ([EMAIL PROTECTED]) is a member of BirthdayTime.com
   and wants to know your birthday.
   Vijay D says:
   Hi !!
   I'm inviting you to enter your birthday into my calendar at
   BirthdayTime.
   You will help me remember it!
   Click here to enter your birthday into my list:[2]
   http://www.birthdaytime.com/add_birthday/Vijay D
   Thanks!
   Vijay D
   ---
   What is BirthdayTime?
   BirthdayTime is a free birthday/holiday reminder service that notifies
   you about upcoming dates before it is too late!
   ---
   Why did I receive this email?
   Vijay D ([EMAIL PROTECTED]) wants to be notified when your
   birthday is near. It's safe, fast, and provides a valuable service!
   ---
   I don't know who Vijay D is!
   It's possible that you were included in someone's birthday request
   because you appear in his/her email contact list.
   ---
   This email was sent by Vijay D ([EMAIL PROTECTED])
   To stop receiving emails from birthdaytime, please click here:
   http://www.birthdaytime.com/cancelfollow.php?id=MbFWaDcn50zG0Y44IdtHiW
   Np0sKeVMn%2BVbPZhxltIR8%3Ddata=gpGqFOG2ZV9izgpluSTpHP6YRMOD4SG3BcGOl9
   OqePqlnR%2Fo5QXfaA%3D%3D
   BirthdayTime's offices are located at 2202 S.Figueroa St, Los Angeles,
   CA 90007.

References

   1. mailto:[EMAIL PROTECTED]
   2. 
http://www.birthdaytime.com/addyourbday.php?id=MbFWaDcn50zG0Y44IdtHiWNp0sKeVMn%2BVbPZhxltIR8%3Ddata=gpGqFOG2ZV9izgpluSTpHP6YRMOD4SG3BcGOl9OqePqlnR%2Fo5QXfaA%3D%3D
   3. mailto:[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: pls help me

2006-08-16 Thread vijay d

Respected Sir/Madam,



   My name is vijay, please dont neglect my e-mail.

I have a quention on parallel port.

I will be thank full to you, if you reply to my mail.


My question is,

It is possible to determine the address in the data lines(D0-D7)

of our parallel port(D-25,female), which is connected to our PC?

Is there any controle word, so that i can get the address in data lines(D0-D7)?

It is necessary to enable any options in  BIOS, to receive the address in the

parallel port?

How can i connect the number of terminal to my parallel port? and  How can

i determine(get) the address in parallel port, when a perticular  terminals is

enabled?

If i use socket programming exactly how can i determine(get) the address of

diffrent ports in my parallel port ?


It is necessary that, i should decode or encode the obtained informations(data)

when i connect the barcode reader to parallel port?


Where can i find the realated documents for this?

I kindly requesting   to provide a good soultion for this by giving the some

sample program in C(Turbo c) and Java.


Thanking you,




waiting for your reply,



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


compile error

2005-10-20 Thread vijay singh
Hello, I see the following error on a (kernel) make, after a recent cvsup.
 11# make
cc -c -O2 -pipe -fno-strict-aliasing -Wall -Wredundant-decls
-Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith
-Winline -Wcast-qual -fformat-extensions -std=c99 -nostdinc -I- -I.
-I../../.. -I../../../contrib/dev/acpica -I../../../contrib/altq -D_KERNEL
-DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common
-finline-limit=8000 --param inline-unit-growth=100 --param
large-function-growth=1000 -mno-align-long-strings
-mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2
-mno-sse3 -ffreestanding -Werror ../../../fs/devfs/devfs_vnops.c
../../../fs/devfs/devfs_vnops.c:1148: warning: redundant redeclaration of
'devfs_ops_f'
../../../fs/devfs/devfs_vnops.c:70: warning: previous declaration of
'devfs_ops_f' was here
../../../fs/devfs/devfs_vnops.c:1159: warning: redundant redeclaration of
'devfs_vnodeops'
../../../fs/devfs/devfs_vnops.c:68: warning: previous declaration of
'devfs_vnodeops' was here
../../../fs/devfs/devfs_vnops.c:1181: warning: redundant redeclaration of
'devfs_specops'
../../../fs/devfs/devfs_vnops.c:69: warning: previous declaration of
'devfs_specops' was here
*** Error code 1
 Annotate shows that both entries are as of commit 1.122. What am I missing?
br
vijay
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


What is NFS Square (NFS^2)

2005-09-19 Thread vijay pande
Hi all,
Does any one know what is NFS Square. It is the property of Network File 
System which provides dual namespace in single file system. If anybody knows 
where do I can get the related information?
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


CVS Web installation procedures required

2005-02-24 Thread vijay
Hi,
iam a new bie to cvs and i have installed cvs on linux.
i require the installation procedures(steps) for installing cvsWeb on
the linux system.
i tried what i got from the web there are errors and did not seem to work out.

can anyone help me out with this

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


Re: error downloading

2004-11-28 Thread Vijay Anand
Error msg doesnt show any hints on the line of code it throws the 
error..!




Lowell Gilbert [EMAIL PROTECTED]
Sent by: [EMAIL PROTECTED]
11/28/2004 08:02 PM
Please respond to freebsd-questions

 
To: Vijay Anand [EMAIL PROTECTED]
cc: [EMAIL PROTECTED]
Subject:Re: error downloading


Vijay Anand [EMAIL PROTECTED] writes:

 It is a local IP.Plz help me.

Ah.  So you are running your own cvsweb installation; that wasn't
at all clear from the original message.  I'm afraid I don't know
anything about the cvsweb software itself; however, the first step is
obviously to check on the hints that the software gave you along with
the error message:

  Error Error: Unexpected output from cvs co: cvs [checkout aborted]: 
  Absolute module reference invalid: `/Motolog/MotoLogDLL.vbp' 
  Check whether the directory /cm/vault/automation_utilities/CVSROOT 
exists 
  and the script has write-access to the CVSROOT/history file if it 
exists.
  The script needs to place lock files in the directory the file is in 
as 
  well. 


__




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


error downloading

2004-11-24 Thread Vijay Anand
Hi 

When i try to download from cvsweb i get the following error.I checked for 
folders and permission.

please help me in this regard.

Error Error: Unexpected output from cvs co: cvs [checkout aborted]: Absolute 
module reference invalid: `/Motolog/MotoLogDLL.vbp' 
Check whether the directory /cm/vault/automation_utilities/CVSROOT exists 
and the script has write-access to the CVSROOT/history file if it exists.
The script needs to place lock files in the directory the file is in as 
well. 



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


Liberal vs Conservative [Re: GPL vs BSD Licence]

2004-10-25 Thread Vijay Kaul
Forgive my etiquete, please. Since I'm certainly not answering any  
questions, I felt it appropriate to take this off of questions. Is that  
good form, or have I put the proverbial foot in mouth?

On Mon, 25 Oct 2004 09:47:14 -0400 (EDT), [EMAIL PROTECTED] wrote:
In a message dated 10/25/04 4:21:53 AM Eastern Daylight Time,
[EMAIL PROTECTED] writes:
-- big snip --
The lack of foresight of the GPL is that, if Jupiter  had no choice but  
to
give away their work, then the work never would have been done, so even
people willing to pay for it wouldn't have it.

The GPL vs BSD issue is like liberal vs conservative.
I agree-ish. However, I would say that conservative implies (loosely)  
remaining the same, which is to say, supporting institutions or  
traditions already in place.
On the other hand, liberal, in this case, would mean the opposite:  
unbound by tradition. (liberal also, of course, is anti-authoritarian)
Both licences seem to be liberal, then, in that they break from  
traditional licencing. Look deeper, though, and you see that the BSD  
licence allows further development without restriction, while the GPL  
licence imposes its own tradition, as best it can, in perpetuity.

The liberal plaform
sounds
good and reasonable to those who don't understand the bigger picture.
This was the comment to which I had to reply. I know the GPL/BSD argument  
has been had over and over again. Is GPL free-er or is BSD free-er,  
etc. And, although I did bring it up, I'm sorry :P  I must point out,  
though, that I always considered the BSD licence to be the most liberal  
available. Also, I find it insulting to think that by following a liberal  
platform, I'm missing the bigger picture. In fact, I feel that by  
following the *conservative* GPL licence, many are missing the bigger  
picture: if you attempt to exert any sort of authority over things (code,  
furniture, land, people) you will propigate the notion that authority over  
those things is an acceptable one. By truly relinquishing control over the  
things, you are allowing freedom, as an ideology and practice, to gain  
momentum--not to mention, being quite liberal.

-snip-
FreeBSD is a perfect example of a thriving project with BSD licensing. Is
FreeBSD
a dead end? Is the community worse off because companies like Cayote  
Point
and
Emerging Technologies don't give the source to their products? No,  
because
those
products never would have been created if they were hindered by the GPL.
Absolutely. And maybe, after existing for decades and gaining more and  
more market share, and, therefore, economic value, these companies will  
decide that BSDing their code: is *not* financial suicide, will spur  
innovation, allows them to improve their product cheaply and quickly,  
improves securit, on  on, and so, they will. Instead of forcing the  
licence on these companies, as the GPL would've done, the BSD licence, and  
the success of BSD/Open Source projects, is simply showing the way. If  
that's not a liberal idea, what is?

--
Using Opera's revolutionary e-mail client: http://www.opera.com/m2/
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Liberal vs Conservative [Re: GPL vs BSD Licence]

2004-10-25 Thread Vijay Kaul
On Mon, 25 Oct 2004 09:52:01 -0500, Vijay Kaul [EMAIL PROTECTED] wrote:
Forgive my etiquete, please. Since I'm certainly not answering any  
questions, I felt it appropriate to take this off of questions. Is  
that good form, or have I put the proverbial foot in mouth?
Ha!!! And then, truly puting said foot in mouth, I post to questions  
anyway! Take that! (oops.)
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: gbde blackening feature - how can on disk keys be destroyed thoroughly?

2004-09-03 Thread Vijay Kaul
On Fri, 03 Sep 2004 19:41:18 -0400, Len Zettel [EMAIL PROTECTED] wrote:
snip
While i am not an expert in this area, I can not help but wonder---
Who are you worried about recovering the data, under what
circumstances?  My best guess is that recovering anything from
even _one_ data over-write is going to require that the recoverer have
physical posession of the drive and very sophisticated equipment
indeed.  That means they have to be some branch of a govermnment.
If you are going to attract attention of that caliber there are likely a  
lot
of other easier means of finding out what you are up to.  Otherwise, a
good hot fire ought to be pretty final even for the CIA.
   -LenZ-
I used to work in a lab and a co-worker had be a submarier for the US. He  
said that one of their projects was to figure out how to best destroy CDs  
for the government. Supposedly the CDs were recoverable even after  
cross-shredding. They either decided that melting them over a heatsink  
(coffee mug) in a microwave (also makes a nice ash tray) or going at them  
with an acetaline torch was the final solution.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: microuptime() went backwards

2004-04-23 Thread Vijay

On Fri, 2004-04-23 at 11:34, hugle wrote:
 Hello all.
 SOmetimes I see such messages in dmesg.
 
 perl# dmesg
 uptime() went backwards (1574174.333073 - 1573478.944788)
 
Is your system clock working fine ?

 what they mean? and what causes them to appear ?
 is it good or bad?? :)
---
Vijay

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


Re: Booting Q.

2004-04-22 Thread Vijay
Which OS did you install first? Fedora/FreeBSD ? 
I've FreeBSD first and then RH9. The Grub Seems to load the FBSD without
any problem.

On Fri, 2004-04-23 at 08:40, MIchael Alexander wrote:
   What is the command to make a bootable disk for FreeBSD? I need it in
 case I screw up my latest project. I have a dual OS set-up running BSD
 and Fedora C1. Fedora only boots from a floppy disk and doesn't show up
 as bootable when trying to boot from FreeBSD boot loader. Both
 partitions are primary. How do I get Fedora to become bootable. When I
 fix Fedora does the FreeBSD boot utility have an OS finder (like Acronis
 BL)?
 
 ___
 [EMAIL PROTECTED] mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to [EMAIL PROTECTED]
 
 

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


Re: chflags understanding

2004-04-22 Thread Vijay

On Fri, 2004-04-23 at 09:02, Alden Louis-Pierre wrote:
 I'm looking through the Handbook to learn how to secure my FreeBSD 
 4.9 system.  While reading 10.2( 
 http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/security-intro.html
 ) it makes reference to the chflags command.
 Is there a difference between chflags -R schg /sbin * and chflags 
 schg /sbin *?

The '-R' flag sets all the files in the /sbin including any files under
the /sbin directory tree. Without it it will affect only the files under
/sbin
 
 Thank You
 
 
 ___
 [EMAIL PROTECTED] mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to [EMAIL PROTECTED]
 
 

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


RE: Booting Q.

2004-04-22 Thread Vijay

On Fri, 2004-04-23 at 09:24, MIchael Alexander wrote:
 Vijay wrote : Which OS did you install first? Fedora/FreeBSD ? 
 I've FreeBSD first and then RH9. The Grub Seems to load the FBSD without
 any problem.
 
 
   Fedora was first. I didn't install a boot loader at that time because I
 was having problems with my MBR on previous installs of Mandrake 10 and
 Suse 8.0. By the time I was done poking around trying to fix things I
 ended up crashing the whole bloody thing. So I started from scratch. My
 mate really liked Fedora, but I installed it to boot only from floppy.
 Later I read that the boot manager on FreeBSD was fool-proof. So here I
 am, the fool that is going to test that statement. Installing FreeBSD
 fixed my MNR and boots fine from my HD, but Fed is not recognized as a
 bootable partition with Boot Magic (I didn't install it as it wouldn't
 have fixed my problem).
 

Try booting into Fedora and set the Linux Partition to be acrive using
fdisk command. Make sure the FreeBSD partition is set to be inactive.

 BTW I have really learned a lot from this list in the short time I have
 been here, thank you all. And I decided to put my music files on a
 separate partition that will be used as a secondary back-up (see file
 sharing across desktops).
 
 
 ___
 [EMAIL PROTECTED] mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to [EMAIL PROTECTED]
 
 

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