Sponsored Content
Operating Systems Linux Red Hat How to install fedora 13 from a usb media....it should not like 'live'? Post 302471641 by fpmurphy on Sunday 14th of November 2010 12:20:53 PM
Old 11-14-2010
Quote:
On the first step after booting it shows Press Enter to Install..... When I press enter it stucks there and nothing happens. Even I waited for 30 minutes but still the screen stucks there i I have to reboot the system.
Strange. Is this the only message or text what is being displayed?

Last edited by fpmurphy; 11-18-2010 at 10:36 AM..
 

10 More Discussions You Might Find Interesting

1. Linux

bootable USB Stick || Fedora 8

Hello Everybody I am planning to install Fedora core 8 on an extra PC I have; what I wanna do is to boot from a USB stick then install Fedora from an ISO image I already have via FTP. Could any one tell me how to create bootable USB Stick for Fedora as I already found how to install from FTP... (0 Replies)
Discussion started by: ahmed_nasr2001
0 Replies

2. Linux

How to boot Fedora 8 from USB

Hi, friends, can anyone suggest me how to boot fedora 8 from USB flash drive? thanks. :confused: (3 Replies)
Discussion started by: MULTIVERSE
3 Replies

3. Linux

Live Knoppix on usb sdb2 kernel not found

Hi all I have a usb external drive with two partitions sdb1 ntfs and sdb2 ext3 with label Linux I copied a knoppix live distro in the second partition, then I installed grub on the drive. Now in the directory /media/sdb2/boot/grub i have the file device.map with the following content: (hd0) ... (4 Replies)
Discussion started by: guast
4 Replies

4. BSD

Free BSD Release 8.0 not recognizing CD/DVD and usb install media

Hi, I am trying to install Free BSD release 8.0 on my Dell XPS Studio laptop along with already existing Windows partition. (150GB for Win Vista, 30GB for win backup and 130 GB for Free BSD). To do trial I first installed it on Sun virtual Box in Windows where it installed without any complaints.... (2 Replies)
Discussion started by: dheerajsuthar
2 Replies

5. Linux

Kexec with Live USB/CD

Hello Recently I found this (for me) really usefull tool kexec which can load a new Kernel while running one. I tested it some times with the same kernel I was running, "rebooting" the system without powering it off at any time :D But I need kexec basically just for live usbs. I want to start... (17 Replies)
Discussion started by: al0x
17 Replies

6. UNIX Desktop Questions & Answers

Media Centre for Fedora doable??

Greetings, I am wondering if someone can tell me name of an application, which gives me the ability of sharing and streaming video and music over my LAN? You may compare this to the media centre in Windows 7. I have my blueray player connected to my network and I want to share my avi files over... (3 Replies)
Discussion started by: almirzaee
3 Replies

7. UNIX for Dummies Questions & Answers

kcore and a live persistent linux usb distro

I have 2 computers, from now on i shall call these computers A and B. Made a live linux distro (bodhi) on A which has 1GB internal memory , because windows is unstable on B, which has 512MB internal memory. I mean with memory the internal memory of the computer, not the memory of the usb... (0 Replies)
Discussion started by: anno
0 Replies

8. BSD

Freebsd live usb

Hello. I'm going to make freebsd live usb based on FreeBSD-8.3-RELEASE-i386-livefs.iso. The iso is 257 Megabytes, but after i copy its content to usb drive its volume increases to 971 Megabytes. I tried different methods of copying (tar,cp,cpio) but with the same result. Could anyone help? (0 Replies)
Discussion started by: urello
0 Replies

9. UNIX for Beginners Questions & Answers

Solaris Live Media x86 Install

Unix Buddies Burned download to DVD-R. Booted it. It dropped me at a command line. Is it working properly? Thanks! (7 Replies)
Discussion started by: Solaris User
7 Replies

10. Solaris

Solaris 11 install via live usb

Hello All, I am attempting to boot and install Solaris 11 via live USB on a HP DL580 Gen9 Server. Unfortunately, when I do this it boots into System Maintenance Mode. The attachment (Pic1) shows what I am seeing via the console. The BIOS is in UEFI boot. Does not work on legacy mode as I... (15 Replies)
Discussion started by: Kerbi
15 Replies
mkcatdefs(1int) 														   mkcatdefs(1int)

Name
       mkcatdefs - Preprocesses a message source file

Syntax
       mkcatdefs symbol_name source_file ...

Description
       The message facility program preprocesses a message source file. The source_file message text source file contains mnemonic identifiers.

       The  program  produces  the symbol_name_msg.h file containing definition statements equating your mnemonic identifiers with set numbers and
       message ID numbers assigned by The symbol_name _msg.h file is required in your application program if you use mnemonic identifiers.

       The program sends message source data, with numbers instead of mnemonic identifiers, to standard output. This output is suitable  as  input
       to  the program. You can use the > (redirection mnemonic) to write the message source to a file, then use the file as input to You can cre-
       ate a message text source file using any text editor to enter the messages.

       Assign message set numbers and message ID numbers to each message by using the commands described in the following section.

   Symbolic Message Identifiers
       The operating system provides a mechanism that allows mnemonic references to messages by letting you use alphanumeric  identifiers  instead
       of  set	numbers  and  message  ID  numbers. You assign the identifiers to sets and messages in the source file in the same manner that you
       assign set numbers and message ID numbers.

       The mnemonic identifiers can contain ASCII letters, digits, and underscores. The first character cannot be a digit. The maximum length can-
       not exceed 64 bytes.

       The following example shows a message source file with mnemonic message identifiers:
       $set symbolic	  Message Facility - Symbolic ID's
       $quote *
       ID_names  *Symbolic identifier syntax: 
 
       	ASCII alphanumerics or underscores 
 
       	non-digit first character 
 
       	64 byte maximum length *
       set_use	 *To assign set ID: 
 
       	$set "identifier" [comment] *
       msg_use	 *To assign message ID: 
 
       	"identifier" message-text *

   Subcommands
       Use the $set command in a source file to give a group of messages a set number. The format of the $set command is as follows:
       $ set n [ comment ]
       The  set number is specified by n. Instead of a number, you can specify a mnemonic identifier that must contain only ASCII letters, digits,
       or the _ (underscore character). The maximum length of an identifier is 65 bytes. The program assigns a set number to the  identifier.  The
       assigned  set  number  is one higher than the preceding set number, or 1 if it is the first $set.  The program inserts a $delset before the
       $set in the output message source file.

       You can mix numbers and mnemonic identifiers.  You can include a comment in the $set command, but it is not required. The following example
       includes a comment:
       set CEM	Communication Error Messages
       Use  the  $delset command to remove all of the messages belonging to the specified set from a catalog. The format of the $delset command is
       as follows:
       $delset n [ comment ]

       The message set is specified by n. The $delset command must be placed in the proper set number order with respect to any $set  commands	in
       the same source file. You can include a comment in the $delset command also.

       You can include a comment line anywhere in the source file, except within message text. Indicate comments as follows:
       $ [ comment ]

       You must leave at least one space after the $ prompt.

       Enter the message text and mnemonic message identifier as follows:
       identifier message_text

       identifier  can	be  either a number or a mnemonic identifier and can contain only ASCII letters, digits, or the _  (underscore character).
       The maximum length of an identifier is 65 bytes. The program assigns a message number to the identifier. The assigned number is one  higher
       than the preceding message number, or 1 if it is the first message after the $set command.

       Note that inserts a $delset before the $set, which means you cannot add, delete, or replace single messages in the catalog if you are using
       mnemonic message identifiers. You must enter all of the messages in the set.

       You can mix numbers and mnemonic identifiers.

       You must leave at least one space after the message identifier or number.

       Any amount of white space is allowed after the message ID number; however, X/Open specifies that you leave only one space between the  mes-
       sage  number  and the message text. All text following the first nonspace character to the end of the line is included in the message text.
       If the source contains a $quote command preceding the message, all text between the quotation marks is included. Use a  (backslash)  char-
       acter to continue message text on the following line.  The  must be the last character on the line, as in the following example:
       FIVE	Text associated with 
       message FIVE.
       These two lines define the following single-line message:
       FIVE	Text associated with message FIVE.
       The  can be used to include special characters in the message text. These special characters are defined as follows:

       
     Inserts a newline character.

       	     Inserts a horizontal tab character.

       v     Inserts a vertical tab.

            Inserts a backspace character.

       
     Inserts a carriage-return character.

       f     Inserts a formfeed character.

       \     Inserts a  (backslash) character.

       ddd   Inserts  the  single-byte  character  associated with the octal value represented by the valid octal digits ddd.	One, two, or three
	      octal digits can be specified; however, you must include leading zeros if the characters following the octal digits are  also  valid
	      octal  digits.  For example, the octal value for $ is 44. To display $5.00, use 445.00, not 445.00, or the 5 is parsed as part of
	      the octal value.

       You can also include conversion specifications in messages that are displayed by applications using You can use the  $quote  command  in  a
       message source file to define a character for delimiting message text. The format for this command is as follows:
       $quote [ char ] [ comment ]

       Use the specified character before and after the message text as shown in the following example source file:
       $quote "  Use a double quotation mark to delimit message text
       $set MSFAC	  Message Facility - symbolic identifiers
       SYM_FORM   "Symbolic identifiers can only contain ASCII letters 
       or digits or the _ (underscore character)
"
       SYM_LEN	  "Symbolic identifiers cannot be more than 65 
       bytes long
"
       5	      "You can mix symbolic identifiers and numbers 
"
       $quote
       MSG_H	 Remember to include the "msg_h" file in
       your program


       In  this example, the $quote command sets the quote character to " (double quote), then disables it before the last message, which contains
       double quotes.

       The preceding file can be processed with as follows:

       $ mkcatdefs symb symb.src >symb.msg

       When you process the file with the modified source is written to standard output.  Standard output can either be redirected to a file using
       the > (redirection mnemonic) or piped to

       The following source is created:
       $quote "     Use double quotation marks to delimit message text
       $delset 1
       $set 1
       1     "Symbolic identifiers can only contain ASCII letters 
       or digits or the _ (underscore character)
"
       2     "Symbolic identifiers cannot be more than 65 
       bytes long
"
       5     "You can mix symbolic identifiers and numbers
"
       $quote
       6     remember to include the "msg_h" file in your program

       Note  that  the	assigned  message numbers are noncontiguous because the source contained a specific number. The program always assigns the
       previous number plus 1 to a mnemonic identifier.

       The program also produces a definition file for inclusion in your program.  The name of the file is symbol_name,  and  is  entered  as  the
       first argument to the command.

Examples
       If the message text source defined under Subcommands were in a file called symb.src, you could use the command as follows:
       $ mkcatdefs symb symb.src >symb.msg
       or
       $ mkcatdefs symb symb.src | gencat symb.cat
       The generated symb_msg.h file would appear as follows:
       #ifndef _H_SYMB_MSG
       #define _H_SYMB_MSG
       #include <limits.h>
       #include <nl_types.h>
       #define MF_SYMB "symb.cat"
       /* The following was generated from symb.src. */
       /* definitions for set MSFAC */
       #define MSFAC 1
       #define SYM_FORM 1
       #define SYM_LEN 2
       #define MSG_H 6
       Note  that  also created  a mnemonic MF_SYMB by adding MF_ to the symbol_name using uppercase letters. The program assumes that the name of
       the generated catalog should be symbol_name.cat, and generates this mnemonic for your use with The symbol_name.cat file	includes  limits.h
       and  nl_types.h, you do not need to include them in your application program.  (nl_types defines special data types required by the message
       facility routines.)

See Also
       extract(1int), gencat(1int), trans(1int), catgets(3int), catopen(3int), environ(5int)
       Guide to Developing International Software

																   mkcatdefs(1int)
All times are GMT -4. The time now is 01:28 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy