Sponsored Content
Top Forums UNIX for Dummies Questions & Answers How to install FreeBSD without loosing my data? Post 91704 by sualcavab on Monday 5th of December 2005 03:02:43 AM
Old 12-05-2005
How to install FreeBSD without loosing my data? Please reply!

hi. I am newbie in Unix. I wanted to install Free BSD 5.2.1 to my computer which winXp was already installed. But i couldn't.
I chose Standard. Then it said you are going to use dos style fdisk partitioning. Then a window displayed begining like this.
WARNING: A geometry of 155127/16/63 for ad0 is incorrect...
I have one hard disk(80GB) with 3 partition(20,15,45). First for windows second for Unix which is empty and third for data. I want to install FreeBSD to second partition but i don't know how to do it. Below shown some info from that screen.

....Size(ST).........Name............PType.......................DESC
...........63..............-................12........................unused
..41945652.........ad0s1.............. 4...............NTFS/HPFS/QNX
114398865.........ad0s2...............4.............Extended Dos/LBA
.......23436.............- ................12...................... unused

If I choose all disk space to install FreeBSD i will loose my data. I can't see second and third partition of my hard disk instead ad0s2 which is combination of second and third partition of my hard disk. If i choose ad0s2 will I loose my 3 rd partition?Please help me. I want to install Free BSD to second partition without loosing my data.

thanks in advance shamil from az.

Last edited by sualcavab; 12-08-2005 at 11:39 AM..
 

10 More Discussions You Might Find Interesting

1. UNIX Desktop Questions & Answers

FreeBSD Install error

Not entirely sure if this belongs here but here it is. I am installing FreeBSD, downloaded the ISO from their website, created the Bootdisk. And when I try to boot, I get this error, 'Panic, Couldn't Inialize. Will not continue without Inialization'. I get the prompt telling me that it will... (2 Replies)
Discussion started by: Fmarvez
2 Replies

2. UNIX for Dummies Questions & Answers

Install FreeBSD 4.5

Hi, everyone. Last night I tried to install FreeBSD Unix 4.5 to my compaq desktop. During the installation, it showed some message says some devices "collaped". Does it mean my computer not support unix, or I need to config those data? (7 Replies)
Discussion started by: HOUSCOUS
7 Replies

3. BSD

FreeBSD 5.4 Install

sup everyone, i am having trouble installing freebsd 5.4 when i'm done installing freebsd, it came out like this screen shot 1 then i typed startx, it came out like this.. screen shot 2 i don't think it's normal.. so i went with "exit", it came out like this screen shot 3 ... (3 Replies)
Discussion started by: royal
3 Replies

4. BSD

Install Gnome 2.22 in FreeBSD

at root command line # pkg_add -r gnome2 This will download the latest GNOME 2.22 packages from the FreeBSD FTP site, and proceed to install them on your system. Up-to-date GNOME packages for i386 and amd64 for all supported versions of FreeBSD are also available from the GNOME Tinderbox.... (0 Replies)
Discussion started by: very9music
0 Replies

5. UNIX for Dummies Questions & Answers

FreeBSD 7.1 Rel install on 1TB won't load

Hi Folks, Have anyone install FreeBSD on 1TB hard drive and have problem like not able to boot into the system? Well, I just purchase a new Maxtor 1TB SATA 300 hard drive and install FreeBSD on it, everything install well, but then reboot and all I get is just a display cursor.... nothing... (0 Replies)
Discussion started by: bsdme2
0 Replies

6. BSD

FreeBSD Label Editor Post-install Question

Hello there, Over the past few days I have installed FreeBSD 7.1 (which i'm new at) to an external Hard Drive. When installing, I chose to partition the disk Automatically and now I'm trying to use the label editor (post-installation configuration) to name the mount points: / /usr... (2 Replies)
Discussion started by: septima.pars
2 Replies

7. BSD

Installing ports upon FreeBSD install

I use DesktopBSD (FreeBSD + KDE) and regularly install this on our machines. Currently I go to the package manager to install the ports, but what shell command can I enter instead right after BSD install to install the ports? Thanks in advance (3 Replies)
Discussion started by: figaro
3 Replies

8. BSD

How can install the FreeBSD on desktop!!

;)Hello everyone,I'm a new FreeBSD user,I don't know how to intall the BSD on desktop,please help me ~~ Thanks~~:D (11 Replies)
Discussion started by: johnney
11 Replies

9. UNIX for Advanced & Expert Users

How to install bsdpan-* on freeBSD 7.1

Hi Experts, I have installed freeBSD 7.1. then I installed perl-5.8.8_1 from Ports, I read somewhere that If I install perl from port then it will automatically install bsdpan. But it did not work out. Practical Extraction and Report Language postgresql-plperl-8.3.3_1 Write SQL... (0 Replies)
Discussion started by: mukundranjan
0 Replies

10. BSD

Standard FreeBSD install by circumventing sysinstall

Many of our machines are using the same FreeBSD install apart from details such as user name and node name. What would be an efficient way to install these machines without having to go through the sysinstall questions every time? We could create an iso image, but how are the user name and node... (0 Replies)
Discussion started by: figaro
0 Replies
install(1M)						  System Administration Commands					       install(1M)

NAME
install - install commands SYNOPSIS
/usr/sbin/install -c dira [-m mode] [-u user] [-g group] [-o] [-s] file /usr/sbin/install -f dirb [-m mode] [-u user] [-g group] [-o] [-s] file /usr/sbin/install -n dirc [-m mode] [-u user] [-g group] [-o] [-s] file /usr/sbin/install -d | -i [-m mode] [-u user] [-g group] [-o] [-s] dirx... /usr/sbin/install [-m mode] [-u user] [-g group] [-o] [-s] file [dirx]... DESCRIPTION
install is most commonly used in ``makefiles'' (see make(1S)) to install a file in specific locations, or to create directories within a file system. Each file is installed by copying it into the appropriate directory. install uses no special privileges to copy files from one place to another. The implications of this are: o You must have permission to read the files to be installed. o You must have permission to copy into the destination directory. o You must have permission to change the modes on the final copy of the file if you want to use the -m option. o You must be super-user if you want to specify the ownership of the installed file with the -u or -g options. If you are not the super-user, the installed file is owned by you, regardless of who owns the original. Note that if the ROOT environment variable is set, each of the default directory paths are prefixed by its value (for example, $ROOT/bin and so on). install prints messages telling the user exactly what files it is replacing or creating and where they are going. If no options or directories (dirx ...) are given, install searches a set of default directories ( /bin, /usr/bin, /etc, /lib, and /usr/lib, in that order) for a file with the same name as file. When the first occurrence is found, install issues a message saying that it is overwriting that file with file, and proceeds to do so. If the file is not found, the program states this and exits. If one or more directories (dirx ...) are specified after file, those directories are searched before the default directories. This version of install (/usr/sbin/install) is not compatible with the install binaries in many versions of Unix other than Solaris. For a higher degree of compatibility with other Unix versions, use /usr/ucb/install, which is described in the install(1B) man page. OPTIONS
The following options are supported: -c dira Install file in the directory specified by dira, if file does not yet exist. If it is found, install issues a message saying that the file already exists, and exits without overwriting it. -f dirb Force file to be installed in given directory, even if the file already exists. If the file being installed does not already exist, the mode and owner of the new file is set to 755 and bin , respectively. If the file already exists, the mode and owner is that of the already existing file. -n dirc If file is not found in any of the searched directories, it is put in the directory specified in dirc. The mode and owner of the new file is set to 755 and bin, respectively. -d Create a directory. Missing parent directories are created as required as in mkdir -p. If the directory already exists, the owner, group and mode is set to the values given on the command line. -i Ignore default directory list, searching only through the given directories (dirx ...). -m mode The mode of the new file is set to mode. Set to 0755 by default. -u user The owner of the new file is set to user. Only available to the super-user. Set to bin by default. -g group The group id of the new file is set to group. Only available to the super-user. Set to bin by default. -o If file is found, save the ``found'' file by copying it to OLDfile in the directory in which it was found. This option is use- ful when installing a frequently used file such as /bin/sh or /lib/saf/ttymon, where the existing file cannot be removed. -s Suppress printing of messages other than error messages. USAGE
See largefile(5) for the description of the behavior of install when encountering files greater than or equal to 2 Gbyte ( 2^31 bytes). ATTRIBUTES
See attributes(5) for descriptions of the following attributes: +-----------------------------+-----------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +-----------------------------+-----------------------------+ |Availability |SUNWcsu | +-----------------------------+-----------------------------+ SEE ALSO
chgrp(1), chmod(1), chown(1), cp(1), install(1B), make(1S), mkdir(1), attributes(5), largefile(5) SunOS 5.11 3 Nov 2005 install(1M)
All times are GMT -4. The time now is 06:17 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy