Sponsored Content
Top Forums UNIX for Dummies Questions & Answers Several OS's on a single laptop? Post 302083973 by riwa on Tuesday 8th of August 2006 02:38:00 PM
Old 08-08-2006
Well I actually would like to install as many systems possible (maybie not but at least very many) so suggestions are welcome. I know for sure I'll install: Archlinux, openSUSE, probably slack and some *BSD variant. But I don't know which BSD variant is most compatible with Acer laptops (I'd guess freeBSD though). So if you think of any systems in mind for combating please let me know. And please send me the article when it's done.

[edit]
btw, I don't have Partition magic nor money to buy it. Isn't there a non-costly way of partitioning?

Last edited by riwa; 08-08-2006 at 03:49 PM..
 

10 More Discussions You Might Find Interesting

1. BSD

FreeBSD on a Laptop

In this post, hitechredneck said: I lost the C drive in my venerable Inspiron 8200 :eek: I have installed a temporary replacement C drive and I have a Seagate ST910021A on order for it. If I can get that drive to work with my Inspiron 8200, I am going to install a quad boot... (4 Replies)
Discussion started by: Perderabo
4 Replies

2. Windows & DOS: Issues & Discussions

Im new at this and need help with my laptop

Ok, I recently purchased a lapto and the harddrive crashed. I bought a new one and now half of the functions on it wont work. I cant watch DVD's and non eof my Fn keys work. Any suggestions? Also wanting to learn how to program, anybody know a good way to go about it/learn computer languages? (2 Replies)
Discussion started by: beachbummer88
2 Replies

3. BSD

NetBSD on OLD laptop

I want to install NetBSD on the Compaq LTE 5000. ("Of course it runs NetBSD!!") But the laptop does NOT have a CD-ROM drive. How can I solve?? Thanks for any reply! :) PS: I hope i'm posting in the right item... (2 Replies)
Discussion started by: mghis
2 Replies

4. UNIX for Dummies Questions & Answers

Laptop for unix

I like Unix systems very much. Is there possibility, to buy new modern laptop (something like core i7 3.0GHz, ATI/NVIDIA graphic card with 1024MB, 8GB of RAM) on which I will be able to install Unix systems like BSD and Solaris and use mic and cameras and all stuff with this systems? Thanks in... (4 Replies)
Discussion started by: marcinnnn
4 Replies

5. Ubuntu

Connect 2 laptops with RJ45 cable (Ubuntu 10.10 laptop with Windows 7 laptop)

Hi to all, I have the problem that a laptops with windows XP cannot startup even in safe mode nor using last good known configuration. I have a Ubuntu 10.10 Live CD and booting from it I can read the Hard Drive. I need to do a backup the Hard Drive from XP laptop and I want to connect this... (5 Replies)
Discussion started by: cgkmal
5 Replies

6. OS X (Apple)

How to Right Click On Laptop

I have had an apple mac book for several months. I have been learning about it, I even got the snow leopard manual. It says nothing about right clicking on the apple mouse interface(trackpad?). How do I do this? Thank You.:b: (2 Replies)
Discussion started by: N-Training
2 Replies

7. Shell Programming and Scripting

Replace single quote with two single quotes in perl

Hi I want to replace single quote with two single quotes in a perl string. If the string is <It's Simpson's book> It should become <It''s Simpson''s book> (3 Replies)
Discussion started by: DushyantG
3 Replies

8. Shell Programming and Scripting

Multiple lines in a single column to be merged as a single line for a record

Hi, I have a requirement with, No~Dt~Notes 1~2011/08/1~"aaa bbb ccc ddd eee fff ggg hhh" Single column alone got splitted into multiple lines. I require the output as No~Dt~Notes 1~2011/08/1~"aaa<>bbb<>ccc<>ddd<>eee<>fff<>ggg<>hhh" mean to say those new lines to be... (1 Reply)
Discussion started by: Bhuvaneswari
1 Replies

9. Ubuntu

Laptop to laptop transfer files

Dear all, I would like to transfer my old laptop documents/files etc to the new laptop without using any external hard disk. Please let me know if its possible via any way. Thank in advance, emily (3 Replies)
Discussion started by: emily
3 Replies

10. Shell Programming and Scripting

Paste 2 single column files to a single file

Hi, I have 2 csv/txt files with single columns. I am trying to merge them using paste, but its not working.. output3.csv: flowerbomb everlon-jewelry sofft steve-madden dolce-gabbana-watchoutput2.csv: http://www1.abc.com/cms/slp/2/Flowerbomb http://www1.abc.com/cms/slp/2/Everlon-Jewelry... (5 Replies)
Discussion started by: ajayakunuri
5 Replies
GAUCHE-INSTALL(1)						  Gauche Commands						 GAUCHE-INSTALL(1)

NAME
gauche-install - install files and set attributes SYNOPSIS
1)* gauche-install [OPTION...] FILE DEST 2)* gauche-install [OPTION...] FILE... DIRECTORY 3)* gauche-install -d [OPTION...] DIRECTORY... 4) gauche-install -T DIRECTORY [OPTION...] FILE... 5) gauche-install -U DIRECTORY [OPTION...] FILE... DESCRIPTION
gauche-install is a program to install and remove files. On installation it allows to set ownership and permissions. This command is upward compatible with BSD install(1) and can be used as a drop-in replacement of it. Notably, 1st, 2nd and 3rd command-line format above are compatible with BSD install. This command is provided mainly for Gauche's extension packages to have simpler installation and configuration process. Being certain that gauche-install is available, those packages don't need to worry about subtle differences between various install(1) commands. The first format copies FILE on the file or in the directory named by DEST. The second format copies FILE ... into the directory DIRECTORY. The third format ensures DIRECTORY exists. If it doesn't, the command creates the path to the DIRECTORY , including any intermediate ones. The fourth format installing FILE ... to the DIRECTORY. It is more convenient than the first and second formats in the following regards: * If the destination directory does not exist, it is created (with any intermediate paths as needed). * The list of files can be empty, so that when the list of installed files can be generated by configuration, you don't need to handle the empty case specially in Makefile. (With BSD install format, empty file list yields an error.) * The directory prefix of files are preserved within the destination directory. This is handy to install subtree of files. For example, the following command installs '/usr/share/foo/main', '/usr/share/foo/conf/x' and '/usr/share/foo/conf/y' with a single command. gauche-install -T /usr/share/foo main conf/x conf/y Giving -p option suppresses this behavior and strips any directory prefix like the second format. The following command line installs '/usr/share/foo/main', '/usr/share/foo/x' and '/usr/share/foo/y'. gauche-install -T /usr/share/foo -p main conf/x conf/y The fifth format removes FILE ... in the DIRECTORY. Irrelevant options are ignored, so it is handy to uninstall files just by chaning -T in the fourth format to -U. OPTIONS
-C, --canonical-suffix This is used specially to install Gauche's autogenerated Scheme source by experimental precompilation. The generated file has a *.sci. Upon installation, this command replaces the suffix for *.scm. -d, --directory Creates directories. (3rd format only). It is only for the compatibility. Using the -T option, the destination directories are created automatically if missing. -g, --group=GROUP Change group of the installed file. -h, --help Show summary of options. -m, --mode=MODE Change mode of the installed file. -n, --dry-run Just prints what actions to be done. -o, --owner=OWNER Change owner of the installed file. -p, --strip-prefix=PREFIX Strip PREFIX directories from FILE(s) before installation. (4th/5th format only). --shebang=PATH Adds #!PATH before the file contents. Useful to install scripts. -S, --srcdir=directory Look for files within directory; useful if VPATH is used in Makefiles. -T, --target=directory Installs files to the directory, creating paths if needed. Partial path of files are preserved unless -p option is given. (4th format only) -U, --uninstall=directory Reverse of -T, e.g. removes files from its destination. Other options (except -h and -n) are ignored. -v, --verbose Work verbosely. DIAGNOSTICS
gauche-install exits with status 0 on success. SEE ALSO
gauche-package(1), install(1) The program will be documented fully by the Gauche Developers' Reference available via the info(1) system. AUTHORS
Shiro Kawai <shiro@acm.org> Author. Jens Thiele <karme@karme.de> Wrote this manpage for the Debian system. COPYRIGHT
Copyright (C) 2010 Jens Thiele Copying and distribution of this file, with or without modification, are permitted in any medium without royalty provided the copyright notice and this notice are preserved. This file is offered as-is, without any warranty. Gauche 0.9.1 GAUCHE-INSTALL(1)
All times are GMT -4. The time now is 08:48 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy