so ive been trying to figure out the basics stuff im reading a tutorial about pointers now At the same time im

lol

Known as SIGSEGV up in userland

?

GPF is i386's generic "You messed up" exception

or Segmentation Fault to the unexperienced C programmer

(General Protection Fault)

you'll get an error while accessing a non-enabled page… it's as simple as that

Accessing missing pages, accessing a page as the wrong type.. Accessing missing segments, using segments as the wrong type,…
All these are GPF

a page fault?

Yes, basically..

not all page faults are errors

Indeed.

0×4

Ah.. my mistake
Accessing a _missing_ page is Page Fault, not GPF

how can i reproduce a page fault in a C user space program, for example?

Hardware makes that different - any other error of that sort is GPF though; present but not the right type, or missing segments, or any of about 200 other miscellanous errors in using segments

fault addresses are stored in %cr2 aren't they?

Hrm.. sounds familiar; but it's been a while since I looked at it

char *p; while(1) p=*p;

That's likely, but not guaranteed
Difficult to guarantee to make one, since you can't see the tables

this is a seg fault
i want a page fault

That probably is a page fault, at the hardware level
Kernel traps it, decides what to do about it
In your case, it decided the page request wasn't valid, and sent you a FOAD SEGV

It probably has to be a potentially legal address before you'll get far enough to trigger a page fault. That's why you can't be sure of the result.

"segmentation fault" is just a string, can be a "bus error" in 68k.

SIGSEGV is what kernel sends you.
can be totally unrelated to what hardware sent kernel

you can send it to other processes you own, too

_3dfx now i see: i made the while statement in order to obtain a page fault instead of a seg fault?

Many processor have an illegal address interrupt.

anyway i don't understand the sense of p = *p : how can a value of a pointer be an address?

i think in a x86 machine all types of errors in memory access will be mapped to SIGSEGV.

On Linux, yes.
SIGBUS isn't used on Linux, all memory errors are indeed SEGV
Not at all..

your program

Ok, now i'm getting confused. i have to study some basic concepts before making other questions

my netbsd/68k machine is very funny, i get many random SIGSEGVs, SIGFPEs, SIGBUSes, etc.

Remember, that between you and the hardware, is the kernel

yes i know that

What CPU says to the kernel, isn't always what kernel says to you

yes but i can debug the kernel

Reminds me…
I want to draw a comic strip sometime.. I have all the characters worked out

in order to trap the meaning of kernels msgs

General Exception, Col. Panic., Major Error, Field Marshall Error (his brother), and Private Method.
It's a military cartoon, naturally.

get comic life

ok please tell me if what i'm saying is more or less correct. when from user space i execute malloc, i do a system call to the kernel. the kernel controls if there's free space in its virtual memory and, if yes it gives the num. of bytes required by malloc to the user space. if there's not free
space, the kernel try to allocate (for example) a new page…….

Sortof
malloc works internally in userland.

sortof?

It might have free space anyway.
Kernel only works in pages of 4k
malloc a little tiny block, and maybe there'll be space in the heap

but is the concept right?

Yes, I suppose…

but what do you mean with " malloc works internally in userland." ?

malloc works within the heap.. this is a userland data structure the kernel knows nothing about
malloc deals out and takes back free space within this heap
If it runs out of space, it asks the kernel, in chunks of 4k, for more

I see

(Well, there's also the recent glibc thing of using mmap() for large areas)

and if i do char mychar[1000] the kernel, for the memory management is much "involved", right?

The normal heap is in what's called the break area - socalled because long ago it was defined as just a gap - the stack starts at the top and works down, the heap starts at the bottom and works up. The gap in the middle was called the break
Automatic variables live on the stak
*stack
That's managed by the kernel without you doing anything from userland

ok, so is it true what
i just wrote?

What it does, is marks the next page after the TOS as not present. Any page fault in there, tells the kernel "I want more stack space", so it gives some more

it seems in this way that objects in the stacks are elaborated more quickly, irght?
right?

Elaborated? hrm? I don't get the question

i mean:
since the stack is managed by the kernel, objects allocated in it can be accessed more fastly
but maybe my question doesn't have sense

Hrm…
Once it's allocated, it doesn't matter where it lives - access time is the same

No. Not in practice… and C does not specify any of this.

It might be quicker to allocate in the stack vs. the heap, though

Access times could be very different. You don't know without understanding the specific implementation and system.

i see Xgc

For instance, there's not necessarily a stack.

since kernel could use dinamic allocation too?

However, I do believe the entire scope of the preceeding conversation was i386/Linux

i tnhink will be more quicker in stack because many cpus have special asm instructions to link/unlink stack space and a dedicated SP register.

But if you have a stack, it could be found/created in some very fast ram or slow ram for this system.

(General-purpose) kernels usually have their own dynamic allocators, which are likely simpler than the userspace ones.

i see Xgc

Even knowing you're using Linux wouldn't necessarily mean you know the behavior. The hardware could make a big difference and you might be at the mercy of whatever bank of ram that stack was placed in.

in fact all is the result of the combination OS+HW

Normally, in practice, the timing of ram access in stack .vs. heap is indistinguishable.

i dind't know that heap is a user space structure

Much of the significant differences in behavior depends more on how pages are swapped to/from disk.

this was interesting to know

The heap is logical address space and (typically) represents both unallocated regions and allocated regions.
Think of it as a place where physical ram may be mapped.
Not so much different than your stack area.

and what's the basic difference between them?

We just name them differently because of the different uses we have for them.
None other than the way we manage them.

http://www.os-forum.com/minix/net/images/bh_brk_sbrk.gif

One is most often a "last in first out" area. The other can be logically very fragmented.

thnks _3dfx
but a basical difference is that

The stack tends to be continuous logically in memory. The heap is not necessarily logically continuous in the address space.

stack is accessed by kernel

the addresses start in the text (the binary) and end in the stack.

heap bu user space

Not really. Both are managed by the kernel, in the end.
You can't map memory into the process address space without the kernel.

all these blocks in the figure are in the userspace.

but the heap less directly, right?

Not really.
The process of mapping physical ram to a logical address space is done for both the heap and the stack in most cases.

well, in this case I have to understand exactly how stack and heap are managed

the task calls brk/sbrk() syscall to resize this userspace. for kernel, is just a big area of memory.

so you don't agree with LeoNerd when he says that heap is an userspace structure?

teh logical space, once mapped, is controlled by the user. But the actual mapping process is probably not controlled by the user, although the user is responsible for the requests to get/free memory.

ok and the paging process is controlled by kernel, right?

I guess we might be splitting hairs here.
Yes.

ok, so returning to the previous question, when the user tries to access to the value of a pointer of unallocated memory, the segfault is something done , in the origin, in user space
right?

Page fault, kernel will see that page is not mapped for that process…and a segmentation fault signal is sent.
* Hopefully

(since user has, as you said, controls on the mapped logical space)

A segmentation fault is the result of a logical access in user space that the hardware flags as a problem. An interrupt occurs.

Xgc, no.
On most platforms it is the operating system itself that will handle the page fault and deal with the segmentation fault appropriately.
That is the whole basis of SEGMEXEC before NX support.

do you mean that a seg fault corresponds necessarily to a page fault in kernel?

The interrupt generally is caused by the MMU, seeing that there is no page mapped to that logical address.

paolo, usually. Page faults are valid, kernel will see that the page is not provided.
Xgc, some hardware do not have a "static" page table :-) Kernel usually handles that.

There can be other types of interrupts as well.

paolo, s/provided/mapped/

?

The interrupt causes the kernel to take action.

Xgc, you are splitting hairs, rather unevenly now. :-)

Whether it's an illegal address or a legal address that causes a page fault, there's an interrupt.

Xgc, yes.

A segmentation fault is the result of a logical access in user space that the hardware flags as a problem. An interrupt occurs.

Read the log. I haven't changed my comments.

s/as a problem//

ok, but if you don't agree between yourselves it's a bit complicated for me

paolo, then buy a book :-)

yes, in fact i'm searching
for some infos on google
about this fucking seg fault and page fault

you can start read about old and simples processors, like Z80, 68000 or 8086, and then read about a more complex processor.

anyway, it seems that at least two or three things are fair:
1) kernel manages pages
2) a page fault is in kernel space
3) a segfault is in user space (but the association to a page fault is not fair)

Usually, the kernel will handle the page fault (assuming, the VM is in kernelspace)

yes but it would be interesting to discover how a segfault is "linked" to kernel

paolo, get a book. D&I of Solaris or D&I of FreeBSD. Several linux kernel books too
paolo, there is also the minix book.

It's done by interrupt handlers.

fucking seg fault

ok, i see but there are too much books about all i have to get in a better way the infos that i need

That just means you're lazy.

lazy?
no, i'm really not
but i already have to read too much material
and i'm still trying to understand how to organize it

Then get to it :-)

but is malloc a system call?
or does it encapsulate other system calls?
sbrk is the system call, right?

Yes, sbrk is a syscall
69 I think
You should talk less, and study more, paolo.

ok

hoï

sorry

I'm beginner and I try to compilate my first code I'm using lcc-win32

"compile"
congratulations, on your first attempt.

i want to say execute
lol

do you have a problem?

related to C that is

yep

if your program dont control nuclear weapons, i think you can try compile and execute.

how to use lcc to work with

you forgot linking
this problem is not related to C though

lcc is horid.
all win32 compilers are horrid.

s/compilers//

can you play? …with me!!! try http://s10.bitefight.it/c.php?uid=3145

get out

lol
I'm playing with code
dotatoe my first language that I start to work with was java and I did never learn c

so?

you dont have the make program ? make will know how compile host and link.

did you ever see a girl involved in kernel's programming?

yes.

really?

i'm sure there are

was she a pretty girl?

yes, the girl that's lying on my bed right now.
what does this have to do with C

i don't know
you are always hungry!

are you unable to study?

you are always angry!

how did you know that Im girl :s

*what the hell*
*what the hell too*

dotatoe could you explain me how to execute my first code..
plz

are you using an IDE?

you have the make program ?

lcc

if so, click 'compile'
I think lcc works by entering lcc prog.c
But I could be wrong.

yes it's exactly that
but I don't know where to find it

hmm, cmd.exe?

lol.. oO

what do you want with make without a makefile? make is just dumb and will not know how to build anything

i don't get it either.

xD

runs cmd.exe, go to directory and type make program (if you have a program.c). if dont work, your computer will self-destroy in 3 seconds

something is wrong here :o
you get outta here

Hello - so that I don't reinvent the wheel - might you guys have by any chance an already written float-string routine?

make will try all possible combinations. if you type make program, make will search for program.s, program.c, program.cc, etc.

lol

i know you ?

do something, but fast

so, i've been trying to figure out the basics stuff, im reading a tutorial about pointers now. At the same time im analyzing the examples programs using gdb, and ive been wondering: typing "print someptr" in Gdb seems to display the exact memory adress, but "print &someptr" always display the same address, like 0×404080… whats the difference?

&someptr is probably not really good

it seems quite random, actually. not that its different everytime I type that

whare are you expecting of &ptr?

AFAIK, lcc-win32 also comes with a manual

& is address-of

thats pretty much what i was thinking, too

so whare are you expecting from &ptr?

basically the address for ptr

I run gmake and gcc, and I aint never called malloc without callin' free

the address of ptr will no change. ptr can change and *ptr can change, but the address of ptr will never change.

but you said… typing "print someptr" in Gdb seems to display the exact memory adress

my reasoning behind this is: ive tried some basic examples programs from a tutorial, and everytime I compiled and checked the values in gdb, &someptr was always 0×404080, with every example programs I tried, which seemed quite odd from my newbie eyes :P

poor
é_è
I'm leaving
bye

will never change because the pointer is stored in the same position.

Hello

put a printf("%p\n",&ptr) in your program

are you saing here that, for instance, the stack always starts at 0×404000 and goes up everytime we add a new variable to the bunch?
(I understand YMMV from a computer to another, dont worry)

if the function is not recursive.
&ptr shows the address of ptr in the stack.

apparantly it actually goes down on most computers

if your function is recursive, &ptr will shows a diferent position in stack.

can anyone recommend me a book to learn c? I have been programming for years, languages like java hosting or php, I mean, I do now need the book to explain me what a while is

The C Programming Language, 2nd edition
k&r

k&r is The C Programming Language, 2nd edition, by Kernighan and Ritchie, http://cm.bell-labs.com/cm/cs/cbook/ - be sure to see the errata as well, at http://cm.bell-labs.com/cm/cs/cbook/2ediffs.html

Does sizeof() return the size of the object in bytes?

yes

but 0×404080 is too small for stack :P

i dont have a book to recommend actually, but ive read a few in a library and I always had a hard time understanding the pointers and stuff. Ive just found a well written tutorial on the net only about the pointers, which I may recommend as an addon to a book: http://home.netcom.com/~tjensen/ptr/pointers.htm

can someone remind me what the system call on Linux is to convert a network byte order ip address into a string?
I've forgotten…

Well, I preffer books, i *cant* read a lot in the web

inet_ntop

oh.. (but thats a _tutorial_, not the bible, too :P )

well, I'm reading about paging. it says that paging is a task done by the kernel (as we said before). Now, given that malloc makes a system call to the kernel (through sbrk), are the paging task and sbrk depending one on each other?

oh yeah, thank you

What is a better/safer way of parsing argv[1] for an int other than using atoi() and hoping for the best?

strtol

either way, thanks for the tips

ty
Do you know what debian package contains all the C function man pages?

no

hm I can't find it - have to keep checking the web ;-)

SamB, yes but, some people says that kr is boring

some people…
why did you come here?
here are some people saying k&r is sufficient good enough
in c++ some people say learn c++ instead of c

this isnt a matter of a specific channel

K&R is good enough to *start* and the people from c++ are loosers, they dont know what are saying

just saying that asking that kind of question is pure asking for a subjective answer
no need to comment on k&r

yes subjective

? :
s/://

I mean, I know that the answer is pure subjetive

good

it's up now
i'll get a stage tarball and download.
it should take a while however :/

?

hi, how declarate array

what an insightful question

hi, how book says?

hi, how is sun?

Captain Obvious to the rescue?

sorry, wrong chan.
Bilange:
People become offended by such things.

your /whois and my one have similar things dotatoe :P

ugh
this means we have to be friends now.
i had a problem with my ipw2200 driver, and the 2007.0 installer, so i'm using the 2006.1 livecd now :/

don't use the installer
rule no. 1

rule no. 2: for each gentoo ricer you exterminate, jesus loves you better!
rule no. 2: for each gentoo ricer you exterminate, jesus loves you better!

there, you've found the floor

why do you want to exterminate some gentoo "ricers"? if I had to exterminate one kind, i'd go after the Honda Civic kind of ricers :P

just joking ;-) besides, i don't want no jesus love, anyhow. tell that nigga that we want forty virgins, like those islamic jihadists get!

i'll get the minimal shortly.
for now i haven't an alternative.

why not?

really dumb question, i'm trying to illustrate pointers to someone and i've been pampered for too long by c++ streams. gcc doesn't like my line printf("&bar: %X", &bar); why?

i doubt someone can proof that there will be 40 virgins

every os/livecd that has chroot some basic net tools like wget is just fine dotatoe

yeah.
the gui installer is pretty crappy.
i have slow net

means?

it's taking the minimal sometime to download.

you don't have to, let's talk in private jvm java server hosting for a bit since this is coming too much off-topic

and what's the output ?

compile time error, once sec
ohh, dammit
it was a warning, i should learn to read
lemme see if it behaves as expected before i get too happy though lol
blemme see if it behaves as expected before i get too happy though lol/b

i'd say you need a cast to int to get rid of the warning

oh you're in a good mood today vorpal

i have my moments ;-)

i've send you a message in private :P

is this like "You got mail!!", but version 2.0?

hmm.

read another day 5.0

i have a dumb question about gets()! — i dont understand how it is possible for gets() to pull the last two bytes after a NULL byte and overwrite cookie in this example
http://community.corest.com/~gera/InsecureProgramming/stack3.html

perl -e 'print "A"x80 . "\x05\x00\x02\x01"x1' | ./stack3

it would appear to me that cookie should be overwritten by only one byte, and not all four

buf is undefined, you gets() garbage

madx, ?
im talking about cookie, you think it is contains 01 02 ?

hum
what do you enter in stdin ?

perl -e 'print "A"x80 . "\x05\x00\x02\x01"x1' | ./stack3

why do you think, all four bytes are overwritten with the code you pasted?

yes they are in this case

did you check in the debugger?

but not for cases where newlines are
kessel, yea
gdb
kessel, i was just retarded .. gets is newline terminated, not NULL terminated

hi
i am bored

go outside then

hmm

that's where I'm headed soon

Scorpions, longview…

what's so good about the outdoors?

read a book

long time no see?

that is fun?

yes :-)
or watch a movie, how about Zeitgeist

i have been reading a book, inside machine

http://digg.com/videos/educational/Zeitgeist_Movie_Must_See_Documentary

the

I'm reading a file into a char** with lines. I'm wondering how I can dynamically expand this. I'm about to try: lines + 1 = malloc(sizeof(cur_line)), then strcpy(lines+1, cur_line) but I've a feeling that's very wrong - how can I do this?

ok this is weird
and why i was having issues before, now i dont know, but i think i found abug in gets()

realloc?

There's a shock. Why are you using gets?

ok… but is that the best way to do it?

The bugs in gets are by design. You can't use it.

if gets() receives a stream of non-NULL chars, it copies fine into the buffer

How do you intend to prevent buffer overrun when using gets?

with your type you don't have much choices, also you can use a linked list

but when ended with a newline and containing NULL chars, they dont necessarily make it into the buffer
Xgc, i dont

ah, ok, I'll use a linked list I think

Xgc, but still it is broken otherwise

memory/speed

Xgc, my point is it should either be fixed or removed

what are the pros/cons of each?

You can't have embedded '' chars in the data. That's not valid.

Xgc, and why not?

a linked list, needs more memory for the link pointers, but additions are more quick

Because there's no way for you to know where the end of input is.

ah, thank you

Xgc, gets() ends with \x0a not \x00
according to the docs
it is newline or EOF terminated
not NULL

khermans, you mean NUL chars
not NULL

what is the difference?
\x00

NULL = pointer, NUL = 0byte or /terminator

No. The buffer gets fills is terminated by ''. It's a C string. If you have an embedded '' in the data, this does not form a valid string.

zacs7, well fine, then NUL

khermans, use fgets not gets

Xgc, no!

Yes.

froman page
"gets() reads a line from stdin into the buffer pointed to by s until ither a terminating newline or EOF, which it replaces with . No heck for buffer overrun is performed (see BUGS below).

khermans, fgets isn't binary safe
It's not a bug

Xgc, i know how to use fgets, i am asking about bugs in gets

"Never use gets(). Because it is impossible to tell without knowing the data in advance how many characters gets() will read, and because gets()
will continue to store characters past the end of the buffer, it is extremely dangerous to use. "

genelisp, yes i know it stores past end of buffer

note the "Never"

genelisp, maybe he's a risk taker :P

The bugs in gets are by design. It's not usable by design.

genelisp, ok so if no one should use it, then it should be removed :-)

gets was a mistake. There's nothing you can do about it.

Xgc, but you are still wrong about NUL

Xgc, it's not a bug

the terminator is \x0a

stop calling it that

gets reads until a newline is found (or other cases) and replaces the newline with ''

thats right
not other cases…EOF is only other case

khermans, what are you going on about anyway?

zacs7, nothing, just found something interesting about it handling NUL

If you have an embedded '' in the buffer, you can't know where the real '' (end of line) is.

which is not specified in docs
Xgc, there ya go!

In other words, gets is NOT binary safe

Xgc, but you mean \x0a

It's obvious. You can't use it.

that is end of line
zacs7, i dont know what you mean by binary safe?

We call it a newline. No. I'm talking about the end of buffer that gets sets.

if you use '+' incorrectly, is that not binaary safe?
Xgc, you call a newline?

gets replaces the newline found awith '' to show the end of buffer.

i would call \n a new line
Xgc, yes you are correct there
Xgc, but it doesn'

If you have other '' chars you can't know where the real end of buffer is.

end on \x00

http://stopgeek.com/sense-this-picture-makes-none.html

Xgc, i am looking at source now, wondering why that is though

couldn't resist linking it

We know we have a brken windmill. Why are you fighting it?

i laughed hard

Xgc, remove it :-)

drdo, lol

remove gets() unless it is there for utility

it's in the specification. It's not removable by anyone other than the standards committee.

its obvious that Vader is cleansing the ocean by puttint it through a filter

khermans, it's there cause it's fine if you know how to use it and the dangers.

zacs7, right, but my point is that gets() does not operate how it says it does via the documentation
that is the problem

There's no safe way to use it. You can *hope* the data does not damage your program. But that's the only option.

although, it also says "NEVER USE IT"
hehe

Xgc, you know what I meant

but last question to solve, why can't it know the end of buf if it has \x00 ?
ubut last question to solve, why can't it know the end of buf if it has \x00 ?/u

khermans, do a pastebin :|

zacs7, of the gets() source code?
http://rafb.net/p/gEPxL543.html

Because you can't tell whether the ''s you encounter are your '' data or the end of buffer. How do you know when to stop?

Xgc, omfg we already went over this
Xgc, gets looks for \x0a not \x00

You keep asking the same question.

Xgc, look at the source

Xgc, he's not asking anything

look at line 19

No. I mean *you* (after gets returns) can't tell where the end of buffer is.

\n == \x0a
Xgc, why do i care?

There is no \x0a in that buffer.

which one?

khermans, using \x0a instead of \n doesn't make you hardcore.

Are you just trolling or do you really not understand?

khermans, \n is never added to the buffer

Xgc, i understand quite well
i understand that \x0a is replaced by \x00

gets replaces the \n char. That char is NOT in the returned buffer.

thats right
zacs7, hardcore? i am trying to differentiate between \x0d, which is not \n

I know gets knows where the end of buffer is. But your program can't.

khermans, you understand stdin is a stream yes!?

zacs7, absolutely

anyway, pie time. Try not to kill each other

zacs7, still havent solved it

khermans, solved what!?

the fact that gets() is document improperly

He's asking why gets isn't fixed.

Xgc, not the function, but the docs

Which documentation, linux man pages?

Xgc, gets() man page claims that it will copy everything into buffer until \n
more or less
Xgc, yes

What don't you line about that?
s/line/like

Xgc, because it is not true
Xgc, in the case of \x00

What do you want it to say?

Xgc, i want it to explain why \x00 are bot allowed in the stream
not
and you still have not shown me why in the code this is the case
i linked you to the gets() source

The C standard also does not talk about '' in the input stream.
The man page is just following the specification.

Xgc, right so it should be allowed in the input stream

khermans, it says it's not binary safe ffs!

zacs7, and what do you mean by 'binary safe' ?
zacs7, of course it is an exploitable function call

hi zacs7 void main()

hi dotatoe int main()

my point is just this, \x00 should be allowed in the buffer, and xgc argument that it can't determine end of buffe ris not correct, since gets() looks for \x0a not \x00

khermans, gets() - "Reads characters from stdin and stores them as a string" is a give away

zacs7, what docs say that?

http://www.cplusplus.com/reference/clibrary/cstdio/gets.html

The C specification doesn't mandate you write well defined programs. You are free to feed '' to gets. Nobody said you can't. Don't expect good behavior.

zacs7, well what i am saying is that \x00 should be allowed, it wouldn't be a problem until your program "interprets that buffer"
but the \x00 never make it into the buffer

dotatoe, why are you having a go at me? I said void main was probably C++0x standard

in the first place…

zacs7:

So you think gets() should return any s it finds?

I don't mean to be mean.

Like I said, don't expect good behavior.

dotatoe, it's okay :P

I'm going to cook some ramen now ;D

Xgc, sure, but i think i made my point, its fucked

khermans, then gets() wouldn't return a string.
rather a valid string

zacs7, sure it would, it would just be a string with extra crap

khermans, a C string stops at the first NUL character

when you interpret that buf, pass to printf whatever, you only get up until the first \x00
right, but gets() never copied that \x00 into the buf!

yes khermans, you only get the first string *clap clap*

zacs7, this is obvious

Is it? Why are you arguing then?

my point is the implementation of gets() and the docs, which are wrong

khermans, so go fix them

zacs7, is houldnt be using them :-)

It goes without saying that you can't use the "end of buffer" marker in your data. If that isn't clear to you, you have a problem, apart from arguing about a function you should *never* ue..

well, i came to ask technically why they aren't remove then

s/ue/use

khermans, cause you're supposed to steer clear of gets

Xgc, fine fair enough
Xgc, i was just trying to get at the heart of the issue…
Xgc, gets() docs should be rewritten to say "copies a stream from stdin into buf s until a NEWLINE or EOF character is encountered, which is replaced by NUL, but this stream cannot contain any NUL characters preceding the NEWLINE character which signifies the end of this stream"
which is convoluted, but i guess correct implementation
there is no technical reason why gets() couldn't read in a buf with NULs, then encounter a newline, and replace that with a NUL … your printf would only get up to your first NUL, but gets() would still function properly
gayness

I see khermans !!!!
I see where your coming from, are you arguing that gets() reads more than a valid C-string?

0×41414141 0×41414141 0×00665541 0×53530088
perl -e 'print "A"x80 . "\x55\x66\x0a\x88"x1'
you see buf \x gets replaced
whatever!
fuckers

that wasn't very nice.

sorry .. :-(

hi i have a huge problem with the k&r exercise

coming from you dotatoe

1-13

_d which is!?

ow
alguem saka da norma 568 A

English perhaps? :P

it says write a program to print a histogram of the lengths of words in its input
im not sure how to go about that
(

sorry

_d, you know what a histogram is?

a diagram

ya, a bar chart

oh
im still not sure how to go about this, could you give me any pointers?

_d, count words lengths (ie the closest space to the word to the closest space at the end of the word)

*pointer;

It's probably expecting too much to ask the C specification to provide programming advice. It's really up to the programmer to make reasonable choices.

Then maybe an array of length ranges (ie, int freq[5]; where freq[0] = [0,2] and freq[1] = [3,5]) or something
then draw a graph of freq (ie with 5 columns)

Xgc, ok ill accept that

_d, understand ? :P

is that c

what C?
[0,2] = maths

int freq[5]; where freq[0] = [0,2] and freq[1] = [3,5]

Ie, 0 to 2 inclusive

is that c

no

bye _d

dotatoe, why are you always sarcastic ? :|

because i'm bored

k

i'm going to cook some ramen now.

you said that before.
You're such a liar :P

i didn't leave.
i couldn't stand up, because i was reviewing some src

dotatoe, then find some 0day
make it interesting

there's 0day in gnupg.

dotatoe, its not 0day after release
dotatoe, there is 0day in everything
zacs7, btw my point was that gets() is not strcpy()

ahh k

If I have a static function foo in a file and another function bar in the same file sends a pointer to foo to a function in a different file. Is that ok?

peter_12, depends what the pointer points to
and what scope it's in

the internets failed.

zacs7 the pointer is to the static host function

peter_12, as in a function pointer to that function?
that's fine

seems like it is sort of breaking the scoping

well, all static means is the name isn't exported

ahh
thanks. I've never worried about this aspect of C before. It is actually a big joy trying something in C after so long

np

so when an object file is created, there is a list of symbols to export?

jesus, people write code horribly.
like they spat all over it

peter_12, yeah, normally a function is exported so that it can be linked from other files, but when it's static it's excluded.. if you're using *nix you can get a list of things that are exported in an object file using nm

ch28h so i can! that is great!

is it wrong to look at someone elses source code, and create your own implementations from them?
like with this histogram program
i've found a similar program which i want to study and create my own implementation from

Hi
I'm getting this weird error when I try to compile something with avr-gcc.
/usr/lib/gcc/avr/4.1.2/../../../../avr/bin/ld: crtm168.o: No such file: No such file or directory

Cerin, I suggest visiting the support channels for this "avr-gcc"

I think that's self-explanatory, eitherway.
No such file or directory
:o

It's more of a general make/compile question.
you'd think, but it's not

Cerin, no, it looks like a broken linker.

I'm using -L/usr/local/avr/lib/avr5 when I compile, which is where that .o file exists.

Guh

anyone???

That's how you specify library paths right? With the -L flag?

_d, all depends on the license associated with the other code

The linker should be able to see the objects in that path.

usually, but that is left to the implementation.

_d, if the license allows it, then that's fine

I'm using GCC on Linux, so everything should be pretty transparent.

_d, often the only requirement for something like that is that you acknowledge the contributions of the original authors and release the code of your program as well

Cerin, you should try the GCC channel, where people are more likely to know the answer, since it's actually on topic there.

cn28h, i mean like is it right, as a coder to
look into someone elses source
if their license allows for it

ok, thanks

and make your own implementations off it

code is written to be read.

because im really not sure how to go about making a histogram program

_d, like Draconx says.. code is published to be read.

:PPP

punctuation, proper English, and don't stick your tongue out at people who are giving you good advice.

Quartus, thanks

can someone explain to me why exit in the PLT defines a a jmp to _init+24, but there is not code there?
_init ends at _init+22 with a ret instruction on x86 gcc

Someone have blog to him see

so init function is 22 bytes long?

blog C…developer, linux ….

fez, yes
fez, _init
c mangled
(gdb) disass 0×080482fa
Dump of assembler code for function exit@plt:
0×080482f4 exit@plt+0: jmp *0×80495c0
0×080482fa exit@plt+6: push $0×18
0×080482ff exit@plt+11: jmp 0×80482b4 _init+24
sorry
(gdb) disassem 0×080482b4 — No function contains specified address.
(gdb) x/x 0×080482b4 — 0×80482b4 _init+24: 0×95ac35ff
weird…

try disassembly the binary with objdump

_3dfx, surei can do that
i was just wondering why gdb doesnt seem to think it is part of the function

gdb is a bad guy :/

I need to use 32 bitmasks where only 1 bit is set, should I pre-create them and keep an array of them or just create them with shifts on the fly?

Ramen!

use anything like #define CPU_FLAG_X (14), for example. the code will be more legible and the compiler (, ops *a good* compiler) will change the shift for a constant.

ahh, good point …
because I need 32 of them :P
what about shift(x) (1x)
with a #define …
or a ahrd-coded table is "better"?

well, how yoda says, use the legibility luke. if the shift is part of the logic, you can use the real shift to enfatize this. if the value is a constante, the define is better.

the masks will be constant
they won't change

for example for(i=0;i!=32;i++) *p++ = (1i); is more legible than for(i=0;i!=32;i++) *p++ = shift(i);

well, I will be using them in "setting/unsetting" bits in an unsigned int
also for 0, I don't think the macro will work …
since 10 is 1

i think these masks you use with and/or, p |= (1x) to set the bit x, p &= ~(1x) to unset

yes, that is what I will be doing
and p ^= (1x) to flip
what if I hardcode the array? would the compile hosting still recognise the constants and that they don't change?

i think the code will be more faster.
if you are coding a videocodec, any nanosecond is good
you must decide if the extra work is valid for your application.

which one?
I will eventually use this for my own huffman implementation
I have an older version of my try when I wasn't so good :P

ohh, huffman ? make the array! hehehe

?

this is part of it … I want to actually have a bitarray, not an array of chars or ints

if you will use, make faster hehehe

thing is I need random access (mask(x)) …

you can declare a struct with individual bits.

why not an array of masks?

http://www.cs.cf.ac.uk/Dave/C/node13.html
because looks more evil and obfuscated ?

something like mask[x] and you know that the xth bit is set

see the bit field struct
hmm ok, will work too. i used this in a palmpilot video driver.

interesting …
I'll stick to the array …
because x can be (and probably will be) an expression

you can create two arrays, to avoid the ~ operation when unset a bit.

consider a[x3] & ((1(x&7)))

http://www.firstcoastnews.com/news/strange/news-article.aspx?storyid=76141
An 84-year-old woman who confessed to having sex with an 11-year-old boy in her foster care reached a deal with prosecutors and pleaded guilty Thursday to attempted sex abuse, officials said.
she got 3 years. old hag

Hi, I have a simple if instructions, http://pastebin.com/m7c8c793f, but when I compile it under gcc, I get "error: expected identifier or ( before if" and "error: expected identifier or ( before else" what seems to be missing?

do you think I should?

don't hate the player — hate the game.

Zhivago-: I will not be doing things like that

if it was a man he'd be serving life

i think you can test all these options and choice the faster.

it's typing of the code :P

then you will probably be disappointed in C.

Zhivago-: how come?

because C doesn't have bit arrays

Zhivago-: that is exactly what I intend to "fix"

how long do you think it will take to change the standard?

Zhivago-: I don't care about the standard, I need it for myself :P

Zhivago, when C 3089 comes out

jbjuly, your code seems to be missing parts.

"Incurred fault #5, FLTACCESS " is this a generic error that causes a bus error? i know what i changed that caused it but not sure why it is happening any ideas?

jbalint, that's a horrid brace style too

Received signal #10, SIGBUS [default]

I got a quick question on goto.
and lables
can I assign a label to a variable somehow and make the goto use it?
somewhere b: somewhere

gtp, don't use goto or labels

gtp, not in C.

k thanks Draconx

SIGBUS ? what cpu are you using ?

spark

zacs I need gotos for an iterative alphabeta search

sparc
sorry

gtp, you can design it so you don't…

bigjohnto, most common cause of SIGBUS is probably unaligned memory accesses.

it happens when i am reading strings from a file

so I've decided to switch majors
2 semesters of CS and I've had enough
man the CS programs in the US really need to be overhauled

rbrown, what you doing now?

why do they spend time teaching all this useless crap
zacs7, CIS programming track
with a few hand picked electives from compsci

The problem is that people often confuse computer science with programming.

you are using gcc ?

Draconx, compsci is a joke

The CS dept at my school is horrible.
I had a TA who didn't understand English.

I think universities are out of touch with the needs of the business world of today
they teach CS like we're still living in the 80's

LOL
It's because computer programming shouldn't be academic. It's like plumbing.

this has nothing to do with programming

I mean, there is an engineering component, certainly, but there's no "plumbing science" program at any university.

i think sparc is like 68k and all pointers must be on a 4 byte boundary :P
what is wrong with 80's ? :~

I just ate some home-made boston baked beans

Can I use "$HOME/file" in fopen()?

jbalint, no, see getenv()
er
jbjuly, rather

thanks

np

if it wasn't for one prof I'd have no idea how to actually write parallel code with semaphores and mutex …
my OS prof was a grad student and didn't assign a single programming hw …

ride on

oh yea … and there were only 5 people in that class

And the other 4 were hot chicks? :P

no
only 1 and she was taken
the prof had to say "lady and gentlemen" … it was funny

there are none here

Was she hot?

she was ok
this isn't #geek-issues

slavil, did she have a boyfriend mutex? :P

it was a named semaphore, that was woned by root

Invalid breeding parameter "root"

umm, I only had to look at the protection bits and who the owner was
yay, my bit array is done

so you went for a bit array eh!?

that doesn't make sense
try again

is anyone interested in nt syscall emulator?

no

maybe reactos

but they make a whole kernel
and this runs on linux

Goran_, maybe Wine!?

if int a[3] is an array then printf ("%p", a) and printf ("%p", &a) why are the same address ? because '&a' must to be the address where the a pointer is and in 'a' must to be a memory address where the first member can be found

kantor, &a is the address of the first element.. that *is* where the array is stored
arrays != pointers

if I want to know the memory address of 'a' if a is an array, how can I do that ?
cn28h,

a

"the memory address of a" are the words of someone not writing c or trying for an exploit.
but, for an array a both a and &a point at the same place — the first byte of the first element. but each has a different type.

I'm really new to C, and I want to get started on user input/output. (like, events), can someone link me to a good tutorial?

other than a book?
and C is not event driven :P

Well, there must a library, right?
I've been reading some ebooks, too.

a library for what?

for accepting user input?

alamar, http://www.cprogramming.com/tutorial.html
alamar, it's in the standard library

oh, ok.
I'm new to C, but I'm loving it so far…
When the user says "echo"
I want the program to printf("echo");
Having trouble though.

well, if(strncmp(buff, "echo", 4) == 0) printf("echo");
and before that, char buff[BUFSIZ]; fgets(buff, sizeof(buff), stdin);
include stdio.h and your done

wow
cool!
strncmp()?
what does that function do?

compares a string (upto n characters)

which is to say, is usually annoying.

yeah, I can imagine…
what does buff[BUFSIZ] do?

alecw1, read http://www.cplusplus.com/reference/clibrary/cstring/strncmp.html

ok

dinner time, cya

C ftw!

dinner time, crazy timezone you're in :P
/
it's just a wee bit higher level than assembly

well, it's very efficient, right?
small file sizes?

that really depends on your program and the compiler

hmm.
That link zacs7 gave me is for c ++, is that function in C?

yes, it's part of the C standard

ok
well, if(strncmp(buff, "echo", 4) == 0) printf("echo");
and before that, char buff[BUFSIZ]; fgets(buff, sizeof(buff), stdin);
include stdio.h and your done
What part of that gets the user text?

fgets()

ok, ok, cool.
and what is the "buff"

a name

just a variable?

yes

ok, and "BUFSIZ"
what is that for?
the size of the buffer?
how is that calculated?

that's also a name

ok, thanks a lot!

alecw1, it's a macro defined in stdio.h (It's value is 200 something)

cool.
What book do you recommend?
It's a lot easier for me to read paper than internet stuff.

K&R also

K&R?

ya

a link mb?

alecw1, look for "The C Programming language"
second edition

http://en.wikipedia.org/wiki/The_C_Programming_Language_(book)

ok, thanks.
does this cover user input and everything?

it expands to some value, not necessarily 200 something.

possibly GTK? _
guessing not.

no.

alecw1, no way lol

A book for that?

no ideia
there's plenty of stuff online though

ok cool.
Any recommandations for a beginner?

yes
stop thinking about GTK
learn C and gain experience

ok, I'm just very excited to start some programs…

hehe

how long do you think before I'll have my own GUI?

gtk is quite complex

I mean, does it take years?

alecw1, well you can use some designer software

really? what?

alecw1, depends, do you plan on using it just on Windows? Unix? Both?

glade is a possibility

I sort of want to learn it freehand…

i read somewhere libglade is being merged into gtk

Win32 FTW :P

Windows?
I'm a linux hosting user…
Sorry zacs7, Unix only
Sorry zacs7, unix host only

Well GTK+ then :P
and you can go Windows with it too! :O!

pfff

all

screw windows…

alecw1, code for POSIX, the gods will be pleased
^^

and BSD :P

POSIX? Is that Unix?
/noob

last time i checked they were posix compliant
http://en.wikipedia.org/wiki/POSIX
wikipedia is your friend

It's a standard [that some of us care little about].

ok, well, thanks for your help! I'm off.

xystic, i care a lot about it !!!!
because me loves standards and portability

ForceFollow :o :P

hey zacs7

drdo, I couldn't agree more :P

hrmm… anyone got a BSD/public piece of code that'll let you make a URL request and store the result in buffer?
mm.. maybe it's simpler if I just brush up on Beej's again

cURL :P

hallo
i've a c question
i have a char-array and i want transmit it as a parameter to a function
i tried it with a pointer but i only get to first char
if i try to get [1] the compilers says:
wrong type-argument of unary *
(the first 2 line a mistypted)

show us some code. rafb.net

http://rafb.net/p/NtOTPh96.html

first of all, there is an operator precendence problem
i.e. change it to (*keyword)[1]
second, your function protoype indicates that you are passing a char pointer, not an array pointer
prototype*

hmm
jo mean:

in this case, it is sufficient to call your function "myfunction(keyword)", since keyword is a pointer to the first element in the array. you can then use array subscripts on it in your funciton

hmm
that don't work
http://rafb.net/p/gXjhFb83.html
thats wrong too

without the [1] it will. in myfunction keyword is a pointer to char, and both * and [] dereference.
uh, char keyword* is not a valid declaration.

ok that was my second version but whats with the first? http://rafb.net/p/NtOTPh96.html

did you consider what vorpal told you?

in the second version i tried to implement it

*keyword[1] tries to dereference keyword twice.

wow
that works
void myfunction(char *keyword) {
thanks for the information

gonna sleep now, gnight

hey

how would one compare against the number 0×00000000?

like anything else I guess

hi guys, I'm trying to use pcre for the first time… when I compile my program, what options should I add so that it compiles with pcre support?

prce-config will tell you

cool. thanks, light!

Comments

Im trying to get Fedora 7 x64 installed on a laptop I just bought I think some of the hardware was not out when

why is the sky blue
and does fedora come in red?

several apps know how to communicate with palms

gpilot
?
man gpilot

and evolution, and…..

evolution mail program syncs with palm?
yum install gpilot

How can I view a list of currently running tasks in fedora (like ctrl-alt-del in windows)?
Or can't I?

ps

hi all - i know this isnt linux related but just looking for a new mp3 player in the uk and dont want to take the easy apple option - would prefer something with ogg support and a long battery life 20+ hours - whats everyones fav

nickthorley, make your own one

bit beyond my home soldering iron i am afraid

nickthorley, you want 20+ hours battery life? not possible

hi

the iRiver I'e heard is pretty nifty

my current one is an ibead 400 and thats battery life is 24 hours
i like the look of the new creative ones but theirs is only 15 hours and doesnt support ogg

nickthorley, well buy a creative one, gut its cover, and put the cover on your ibead 400

wrong shape - reason why i need new one is because mine old and getting faults now

nickthorley, old stuff always has better battery life
my old laptop that dad used to have since, before we even went to holland
so at least 7 years ago, probably 9
battery lasts like 3 hours or so
or 5
can't remember
but
my current laptop, slightly newer brand, 1 hour battery life
and if you boot it up without plugging it in the mains… no battery life

well i wish they would do different models - my ibead was bought as an mp3 player - has a bright screen but its lcd based and just text - why they think we all want full colour screens and to be able to browse photos and watch video I dont know but all this must be killing battery life

barely 10 minutes that way
nickthorley, yeah

whoever comes up with a good battery will make millions - i think its the main thing holding back phones, laptops, mp3 players etc
sorry everyone for my little rant

no no, I do agree with you
with my laptop, it's the battery itself that is crap
well you see

yeah, i wish they would make the device do what it was intended for, not add all this nonsense to them

people want it to be spiffy
that's why it is spiffy
but some people want it to not be spiffy
some people, like me, want it to not just be text but not too spiffy either
this weird phone this kid let me borrow

well mobiles are the worst - i want a phone that works as a phone and text messages and lasts for a week. The moment i start to browse the net a battery bar goes. If i want net i have laptop. In the uk they are trying to push phone based tv - i would need a car battery over mysholder to watch that

I could not even figure out how to make a call for me, he had to do it every time
when he opened up the dial in interface
it came up with a rediculous screen
it showed the number, but the numbers change colour randomly, like you press 9582 9 is red 5 is blue 8 is green 2 is green
and it had this box
with fancy looking numbers on it

i will be interested when we get real stats on how long the iphone battery lasts for. i have read the stats but i also read laptop stats that you can realistically half the battery time when in use

when you pressed the number on the phone it would look like the "buttons" on the screen pushed down
all this crap in it which is not nessecary

yes thats nuts - just battery sucking

I think they trying to put so much in phones
it's because almost everyone uses moible phones
(cell phones in america)

you sound like a techy fellow - whats your view on netgear or linksys routers - you favor any particular one over another

girls, guys, its, everyone
nickthorley, all routers seem to function quite well
nickthorley, although my netgear one caused more problems than our current belkin one
nickthorley, beacuse it over heated too much
nickthorley, have fans installed in the current one
how ever, my belkin router has an exploit

well mine is driving me nuts and have narrowed choice to linksys 325n or a netgear dg834n but cant make up my mine - think the netgear

hi

I ate up every IP of the network, from 192.168.2.2 to 192.168.2.255
192.168.2.1 was already taken by router
2.0 is broad cast
(mind you so is 2.44)
anywayt
that caused it to not be able to assgin anyone ip address host addresses with its dhcp server

do you know why when i open a terminal and run setup, in firewall configuration doesn't show all open ports?
i see that i have many open ports, but it doesn't show them there

anebi, use nmap to show open ports if you have to
anyway
nickthorley, so anyway, once I did that, only I could access the internet

does anyone know if there is an irc room for broadband routers anywhere

yes yes, this is not problem to understand, but why this interface doesn't show them

nickthorley, as I had hoped
nickthorley, it was awesome
nickthorley, but then it back fired on me

yes when they work well they work really well

nickthorley, they pulled the power out of the router and put it back in
nickthorley, and all the configuration settings got reset to the defaults
nickthorley, so I couldn't access the internet, because the login details were not in

well i have to find mine - probably on some faded piece of paper somewhere - that will be me - bin my old router plug in my new and then not be able to find logon details

where do all my installed applications go in fedora7? i cant see yahoo messenger i installed

yahoo messenger ? ask the installer of the proprietary software you've used.

its called something different now - like a purple figure under internet
not on my machine to check sorry
have you found it

not yet.still looking

its a little fat cartoon char that is purple colour - cant rememeber the name - can anyone type it please

hehe
got it
i typed /usr/bin/ymessenger

what was the name its bugging me

pidgin

thanks - thats the one

hey ppl

try pidgin - its good

prefer xchat — I like having more details available to me
pidgin's decent though

How do i install pam_pwdfile.so on my fedora system?
on ubuntu i just go apt-get install libpam-pwdfile
i dont seem to be able to compile it from the tar either..

have you read the man yum ?

yea
for example; yum list all '*pwdfile*', finds noting

hello
hows fedora like?

eifzon, dont' you mean what's fedora like?

yes
:p

eifzon, and that is very hard to describe, since everyone has different opinions. you would have to try it yourself

eifzon, it's like ; swimming in the ocean :P

ok
is it like debian/gentoo?

eifzon, more like debian

people i get many times in the logs error like this
4 odin kernel: mysqld invoked oom-killer: gfp_mask=0×201d2, order=0,
4 odin
4 odin kernel: Call
5 odin kernel: [ffffffff8106e2d6]
5 odin kernel: [ffffffff8106ffc9]
5 odin kernel: [ffffffff81071873]
5 odin kernel: [ffffffff8126be74]
5 odin kernel: [ffffffff880cabf1]
5 odin kernel: [ffffffff8106d71b]
6 odin kernel: [ffffffff8107965f]
6 odin kernel: [ffffffff8126cb84]
6 odin kernel: [ffffffff8126ef8b]
6 odin kernel: [ffffffff8126d4dd]

cool error

the server hangs when these errors come
yeah, think so

leo|term, lol

okok

what can i do about it

anebi, PASTEBIN

we tested the error for bad ram, everything is ok
the jboss server hosting sorry*

anebi, wow, nice error

mh.. what might "out of memory" mean… mh….

anebi, maybe put more memory in the server? or have two servers to share the load

swap?

anebi, i suggest you never paste to this channel again

6 odin kernel: [ffffffff8107965f]
rofl
it has cfa at the end of it
the country fire assossication ius causing you grief

sorry for "Paste"
we have 4 GB Ram

how did you test it

type in free

also 2 GB swap

I have a question with vsftpd - I'm running Core 6, and have everything set up roughly the same as my previously working CentOS setup. When I try to log in to ftp I get "421 Service not available." I have tried disabling SELinux and the firewall to no avail, and Google doesn't appear to have any relevant answers

with memtest86

vsftpd is running in standalone mode

It says you are out of memory, you need to increase your memory or decrease the use of it.

the point is to find which program is making the problem

use a process monitor like top to find out

yes, but when it is in this state, i can't connect to the server
i can't run top or whatever

4 odin kernel: mysqld invoked oom-killer: gfp_mask=0×201d2, order=0,

i have the same lies for httpd, ntpd, irqbalance
i don't think that ntpd will be the reason about it

anebi, check the system for rootkits

http://rafb.net/p/SAeHEd67.html - vsftpd.conf file

Run top in script with cron periodically if you are unable to leave a connection open.

how can i open and see what processes and applications are running. so i can close them

"top" in a shell
kde and gnome both provide graphical process monitors as well

alternatively you can try: ps x

can't retrieve the messenger i minimized.

fire up a terminal and run (ps aux) for a full list of processes
what's the gnome process monitor called again? do you recall?

system-monitor, i think

yep that's it

Add gnome- to the begin of it, at least in F6

where can i find those commands and their functions?

find a tutorial on administrating a fedora linux system

In Gnome alt+f2 should bring you "run application" dialog.
sorry, I think I misunderstood your question

there are a number of guides and howtos at tldp.org (the Linux documentation project)

and man pages should be loaded on your system as well

rute is a good start although the kernel related stuff in it is a bit dated

man ps

http://rute.2038bug.com/index.html.gz
still the best new-user tutorial available despite being a bit dated

thanks guys. i think it will take tiiiiime for me to understand how to use this OS

Rute did someone say Rute

one thing that'll help you a lot is switching to a minimalist window manager like fluxbox and working almost exclusively with the commandline in xterms for a while

saint_mon, you didnt learn to run windows in a day

for my day-to-day job I work almost equally in the terminal compared with the gui apps

most windows users never really learn how to run it

yes Southern_Gentlem

?
how's that last part go again?

was trying to add something but not enough room

bummer
time to use xrl.us to shorten some of those

"dont work is normal behaviour" ?

Don't Work not valid problem

Maybe those short descriptions, or some of them, could be taken off from that title, like, fedoraforum sounds forumish enough and news is news?
Sorry I'm bored, I go shoot people (in a game.

i installed f7 x8_64 from the DVD torrent. when i do, for example, rpm -q rhyhmbox, it displays two (i386, and x86_64). it is necessary to have that one for rhythmbox to work? or can i leave just the 64 bits version? (that happens to a lot of packages)

you can safely remove any i*86 packages

yeah! fixed my grub problem

you could use the "yum remove \*.i\*86" command

EvilBob, great!. now… why F7DVD for X86_64 installed those packages anyway ?

it is to make compatibility better

Im trying to get Fedora 7 x64 installed on a laptop I just bought, I think some of the hardware was not out when the Fedora 7 release was made, and it is unable to locate a driver for the dvd-rw drive, so installation fails. Tried OpenSuSE 10.3 beta just for testing purposes and its fine. How could I best hosting go about getting F7 on, given Ive currently got SuSe on it?

some thing are not available for x86_64 like vmware, flash and stuff

right, but what is has to do with rhythmbox ?

theres vmware 64 bit

Yupman, where can i download that vmware 64 ?

hold on

there is a i386 rpm that you can compile on x86_64

thank God people in this channel are not rude unlike in the channel linux in undernet

give us time

huh? what do you mean EvilBob

never mind

hmmm

command not found"

"command not found?" A: Run the command AS ROOT after switching users with "su –login" or "su -" in order to get root's command PATH so the command WILL be found; don't run "su" by itself. If it's still not found, then either it's not installed in a standard path location (echo $PATH), is not executable (chmod a+x), is in your current dir (./runme), or you've spelled it incorrectly.

thank you zcat, but that wasn't the joke

you gotta be kidding. time is a shell built-in in most of shells, including bash.

Anvil, right so it's actually a pretty bad joke ;-)
thanks guys, for burning down my joke
;-)

yeah we do what we can when we can

outta my head, will you

EvilBob, i still dont get it… if my Fedora 7 64 bits will work just fine uninstalling all those i386 packages… why are they installed ?

rpm -q time

got an odd DNS question here!! Is it possabel to look at a DNS server and see if a givin ip is used in any record? kind of like the host app but in reverse
wow!! spelling went out the window for me today

reverse dns?

OuttaVMWare, no, i don't want an in-arpa address, want to know if it is assigned to a domain

goto http://www.vmware.com/vmwarestore/newstore/wkst6_eval_login.jsp you'll have to register an account but after you'll be able to download the evalution version which is the same as the full except you'll need a serial to get the full version

yes, if the server will let you axfr. but it won't.
people turn off axfr requests because they think it's a security hole.

oh,
dunno about thqat

ajax, explain plz

Yupman thanks

make sure you select linux as your OS
also if your using a newer F7 kernel get this file http://knihovny.cvut.cz/ftp/pub/vmware/vmware-any-any-update113.tar.gz as the default driver with vmware 6 fails to compile on latest kernels
oh

anybody anygood at LVM? I have a vg question: After I resize my filesystem and reduce my logical volume, how can I remove PE's from a volume group so i can add them to another NON lvm partition on the same disk?

physical extents are not necessaraly contiguous. You must remove a whoole pv.

so in the stock fc7 install if I want to resize volGroup00 I have to do a reinstall basically.

never said that.
honestly, i dont know if you can resize a PV.

pvreduce?

just be careful

yes, be very careful, and make sure you have abackup of your data just in case

i already moved everything off , this is an exercise in "can this be done?"

everything is possible. As far as you have documentation and source code.

its been awhile, but I'm sure it can be done. had to do it on the RHCT exam

I use fc7 and ntfs-config ntfs-3g,when i update the kernel to 2.6.22(use yum update), ntfs-config can not work, when i start the computer , there is a local file system failed
who can help me?

error while loading shared libraries: libgtkembedmoz.so: cannot open shared object file: No such file or directory

hello everyone, does anyone use BackupPC to backup data on a localhost?

I'd be interested in that as well, I was just checking that out yesterday myself

hi

heretic, you mean backuppc?

if i remove a package, is it possible to make yum also remove all packages which were installed just for dependencies?

berzerka, yum does that, but not so good
yum remoev package
yum remove package

hmmm.. i just installed amarok using yum install, he installes i believe 6 deps, when i do yum remove amarok, he wants to remove only the single package :/

berzerka, I noticed that sometimes yum can remove all the deps, but sometime it does not, that's why I say "not so good"

:/ well… thank you.

hello all

berzerka, check the AskFedora column in the Fedora Weekly News, there's a question similar to you

What is the best ssh to implement in Apache in Fedora 7 ?
uWhat is the best ssh to implement in Apache in Fedora 7 ?/u

can someone tell me what is wrong with broadcom wifi an kernel 2.6.22?

broadcom suxs

i've tried everything but nothing helps

yes

blacklisting bcm43xx stuff
?

Wich one of SSH is good enough for Apache in Fedora ?

Histy what braodcom card
rust none

AirForceOne 54g

heretic, do you know the location where backuppc store backups?

Maybe any SSH will do ?

i have another question about resizing my lvm partition. so when i look at the vgcfgbackup of the lvm i see the pv0 "hint" is /dev/sda4 do i run pvresize on this?

heretic, I can not find any settings about that

no, I haven't used it yet.

Hiisty, lspci

from what I understand it's all configurable through a local web interface

what card

Hiisty, what OS?

actually better question how do I consolidate my allocated extents to make the smallest contiguous space?

There should be a proper SSH to implement in Apache - witch one ?

2.0 Network controller: Broadcom Corporation BCM4318 [AirForce One 54g] 802.11g Wireless LAN Controller (rev

need to use the wrapper to make it work

fc6
ndiswrapper?

Hiisty, yup

sone that
done*

Hiisty, follow the fedoramobile.org hotto
howto

64 or 32 bit?

dont matter

32bit

yes, it does…i have a 64bit and the 32 bit drivers will not work

i have 32bit, and those drivers works nicely with 2.6.20

hypertux, worked on mine fine

Southern_Gentlem, see…that's why broadcom SUX!! lol

Can CDMA PCMCIA Wireless Card be used with fc7?

Hiisty, http://fedoramobile.org/fc-wireless/bcm4318-ndiswrapper/
try that

Hi guys.

fc6 / fc7 will not use the 32bit drivers on my 64bit system, sais it starts up, installed fine but its a no-go

skynovo, if you can find the drivers for it yes

i have always had to fight with that

hypertux, hp or compaq?

I recently upgraded from FC4 to F7. This can caused some problems in my httpd.conf. mod_access.so doesn't exist anymore. What should that line be replaced with?

upgraded how

Southern_Gentlem, HP zv6000 …YUCK!! i need an Alienware!!

hypertux, same lappy here, and i love it
but mine is a 6300

Southern_Gentlem, AMD or Intel?

amd
turon dual core
nope its single core new computer is dual

64 athlon here
you have a card reader in yours??

yes never used them

does it work or do you know?

By the DVD.

clean install or upgrade

upgrade

did you remove all third party rpms and repos first

No.

Southern_Gentlem, thanks

time to go be a pusher
later gaters

that didnt work

depends on the process

Hello WebDragon
the dd_rhelp just finished a few minutes ago since we started it what, 2 days ago?
uthe dd_rhelp just finished a few minutes ago since we started it what, 2 days ago?/u

killing its parent process may work but it depends on whether that parent process is your entire X session, etc

ps aux | awk '{ print $8 " " $2 }' | grep -w Z

jeeeeez

(info): ipos: 117186111.0k, opos: 117186111.0k, xferd: 117186111.0k

returned Z 2607

That was transferred
So now how can I "mount that image" or whatnot?

0 [libvirt_qemud]

no clue — that's entirely outta my balliwick, ryanoe

oh okay
Anyone in here know how to mount a dd_rhelp image?

you can get some information on what the parent process is with pstree or ps awxf
killing the parent process may have unwanted results

how long are the fedora support cycles?
like, if I install FC6 or FC7 on a server now, when will they stop getting maint updates?

xeeble, yes

that doesn't answer either question

Anyone in here know about dd_rescue and/or dd_rhelp?

xeeble, fedora cycle is 6 month so like now everything before fedora6 is dead

hm, so when is fedora 6 maint support expected to end?

probably after f8 release
if i am right

is this written up on a fedora site somewhere? I need to know for my higher-ups

xeeble, yes written somewhere need to find

to have something like variable="command" what other parts do i need to add around the command?
in a bash shell script

xeeble, yeah found it http://fedoraproject.org/wiki/LifeCycle

If you want the output of the command stuffed into the variable you want variable=`command`

umm, that didn't help

thanks! It says: "Fedora 7 will be maintained until a month after Fedora 9 is released. Since new releases of Fedora occur approximately every 6 months, this translates into approximately 13 months of updates for every release."

And that's the grave accent (`) not a single quote (')

hehehe, ahhh, KNEW i was missing something there
thanks!

i have working drivers from my xp, but i can't see nothing on dmesg

xeeble, for a jboss server hosting that i guess is not sufficient you can better look into stable products with long life cycle. like rhel/centos

np

agreed

Hiisty, may i know the hardware in question ?

Broadcom Corporation BCM4318 [AirForce One 54g] 802.11g Wireless LAN Controller (rev 02)
fc6 32bit 2.6.22

geeze, FC8 is scheduled for release *this november*, which means FC6 will be unsupported by 2008 (!) if I read correctly

xeeble, probably in late december

ouchy ouch ouch ouch

Hiisty, which driver you using atm

bcmwl5 and also tried with bcmwl5a

Anvil, ping

ndiswrapper -i bcmwl5a.inf says; driver bcmwl5a is already installed

how can i read out one data of an mp3 song with id3v2?

that sounds ok?

i guess having a space in a variable is a bad thing?

Hiisty, have you gone through this thread completely http://forums.fedoraforum.org/archive/index.php/t-156282.html

no i haven't, but my fw-cutter doesen't support .o files

all i can suggest is to go through that thread if it helps. i have not tried that hardware so far

ok, but still is this some fc6/fc7 thing, or why i'm getting "Sorry. the inputfile is either wrong or not supported by bcm43xx-fwcutter" when i try to "bcm43xxx-fwcutter -w /lib/firmware/ broadcom-wl-4.80.53.0/kmod/wl_apsta.o"

Hiisty, for the 4318 dont use the fwcutter

ok

has anyone here ever used id3v2?

Andy-Freak: you can view those tags with a gui tool like kid3

http://fedoramobile.org/fc-wireless/ndis-yum-livna my thing fails on step 13.

no its on ssh

everything else goes ok

it has to be console

Andy-Freak: you can tunnel x11
basically, do ssh -X instead of just ssh and you can run gui apps

no i really want to do it on console
i also need it for an shell script

Andy-Freak: so did you google for CLI id3 tools?

nobody wants to use the CLI anymore, they gotta have the fancy buttons and crap like that
i'm sorry, I just had a conversation about cli and gui tools, really pissed moe off

I call gui "Colorforms"… is my attitude showing ?

Andy-Freak: yum search id3 shows a couple of python modules that might be of use

hhehe
I've got a usb thumb drive that doesn't wanna automount. where can I go to figure out why
hmm, its just this one drive, the others work

/var/log/messages show the usb inserted? any errors?
you can look at /dev/disk/by-id and see devices with some meaningfull name, you can even use those pathnames as the device name in a mount.

it picks it up, just won't autom ount it, but I think I figured it out

Southern_Gentlem and openbysource thanks guys!!
i rebooted, and now i have wifi

fdisk on the drive gives msg aboutpartition 1 having different physical/logical endings…

that's a bit odd, perhaps you should reformat that usb drive.

I'm gonna just format it again. that might fix it.

my F7 install just did an update, i noticed that the ati drivers were part of the update, now i get a watermark on my screen, checking google it seems this is an issue from a month ago…
any new info on it?

error while loading shared libraries: libgtkembedmoz.so: cannot open shared hosting object file: No such file or directory
??

pasting the same error msg over and over will get you nowhere, so i suggest you stop right now and you start learning how to speak and describe correctly a problem.

Hiisty, so what finally worked out for you

http://fedoramobile.org/fc-wireless/bcm4318-ndiswrapper/ and ndiswrapper howto

Hiisty, cool. i will be looking at it this weekend when i will get the same hardware
__CC__, that .so is provided by the package firefox as far as yum provides tells me

but i was confused when after modprobe ndiswrapper i didn't see anythig on dmesg

openbysource, he is useing fc6

oh i didn't knew that

is there fool-proof way to upgrade fc6 to fc7 ?
i've once tried same from fc5 to fc6 and that didn't go so well

went well for me with the install dvd
upgrades are never exactly fool-proof, especially if you have stuff from 3rd party repos installed

yep

is there a way that when you cut an mp3 with mpgedit that the id3 data is stil there?

7 seems to generally work quite well, I've done it on 3 systems with no serious problems

Hiisty, with that card say on fc6 a little while longer
stay

Southern_Gentlem:
i thought so too, but someone said that fc6 will be no longer supported in 2008
or, maybe i should buy new laptop, which has better wifi-chip

Southern_Gentlem, that card is it supported by mac80211 ?

basically only the current and previous versions of fedora are supported, so when F8 comes out in november, FC6 is done

Hiisty, fc6 will go eol in December
current plan is 2 release + 1 month
openbysource, i have not yet got that card to work with mac80211

tried 2.6.22.2-57.fc7 ?

no
i stay with the current kernel not jumping ahead because of all the other things i need

What is the new name of apaches mod_access, I have httpd-2.2.4-4.1.fc7 installed and don't seem to have mod_access.so

yum provides /*mod_access.so

Ah.. in what package is it found?

dacm, on f7 lighttpd.i386

Can some1 help…? I have IBM Ethernet adapter and i just cant get it activated on fedora 7. I have selected (PCMCIA ibmtr_cs) as an adapter.

Hmm, isn't lighttpd different from Apache? I want Apache really. :-S

that is the package that contains the file you want
what makes you think you need that file?

mod_access isn't called mod_access anymore, if I remember correctly.
mod_authz_host might be what you're looking for.

Well my old httpd.conf file included the mod_access module, and when I comment that line out I get problems.

error while loading shared libraries: libgtkembedmoz.so: cannot open shared object file: No such file or directory
wats the problem

__CC__, you were warned i suppose. and i told you, you need firefox

I think it has changed; see http://localhost/manual/howto/access.html is you have the docs

i hv firefox

Ah thank you.

find / -name libgtkembedmoz* says this
/usr/lib/firefox-2.0.0.5/libgtkembedmoz.so
/usr/lib/esc-1.0.1/xulrunner/libgtkembedmoz.so
sry…my netwrk is very unstable and i dont receive all ur replies

seems some of the letters are falling out of your own lines, too.

that file is owned by seamonkey, thunderbird, firefox, esc, nvu

opsec but my yelp worked fine few days bk

__CC__, when you installed esc ?

they are all different paths ..

i donno wats esc

make sure you have each one of those installed .. that may fix whatever error you have
it's a smartcard manager

so i need to intall all these - seamonkey, thunderbird, firefox, esc, nvu

__CC__, no not necessary to run yelp

so wat exactly shud i do

__CC__, i have no idea. try removing esc

k

the quick repair is to yum remove yelp and yum install yelp
that should pull in any deps you are missing

hello guys
i need some help

hello gfather
gfather, don

any one got vpt ?

don't ask to ask just ask

sorry
vpn

just ask your specific question or give us your error with an explanation

My GUI has crashed. And when I try the "startx" command I get the following error.
error while loading shared libraries: /user/lib/libXau.so.6: invalid ELF header
that x5, then replace xauth with xinit
then another xauth

gfather, you use openvpn ?

in terms of lines
I need to know how to fix that problem. oh and 3 irssi.

i need to connect to a vpn from windows or fedora

/user/lib/libXau.so.6

openbysource can i pm you ?

gfather, no
opsec, i think he typed that all by hand

every body hats pm

oh
/usr/
sorry

no gfather how are others supposed to learn if you take everything to pm?

whenever I see that I think /user/

yum install libXau.i386

alright, thanks

no , thats not the piont , i dont have an error , i need something specific , so i dont think anyone wants it other than me

how do you know no one else wants it .. or may find it useful?

ok , ill speak it loud

Says "nothing to do"

"nothing to do?" A: When yum reports "nothing to do" what it's really saying is that the "package may already be installed" (or it doesn't exist), so there's nothing for it to do. (ask directly: rpm -q package).

unless someone here is a personal friend, assume most people here don't want to be pm'd

i need to connect my xbox360 to windows or fedora , and connect to vpn , so i can get another ip from euorp or usa

then it's installed already .. you can yum remove libXau.i386 and yum install libXau.i386

did he try taking it to pm?

but i'm not sure what deps that pacakge has

to PM with you, I mean

alright

no.. scrol up
no one can pm me .. go ahead and try

haha….no, I know

???

it wants to remove 400 packages that it's a dependency of.

i need to connect my xbox360 to windows or fedora , and connect to vpn , so i can get another ip from euorp or usa

try to speak to opsec in pm

ok, you can force reinstall the rpm to correct the corrupt file

and I'd prefer not to uninstall things such as "gnome-panel" that I saw on the fast-moving list.

then you shall understand

how?

man rom

do i have to have nvidia module loaded into my kernel for beryl to start ? i have a default vanilla kernel which does not have a compativle nvidia official driver yet and i want to run beryl, any idea how to achieve that ?

man rpm*

one sec, let me locate the package in a repo

uh, I kind of don't have a GUI right now.

the yumdownloader tool in the yum-utils package will come in handy

m0dY, uname -a

i need to connect my xbox360 to windows or fedora , and connect to vpn , so i can get another dedicated ip hosting from euorp or usa any body can help me with that ????

that will work in console too. man rpm. you're gonna need the force, and the package link opsec will give you now

gfather, /join #defocus ask there. useful people sit over there

ok
thanks allot

rpm –ivh –force ftp://mirror.anl.gov/pub/fedora/linux/releases/7/Everything/i386/os/Fedora/libXau-1.0.3-1.fc7.i386.rpm
use the –force option with care .. it can really ruin your system if you make a habit of it.

thanks
I'll try it now (I was copying it down carefully on paper)

you should be able to use –replacepkgs instead of –force

it says ivh is an unknown option

use one -
sorry, typo

okay

-ivh .. not –ivh

I hope this works…

i cant seem to find help in #defocus , any segestion guys ?

how do i install from a command line?
like rpms

r0b-: what are you trying to install?

nvm

hi, ive just installed fedora 7, and using bind-chroot, what is the logging directory for channeling logs?

usually logs for everything are in /var/og

/var/log/*

im using this statement in named.conf channel name_log{
file "/var/log/named.log";
and I get an error saying file not found .. simalir

about your questiong, i am running a xen kernel

m0dY, please tell uname -a

ok booting machine.. a sec.

helllo

8 EDT 2007 i686 i686 i386

Where should I report a packaging error for Fedora 6 x86_64

to the email of the packager
the package maintainer

I'm trying to install php-mysql and it is hardcoded to an older version of php-common

http://bugzilla.redhat.com/ ?

how do you find that info out…
yum info pkg doesn't show the maintainer name

i searched all of the internet to find a compatible nvidia for this kernel and i failed so far

file a bug in bugzilla… much better. There is then a record, and people who are also seeing it can find it and add more info too. Much better than private email.

m0dY, try non-xen kernel

Hi all. Is there an aptitude like package manager (ncurses based) for fedora?

nirik, php-mysql is not in the package list….
and it is in updates do it should not be a extras file

php-mysql is a subpackage of the 'php' package. File against php.

the whole idea is about having beryl run under a xen kernel
48 hours, no hope till now

any logical reason why every burning app i use can't see my DVD burner unless i'm root?
gnomebaker, nero, name something

m0dY, see if livna has driver of nvidia for xen kernel (i dought so)

downhillgames, i think ordinary users are not allowed direct access to hardware (i.e., non-root = non-access)

the only hope i found was kmod-nvidia-xen-100.14.11-1.2.6.20_1.2962.fc6.i686.rpm but as soon as i boot the machine, as soon as the nvidia is getting into the kernel the machine hangs with a dead black screen..

i have that problem faxing (must be root to use modem device)

Byro; isn't that what HAL is for?

for faxes you need to be a member of the 'uucp' group

kdekorte, thanks

one hack you can do is change the owner of the device to you

downhillgames, probably there is some group you need to be in, not sure (like my user login is very non-privileged)
anyhoo have a great day all… gotta go

…cya thanks .. :/

Byro, basically just do a ls -la /dev/ttyXXXX on your fax device and it should show you what group you need to be a member of

hlewis; no thanks :o

also make sure you are looking at the device and not a symlink to the device

disk

what do you mean disk? I thought you were talking about a DVD burner

i need to be in the group "disk"

any channel guys that can help me in vpn ??

kdekorte; that didn't work…

did you logout and back in

no

group memberships are only loaded on login

i ran it via terminal… that is a new login

what does 'groups' tell you

dang.
brb, then

you can ssh into your own box
and check it that way

it took, i just need to log out and in

google can

nah , tried to search allot
you cant find someone with vpn in google

kdekorte; i'm in the same group as owned by /dev/scd0 and it's still denying access

what does ls -la /dev/scd0 tell you

1
i already own it too

scd0

is that not a symlink TO scd0?

interesting you are logged in as 'downhill' right and it shows the device is owned by you and you have +rw on it

yes
$ users downhill

the + at the end of your permissions means there are ACLs on the device I think what do those show

the group disk should not matter since your id should supercede the group

indeed, kdekorte
hlewis; how do i check?
OH would SELinux block usage?

getfacl /dev/scd0

ahah! "Allow user r/w noextattrfile (FAT, CDROM, FLOPPY)
"
ah that so did not allow access…
hlewis; nothing sticks out to me…

gfather, you searched "allot"? search for "a lot" next

has anyone here been able to upgrade from 6 to 7 via yum without too much trouble?

b-owl, I did

cool
im having some problems
Missing Dependency: libgcj.so.8rh
when i do yum upgrade
that and a python abi dependency

sorry, help me please, SATA work with Fedora 7?

b-owl sounds like you have something old holding it back

should i uninstall python and libgcj?
if i do a lot of other stuff gets removed
i think yum will too

try just libgcj
write down what is removed and then add them back when done

ok

this is a reason that upgrade via dvd is preferred

lol.. 129 packages
i know
but the fedora installer wont recognize my dvd drive
so im stuck
is it possible to have 2 versions of libgcj installed? that way i wont break anything
hpachas-PE, i think sata should work with fedora 7
its working on 6
having any probs with it?

yes. with this model ST3250820AS

has little to do with the drive .. and much more to do with the controller it's attached to

opsec; apparently my onboard RAID disallows writing to the MBR. i had to reinstall using IDE compat.
(a bios feature)

ooh.. i forgot to enable the testing repo :P should be able to update libgcj now

no it recognizes the HD SATA

hpachas-PE, eventually you'll arrive at an actual question?

the question that does to me is the following one, since it is not a problem in my machine, if I would like to help to the person with the problem. It commented to me, which it has a problem with a disc SATA of 200Gb, which at the time of initiating the installation does not recognize the disc and that the system (DVD) requests a HD, to be able to make the installation. We can help it? personally I have not had problems with disc SATA. for that

um, i'm lost. i want to compile whatever Cinelerra is in freshrpms. where do i go? there seems to be different projects…
http://heroinewarrior.com/cinelerra.php3 that one

how can I create an image of my remote server ?

not understanding what you want

opsec; see that link and http://cvs.cinelerra.org/

and that will explain to me what you want to do?

it says one is a community-driven fork and the other is only maintained by the original developers
so i have no idea which to compile

you could try to find the srpm of the freshrpms version and compile it

vpv; ah. yes, yes I could. thanks ^_^

freshrpms has this package in their repo
get their src.rpm

it conflicts with Livna
i wish those repos would just merge… freshlivna.org haha

downhillgames, there was talk of the repos mergeing but individual personalities prevented that

Southern_Gentlem; bummer
$ sudo rpm -ivh ./cinelerra-2.1-0.12.20070108.fc7.src.rpm
cannot create %sourcedir /usr/src/redhat/SOURCES
:/

here's what i'd do
i'd install rpm-build and rpmdevtools
fedora-buildrpmtree
in your users home you should then have an rpmbuild dir

i am listening

extract the contents of the src.rpm into the appropriate subdirs
.spec file in the SPEC dir .. source files in the SOURCES dir
etc
then run rpmbuild -ba ~/rpmbuild/SPECS/foo.spec

and install the resulting rpm

g'day folks

hi, pembo13_com.

downhillgames, sup.. building RPMs?

if it builds it will be located in ~/rpmbuild/RPMS/$arch/foo.rpm

opsec; the tools are installing now. i shall try this
pembo13_com; Cinelerra

downhillgames, your own spec?

no.

extract the contents of the src.rpm into the appropriate subdirs"

if it won't install, how can i do this?

downhillgames, rpm -ivh it as a normal user.

nifty
thanks, zcat

see ~/.rpmmacros for why that is

is there is a big difference between running beryl on xgl and running it on aiglx?

use file-roler

oh, that, too. it's been a while since i attempted to open a source rpm in file-roller
like… since FC3 lol
well it's whining for dependancies…

right click the src.rpm on your desktop or wherever .. open with archive manager
extract the contents

ok i tried now some python programms (for example eyeD3) but i did not find one which can display one id3v2 data (they only can show all together).

opsec; the source rpm installed and i'm filling the deps. is that good or shall i hit no to this yum install and extract it… (the source rpm installed as user)
i don't see how they are different being the same source file and all

Andy-Freak, easytag

sorry.. lemme simplify that, opsec.

can i use it for shell ? or is it gui ?

you will need the deps installed one way or another for the rpm to build
Andy-Freak: gui

is there any reason to extract it over using what is installed by rpm -ivh (ran as user)?

ok i need it for an shell script

Andy-Freak: what about using grep and friends once you have all the data?
bAndy-Freak: what about using grep and friends once you have all the data?/b

rpm -ivh installs the contents to /usr/src/redhat/*

opsec; not as user
think i got it

ok, i just use file-roller ..
you are free to do what works for you

opsec, save some time with rpm

opsec; as user: rpm -ivh foo.src.rpm installs to ~/rpmbuild

i think it takes more power there are 200 GBs with mp3 songs ;-)

yes, i got that

i'm just wondering why you use file-roller it's much more simple
to use rpm

because i got used to it

fair enough
thank you both, opsec and zcat ^_^
i'm gonna make some food while these deps download

is ther no other way?

Andy-Freak: you have the source to the apps, maybe you could comment out the parts that print stuff you don't need

arrrgh
ok
i have a simple question

waits

i am not so good at linux things. or is it easy?

Andy-Freak, lots of ways to view id3tags. one simple way is to use "midentify"
bAndy-Freak, lots of ways to view id3tags. one simple way is to use "midentify"/b

remake the installation dvd with the latest stable linux kernel OR jsut copy the latest stable kernel to antoher cd and select it from gruib

opsec; darn these fast machines pastebin comin' at ya

if I am asking on irc, that means that obviously i am not getting the help i need fom online documentation

where can i get midentify?

LinuxGurlDD, have you tried adding kernel parms during the install

opsec; http://rafb.net/p/4twcZN20.html

like acpi=off or nodma=ide?

opsec; is that helpful or do you need the full build log?

I've removed Yum from my system. How do I install it again? I can't find an RPM or tarball for it

Andy-Freak: it's included with mplayer from livna

ste324242343, you havent been looking very hard

so i have to install mplayer?

Andy-Freak: yes

ste324242343; your fedora CD/DVD

its in the updates and fedora folders on the mirrors

and that

midentify is just a script that calls mplayer to do the identifying, iirc

LinuxGurlDD, did you check the checksums of the isos you downloaded

is it big? because its a server and i hate it if there is unusefull gui stuff

yes

Andy-Freak, easier: yum install id3lib and then use its "id3info" util

LinuxGurlDD, yes to what
ste324242343, http://mirror.cc.vt.edu/pub/fedora/linux/updates/7/i386/kyum-0.7.5-7.fc7.i386.rpm
ops

How come the nVidia legacy driver from Livna keeps messing up my computer?
And is there a way to get 3D working on it?

how is it messing up your computer exactly?

ok and how do i use it?

b-owl: scroll up
I believe I was in here earlier :P

i'm going to attempt to build it myself

ive tried adding kernel parems

ste324242343, http://mirror.cc.vt.edu/pub/fedora/linux/updates/7/i386/yum-3.2.1-1.fc7.noarch.rpm

there is no manual vor id3info

ive done multiple things

Basically, I finally had it working for 3D…

opsec; good luck i'm sorry, i've only ever built 1 package from a src.rpm before

i have tried nosmp, noapic apci=off apci=forcenoprobe, etc etc

But then the screensaver crashed the computer

and yes the checksum check sout

Andy-Freak, feed it an mp3?

LinuxGurlDD, come back when you have time to deal with this problem

and then I had problems starting up the GUI again

yeah

errors when I did "starx"
I replaced the 3 bad libs when errors came up, but then I had to restart because it froze
then I logged in again, it appeared to work, but then it froze again

on the screensaver?
or when you logged in

and 3D no longer works
no
just randomly
while doing stuff
the mouse/keyboard stopped working

yeah how do i for example get ONLY the album name?

fedora 7?

yeah

http://www.nvnews.net/vbulletin/showthread.php?p=1337394 — does that sound like your problem? havent read it all yet
dual core?

piglit, what video card
Pious, what video card

nVidia

nvidia what

teh model

and the slot type

Pious, uname -r
Pious, rpm -q livna-release

its not in the help of id3info

Sonar_Gal, ***BIG SPINNING HUGS**

2.6.22.1-41.fc7
livna-release-7-2

can anybody help me ?

I uninstalled the nvidia legacy driver
because it was causing problems

Pious, what video card

where di I get plugins for totem to play dvd avi asf mpeg etc

lspci should tell you

Andy-Freak, what was ur q?

^Cowboy^; http://rpm.livna.org yum install gstreamer-plugins-ugly gstreamer-plugins-bad

which line, Southern_Gentlem?

how to get one id3 data from an mp3. in the console

Hi. Is there some sort of "USB manager" so I can see all the connected USB devices?

oh
hold on a sec

seekwill, there GUIs to do this, don't remember the names of any
seekwill, i normally use the command line tool lsusb

i did a yum install of the good the bad and the uly
and it still wont play a dvd

That works for me. Thanks!

^Cowboy^, i normally use mplayer/kplayer for that
seekwill, cool

pembo13_com, lol @ your comment on /.

Just needed to make sure my headset was recognized.

pramz, which one?

Andy-Freak, familiar with python?

RHEL+SELinux

seekwill, cool

in the Ubuntu thread

pramz, oh.. hahah

totem is the default player thought for dvds

not realy i tryed the tool python-eyeD3

pramz, with all those web apps, they really should

how can i make the files in /sbin/ execute without typing /sbin/modprobe for example, ie i want to type modprobe directly?

k, gonna write up a quick script then
give me a min or 2

pembo13_com, or at the very least use ssh keys and ftp-s or sftp

_LH_, edit your path

pramz, tru tru

k, whats the cmd for that?

cool

http://rafb.net/p/kKMBqB11.html

pembo13_com, but what better way to learn :-)

what tags do you want to get?

about time Banker

pramz, haha, i suppose… i've been rooted once myself… back in the day

Title and Artist
but i want to give it to lame

oh

thats the problem
i am writing a shell script wich uses ,pedit cutting the mp3 after that the mp3 dtat is gone so i have to give it back to the mp3

pembo13_com, heh yea that is painful, I have not been rooted yet, but took over managing a server which was rooter and was running an ircd with warez on an ftp . Telling the company why their 2mbit line felt like56k was an interesting discussion
err rooted even

mpgedit sorry

i'll let you know when i have something.

Pious, nVidia Corporation NVCrush11 [GeForce2 MX Integrated Graphics] (rev b1
i would try the nvidia-96xx driver

yum install gstreamer-plugins-good gstreamer-plugins-bad gstreamer-plugins-ugly ……. says Nothing to do

^Cowboy^, #2 FAQ: "nothing to do?" A: When yum reports "nothing to do" what it's really saying is that the "package may already be installed" (or it doesn't exist), so there's nothing for it to do. (ask directly: rpm -q package).

pramz, haha… i was borrowing a friend of mine some web space… on an FC2 box, nothign really production.. he had phpBB on it, and someone got in through there

not from livna, though?

Andy-Freak, http://pastebin.com/m3a43c86f will get you the tag..

opsec; can't say i'm not eager to know

pembo13_com, phpbb was a security nightmare, i stopped using that and went to SMF for my hosted forums

you need to grab id3reader from..

or is there a livna one for that too?

pramz, i backed up everything, including unpatched phpBB… not konwing phpBB was the problem… but i also put in SELinux, an didn't get rooted again, but SELinux help me see that phpBB was the prob

ahh

pramz, never used it myself
pramz, phpBB that is

http://www.nedbatchelder.com/code/modules/id3reader.py

package install is not installed
gstreamer-plugins-good-0.10.5-6.fc7
gstreamer-plugins-bad-0.10.4-2.lvn7.1
gstreamer-plugins-ugly-0.10.5-2.lvn7

^Cowboy^; and why aren't they installed?

does that mean gstreamer plugins are already installed?

not sure how to pass it to lame

I dunno

one of my friends was a huge phpbb fan and his box got hit with a phpbb issue, the viewtopic.php bug where it would search google and attack other sites with viewtopic.php

do i have to compile python?

^Cowboy^; fedora 7?

yes

^Cowboy^; install livna-release-7.rpm
^Cowboy^; then: yum install gstreamer-plugins-ugly gstreamer-plugins-bad

pramz, ah, that sucks… SELinux all the way on internet facing boxes i say

^Cowboy^, rpm -q livna-release

pembo13_com, this was in 2002-2003 though :-)

Hello, how do i take a screenshot of my hardrive in FC6?

SAM_theman, screenshot of your drive ?

a screen shot of your hard drive…?

Livna-release-7-2

yes sir
:-D

pramz, yup

gotta a phillips screw driver?

I do not think that means what you think it means

:P

lol…

^Cowboy^; yum install gstreamer-plugins-ugly errors?

not sure what you mean SAM

like an image

ahh a disk image ?

and when i do import sys it tells me unable to open X server

or a picture ?

well my dad asked the question
1something like that

well if you want to take a snapshot or image, you can try dd

SAM_theman; using dd

dd

type "man dd" for more info

ok as root?

Loading "installonlyn" plugin
Setting up Install Process
Parsing package install arguments
Nothing to do

i would read how to use it first

roger ok

^Cowboy^; it's installed already… try totem again

I have another question
I like fc7 but it won't work with AutoDesk Maya which I need

use vmware

and should I install 64bit or 32bit of Fedora?

with windoze

vmware doesn't support 3d

32
ah.. didnt know that

SAM_theman; do you have 4GB of ram or more?

Totem cannot play this type of media (DVD) because you do not have the appropriate plugins to handle it.

I have 32GBs
yes

oh snap
32?

SAM_theman, maya works in linux, and since you paid for it you've got support

SAM_theman; install 32-bit then install kernel-PAE

zcat, yes but it gives me a startup erro

downhillgames, what is PAE?

j/k I have 1Gb ram

SAM_theman; PAE means physical address extension. you can use more than 4GB of ram then

do i need to reboot after I yum install gstreamer-plugins-good gstreamer-plugins-bad gstreamer-plugins-ugly

SAM_theman; try not joking

ah cool

somehow i doubt you have 32gb of ram

heeheh

opsec; he has 32GB of horses***

:-D
yes 32bit is etter
*better
I got to downlaod it tho

making false statements while asking for help is considered to be counter-productive to your original requirement

I have a ram 1/2 ton hemi sport

pramz, srry

is there a big performace difference between aiglx and glx?

b-owl; glx = 3d acceloration. aiglx = Xorg server extensions to use glx

cause this ^Cowboy^ loves a Dodge

lawl

XGL = a Novell hacked Xorg server.

i have an '89 Ford Ranger XLT
Olorin2; and a buggy POS

hmm

http://youtube.com/watch?v=8Bs8vZgTURw
Fedora core 7

downhillgames:

xlt 89 nice trucks coold body styling
coold = cool

ughh only have 100 megs of ram left -_-

downhillgames must be a Cowboy too

apparently a magnet for acciedents. people have hit me while at red lights and ….gah…
neg

I have another question

does swap only get used when the ram is full?

1979 chevy 4×4 custom deluxe

I was on suse 10.2 x64 and it just crashed

b-owl; that would make sense

And I lost my training dvd's in them

lol, k

how do I get them into my windows hard?

mamma dont let your babies grow up to be cowboys. Dont et em drive them ole ford trucks. Let em be doctors and metal heads and such

like I try to but it but it stays in Xserver

has anyone successfully created an selinux module for use with swat on an f7 samba server?

lol

yuhuck, let's go find yer sister
afteeer that we ken go ofin the field and shoot random stuff

which is also his cousin and aunt
oops

yeah lets go find my sister she'll kick yur arse too
hehe

brb

I've just installed Yum and I'm getting these errors when trying to install something:
[root@localhost addoughty]# yum install htop
Gathering header information file(s) from server(s)
Red Hat Linux 6 - i386 - Base
retrygrab() failed for:
http://mirror.dulug.duke.edu/pub/yum-repository/redhat/6/i386/headers/header.info
Executing failover method
out of servers to try
Error getting file http://mirror.dulug.duke.edu/pub/yum-repository/redhat/6/i386/headers/header.info

O_o

[Errno 4] IOError: HTTP Error 404: Not Found
[root@localhost addoughty]# yum install htop

pastebin dude

Gathering header information file(s) from server(s)
Red Hat Linux 6 - i386 - Base
retrygrab() failed for:

ste324242343, don't do that again. no paste here

http://mirror.dulug.duke.edu/pub/yum-repository/redhat/6/i386/headers/header.info
Executing failover method
out of servers to try
Error getting file http://mirror.dulug.duke.edu/pub/yum-repository/redhat/6/i386/headers/header.info
[Errno 4] IOError: HTTP Error 404: Not Found
[root@localhost addoughty]# yum install htop
Gathering header information file(s) from server(s)
Red Hat Linux 6 - i386 - Base

holy shite

retrygrab() failed for:
http://mirror.dulug.duke.edu/pub/yum-repository/redhat/6/i386/headers/header.info

damn

Executing failover method
out of servers to try

this will be awhile

Error getting file http://mirror.dulug.duke.edu/pub/yum-repository/redhat/6/i386/headers/header.info

ste324242343, oh got it. i guess you soon going to be kicked out.

[Errno 4] IOError: HTTP Error 404: Not Found
Sorry
My bad.

pastebin.com

your bad indeed

ste324242343, this is more than bad

It wasn't done on purpose.

ste324242343, it was or wasn't is out of question
ste324242343, you should read /topic before you do anything stupid

i agree

i sense a disturbance in the channel, as if millions of lines suddenly poored out in spam and were suddenly silenced

your not stupid ste but pasting all that in chat is stupid
roflmao

s/poored/poured/

It was intended for a single paste but my scroller was stuck half way up the channel and I have a dodgey keyboard so thought a bit of force on the keys would get me a paste

yes a sudden disturbance in the force as if /dev/null had to be reversed

Why?

downhillgames, because you need to reverse the polarity of /dev/null

Red Hat Linux 6? Man that's old

/dev/null

shh now
we're not gonna screw up someone's box today
that's on mondays, but by acciedent

no spartan dies today
prepare for glory

/dev/null

why?

chocolate rain!

Anyone know how to configure gnome-screensaver's image path? The preferences dialog is missing a lot of stuff.

rpm -q foo
package foo is not installed
right click on destop
change image background and cd to directory that holds image files

steevithak; have you looked through gconf-editor?

i think i've found the issue

as far as I can tell, it is hard-coded

steevithak; if that's the case, use symlinks
opsec; ^_^ enlighten me

libquicktime supplied by livna is different in 2 ways from libquicktime provided by freshrpms

No, I was looking at the alleged screensaver preferences dialog. I'll try gconf.

freshrpms is news and the rpm also includes a bin dir that is not present in the livna version

I managed to get all the good screensaver hacks from xscreensaver installed and working under gnome screensaver

*newer

but there's no way to configure them because gnome-screensaver doesn't have any configuration options.

steevithak, iirc, check ~/.xscreensaver

livna == 0.9 freshrpms == 1.0

opsec; what does this mean for building the rpm?
(it's impossible?)

i highly dount it's impossible .. but i have no time to work on this right now
*doubt

i have gstreamer plugins good bad and ugly yet still totem will not play dvds

this is where i'd start though .. since the rpmbuild error alludes to this

opsec; think it would be worth trying the source from the developer's site and creating a specfile…… :o

zcat, thanks! Editing the path .xscreensaver did it.

do you put post-its directly on your brain?

the bacteria would kill me for sure

steevithak, 'cept for the stutter on imageload, the glslideshow is one of my favs

^Cowboy^ http://www.fedorasolved.org/Members/crash/totem-xine-movie-player-supporting-video-audio-non-free/

do you have rss-glx-gnome-screensaver installed?

yes i do

streeter, rss-glx-*

opsec; i'll have to try that sometime soon. i've never made a .spec before.

http://fedoraproject.org/wiki/Docs/Drafts/BuildingPackagesGuide

thanks ^_^

there is a tool for creating a spec template
be back .. conference call

do i need to remove rythmbox as well?
yum remove rythmbox?

it says how to do it if you don't want to

just the dependency to rythmbox was removed
sorry
my bad

step 3

rythmbox was removed

that's awesome. the dev's cinelerra traball errors because of a 1st-line syntax error.

could i not just completely remove totem and totem-xine and make xine my default playerin system preferences hardware removeable drives and media
?

um… i don't see why not.

so instead of totem %d it would be xine %d right?

mhmmm

or do I use %m

I redid the partition and formatted that usb drive, still doesn't automount..
really don't care, just found that kinda weird

kc8hfi; uname -r

2.6.22.1-41.fc7

kc8hfi; and rpm -q autofs

its just this one thumb drive, all the rest is good

oh, sorry
it was a recent bug

hey guys, would i be able to use fedora repos for centos?

kc8hfi; my 2GB memorex traveldrive just died on me.. i think anyway
kc8hfi; lmfao. i said that and it started working. welcome to my life
for the last like 4-5 days my flash drive hasn't worked in any PC i put it in… weird

yeah, this one is a 128 meg crucial drive…

ah, i didn't know crucial made flash drives

128 mb flash drive ? time to upgrade
you can get one 10 times that size for a buck

oh really? heh

xine engine error there is no plugin available to handle /dev/scd0 Usually this means that the file format was not recognized
i get the above error when I load a dvd

who gives out 1GB drives for $1?

check your local fry's circular for instance

we don't have fry's here…

how unfortunate =(

eh…
http://shop3.outpost.com/search?cat=-46840&pType=pDisplay

whats the best of getting access to my music at home when Im at work, or at a freinds house etc… some kind of interactive streaming ?

$20 != $1

buy it on sale, silly

i bought this one on sale, $20 instead of $80
that was when 2GB was the largest out

i've seen those seagate round drives, 8 gig for about 60 bucks..

ixion_uk, i know a perfect thing to do that … wait a sec while i think of the name…

couldnt find demux for /dev/scd0

ixion_uk; whaddup fatty (just kidding! don't shoot!)

oh…it's ampache

lol
she still hasn't spoken to me since

it's kinda tricky to set up but if/when you do it will do exactly what you want

women!

amen
get it… not-men
anyway…

lol

the cause of and solution to life's problems

thanks maelstrom, ill check it out

ixion_uk; i've used it. EXTREMELY nice
just a couple days ago as a matter of fact

when you play back.. can you play back playlists?

anyone know how to get vmware 1.0.3 server running on 2.6.22 (after upgrading to the new kernel i was no longer able to compile the vmware kernel module on 1.0.2 and the upgrade to 1.0.3 did not fix it, even with the any-any 9 patch)

Comments

Im trying to burn a DVD in Fedora 7 in k3b but each time I try growisofs dies on an error saying that the disc

do waht dude?

you know what you did

people have told me to rm -r / and they didnt get kicked

at least it wasn't something as bad as this
http://thechristeldahlskjaerthreat.blogspot.com/

Too bad for you.

if i caught them they will be

roflmao
whatever you say
if i could get my palm to work I could make a note not to type rm -r / when southern_gentlemen is in channel
its a palm z22
it wont hotsync with moonshine
using jpilot

so try another client

Hello I'm trying to burn a DVD in Fedora 7 in k3b, but each time I try growisofs dies on an error saying that the disc is the wrong format…even though my drive can obviously burn dvd-r's :/ Is there any way I could fix that?

i did i treid gpilot

Dwayne give me a time someone told you that
and day

i think I might need to reverse the polarity on /dev/ttyUSB1

i'm almost tempted to get my PDA working in F7

/dev/ttyUSB1

well that didn't do a gosh darn thing

prower, try nodma=ide on your kernel line in grub

oh man this Palm Z22 is a fatherless child
its making me crazy

Southern_Gentlem, so i have ftdi_sio.c and ftdi_sio.h now, both for the kernel module ftdi_sio.ko

Hmm, I'll give that a try, thanks…will that disable dma completely though? :/

how do i recompile it using latest kernel headers i have installed?

bye everybody!
have a goodnight! It's 2am here in Tunisia

hello Tunisia

hey!

eat well Tunisia

Anyone know what to change in the udev settings to make /dev/sdg* appear with permission 666?

/dev/ttyUSB1

alright

I dont know if tunisia has any 24 hr food joints

they got lots a cows
but most of em dont eat cows
lol
the donner party ate one another and they wont eat a cow
lol
gotta love america
if we get hungry we'll just eat one another

There are several guides on how to rebuild a single module on the Internet.

ivazquez, ah.. hi

Hey.

ivazquez, thanks for your help.. think i have to do again with my sound card

i think if I had my palm z22 working i could go on to other things and I wouldnt be here being annoying and contemptuous

and you think annoying and contemptuous will get you help?

Is there any way that I could disable dma for one specific device on boot, rather than all of them?

prower, nope

maybe then I could go to #windows and be annoying and contemptuous

anyone here know about selinux?

#ubuntu

nmatrix9, i know a little
nmatrix9, #selinux would know more

ah
ok thanks

nmatrix9, f7?

nmatrix9, cool

yeah my palm z22 would probably work in ubuntu

nmatrix9, there's also supposed to be a #fedora-selinux

then please go test it

it definitly works in windows

Dwayne, you arent going to get anyone's positive attention that way

everyone /ignore Dwayne

i dont want ubuntu nor windows

there is a program in linux that docks your palm with fedora

I love moonshine

Dwayne your not drinking enough

It's odd, I haven't had a problem with the drive under any other distro…and I can't really turn off dma on this machine, it'll slow everything down too much :/ Hmm

lol thats ok Southern_Gentlem Im drinkin enough for both of us

i like moonshine (f7) too

i am not drunk

prower, try it and see

Southern_Gentlem, I have followed the instructions on the page you gave me, but it is still the same.

and i dont want positive attention I want my palm z22 to work

Infernalord, reboot into runlevel 3

the 1280 doesn't appear on my "screen resolution" menu

system-config-display –reconfig
select the fglrx adaptor and your monitor and go back and select the resolution

:-('''''''
Palm z22 for sale very cheap

thanks Southern_Gentlem I was about to ask how to do that.
Ok I will try now.

palm z22 for sale very cheap 1-780-833-4523 ask for Dwayne

^Cowboy^, yer starting to git on my nerves kid… try googling palm Z22 in fedora

i am no kid

^Cowboy^: you act like one

i am 9 know

that means use your web browser to use the google search engine for the info you seek

you think I havent tried googling
ive googled and yahooed and altavistaed
the thing is for sale dude
oh wait gotaa call know

dwayne .. calm down

hello opsec

Southern_Gentlem, how do i go into runlevel 3?

hi opsec

read

I am reading

ooooooh this is gonna hurt…..

^Cowboy^, you are about to get a time out

hello frozty_sa ^Cowboy^ (dwayne)

they where gonna give me 20 bucks for my palm z22
20 bucks come one it worth at least 100

oh? any interesting new ones?

http://www.linux.com/articles/51114

feels like someone has had a flame thrower on my chest for about 3 hours

palm z22 for sale very host your website with us - cheap prices 1-780-833-4523 $100 ask for Dwayne

see that ^Cowboy^ ?

^Cowboy^, enough

i'm getting a very large mayan piece worked on

see what fnewton?

^Cowboy^: do you really want to spoil your reputation here?

no

people are becoming impatient with you .. get a clue

the link i provided… scroll up a few linews
http://www.linux.com/articles/51114
that one

i was at that site already fnewton its a good site if your pda is already functioning its not a site to help you get it functioning

^Cowboy^, well hang tight a bit and dont get cranky

to late
too late

if people are trying to help you .. let them

i am

otherwise they won't want to next time..

just saying i'm already cranky
a little

^Cowboy^: http://lists.linuxcoding.com/rhl/2007q3/msg01334.html have you read this post?

well hloy cannibal shite thats exactly what I need gnubie

^Cowboy^: hope it works 4 u

opsec; i'm sorry for busting your chops when i first joined #Fedora

?

ah i said some not-nice stuff
to you

???

no no… a few months ago

i don't know ..

when i first _started coming to_ #Fedora
anyway… moving on

well .. if you did, it doesn't matter

i thought some pretty bad stuff about southern_gentlemen
a few minutes ago

hmp

i'm thinking bad things about Adriana Lima right now errrrr

but i'm ok know
but opsec he's cool

Southern_Gentlem is cool too .. he's trying to help you

he booted me

you deserved it.

he doubles as an opper

^Cowboy^: with good reason at the time

take responsibility for your actions and move on

deserve?

anyone here on the desktop team?

maybe

there are people here who regulate things and make sure that things do not recurse into chaos. the rules have to apply to all

pembo13_com, if they were do you think they would respond in open channel

you can't just disrespect and ignore people who are contributers here and expect hugs and candy

southern_gent I apologize for offending you

Southern_Gentlem, i would assume so.. ie. i don't see why not

usually developers do not respond here.. or announce themselves as such

i see

it just invites unwanted pm's and a million fanboys

makes sense… although unfortunate

i am a developer

i think the last thing Fedora/RedHat would want is to hold a conference about "the direction of…"

i am right now developing a………….
hunger

that could be a very negative thing, and possibly piss off a lot developers of OSS projects if negative things are said
pembo13; you probably won't find many distro devs on IRC. individual projects you will tho… pidgin, ntfs, etc

downhillgames, they do there called fudcons

do more people use gentoo than fedora ?

Southern_Gentlem; are they on IRC, though? :o

proable next one is in boston in feb-march

maelstrom, yes

Southern_Gentlem, something is wrong, I chose my monitor and the 1280 and now it only lets me choose up to 800×600 o_O

Southern_Gentlem; point was _more_ so that text often gets taken stronger than it should…

wrong driver selected

Infernalord, you exact monitor or are you selecting the generic

Infernalord, are you the one with the ATI card?

I selected generic CRT, because my monitor model is not shown on the Samtron section.

saw a guy wearing a fedora the other day he pointed me to goorin.com

pembo13, yes i am.

Infernalord, i've had this happen when using system-config-display
Infernalord, did you install the vendor drivers?

Actually, you can find a Fedora developers in #fedora-devel and other specific channels (which are likely mentioned on the wiki).
Not sure about desktop team people, specifically.

pembo13_com, no I haven't.

ricky, i'm on the list.. if i have a serious question i'll post there

gentoo is probably the only major linux hosting distro i have never used. i heard it takes several days to install things

(I think, can't remember actually)

Infernalord, well, to get higher than what you had, you will likely have to do so

that depends on your box and your skill

Infernalord, instructions are at fedoarsolved.org

Ah, I was just about to mention that

is gentoo really relevant here though?

Ok I will search, thanks…

nope. sorry opsec
#gentoo if you wanna try it

chill out, geez, i only asked if more people used it than fedora

I know. didn't mean it offensively, sorry

there is no real accurate method to determine that .. not that i know of

maelstrom, distrowatch.org will claim to know
maelstrom, not sure if there is any better metric

probably not. sorry didn't mean to make a big deal of it, was just surprised that its channel is 2nd most populated in freenode

a quick gentoo install from the livecd doesnt take any longer then installing fedora

if i wanted to use an operating system just because "more people use it" .. i guess i'd use windows
as long as we're talking sheep

maelstrom, did you read the topic? abotu poll and be banned… ?

haha

maelstrom, just saying…

yeah good thing i didn't take a poll

any generic, non specific question not directed at anyone in particular

… that's what poll means in here ?

which also has no real definitive answer

maelstrom, yes, i think so

yes, that's what it means

i thought polling was, 'type 0 if you use gnome, 1 if you use kde'

maelstrom, no

gosh i probably should have been banned dozens of times by now then

hi

polling questions only serve to frustrate and junk up the channel

as this one has

nop gnubie that didn't work

maelstrom, that rule isn't strictly enforced
dan__t, hi

dan__t, hello

How goes it

great dan__t

Excellent.
I'm pissed.

oh thats why I gotta set permissions for ttyUSB2 i set them on ttyUSB1 but not 2

dramadramanodramamama

haha

hmmm how do I set permissions for ttyUSB2

^Cowboy^, why would you like to do that ?

Ah well, time fora smoke. Later.

Erm, what's 'hidd' and should I be worried that it failed to start?

dan__t, what's up?

chmod a+rw /dev/ttyUSB1

StANTo, yeah it's bluetooth related stuffs

it woud be the same for ttyUSB2

ah, well I don't use bluetooth. Where can I turn it off?

Bad things happened at work today, I think all our equipment is going to go byebye.

^Cowboy^, are you insane ?

but i'll bbl

no why

StANTo, chkconfig hidd off

dan__t, sucks

thanks
chkconfig not found o.0 oops?

you have to set rear write permission on ttyUSB# for palm to sync

StANTo, su - and then do that

su –login

I did

StANTo, whoami

obviously not
command not found

"command not found?" A: Run the command AS ROOT after switching users with "su –login" or "su -" in order to get root's command PATH so the command WILL be found; don't run "su" by itself. If it's still not found, then either it's not installed in a standard path location (echo $PATH), is
not executable (chmod a+x), is in your current dir (./runme), or you've spelled it incorrectly.

^^

StANTo, don't forget su "-"

southern_gent I have the book hard copy

StANTo, uname -r

^Cowboy^, read it then

what is wrong with setting read write permission on the ttyUSB# ???????????

missed the '-'. I thought you were using it as a separator to the rest of what you were saying.

StANTo, :-)

Why's the '-' necessary?

look at zcats post above

to set the environment for root up

StANTo, man su

do you really want me to read an entire book for the answer to one little question when you know the answer

^Cowboy^, i still ask you why you want to do that insane stuff

all I wanna do is get my pda to hot sync

cause you have annoyed us and we can

Thanks for your help.

roflmao

^Cowboy^, aah. and that a+rw will do that ?

yes it will dude

#fedora-last-resort

man chmod

its a permissions thing

leave him. let him do what he wants to

i am

thatsd why it wont hotsync
actually its a bug in fedora

I've made it work!

been there since FC4

thanks Southern_Gentlem and pembo13_com !

Infernalord, we knew you could

Infernalord, what did you do?

yeah let me do what I want

I went into runlevel 3 by using ctrl+alt+1 then logged in as root, and wrote "system-config-display". afterwards, I managed to find the correct monitor model, and chose the 1280×1024 resolution, pressed "OK" and it exited into the console command line environment.

one question why si setting read write permissions on ttyUSB# so bad?

then i just wrote "reboot" and afterwards, i went to choose the resolution, and there it was :p

Infernalord, sweet

I'm a bit of a newbie so I'm happy for actually making it right lol
*newbie to linux.

Infernalord, cool

we currently manage by udev, right?

frozty_sa, righy

Ok, so I won't bother you guys longer, thanks for all your help, you rule

hmmmm

^Cowboy^: go read the above books and also read up on udev

Infernalord, you didn't bother anyone

that's ^Cowboy^'s job apparently

know you want me to read books and several man pages to answer one little question

^Cowboy^: as well as hal. then you might gain understanding as to why it doesn't work
it is not one little question but knowledge which you will forever treasure

hal.icd is the hole issue thats where the bug is

?

^Cowboy^, you check BZ

nope…he can't access /dev/ttyUSB1 as a normal user….

man I luv you guys
your great
youv'e been alot of fun

^Cowboy^, don't be stupid. add the normal user to the group the device groups belong too

that'd be root (and a Bad Thing (tm))

yeah I know that dude I was just trying to get u guys going
roflmao

frozty_sa, i don't think so

ls -l /dev/

?

hi there…i just installed fedora…is that a Control Panel where i can check the Firewall? I just cant find the Firewall

open a terminal, system-config-securitylevel-tui

thanksss

tui?

Firewall

Or vim /etc/sysconfig/iptables

if he's just installed that might still be the buggy one

Aw poo; I can't upgrade my fedora core 5 install to FC6 because I don't have enough hdd space bah.

umm..i downloaded fedora as VM … cant find Admin .. Firewall

buggy?

Sambiase, you may have to install it
Sambiase, yum install system-config-securitylevel

thanksss again

in f7 (32bit) the initial release of that tool didn't save the config. had to update

does anyone use Pidgin on fedora with Gnome ? i have a problem with my contact list

what's the problem?

2.6.22.1-41.fc7

i run Suse…Suse has YAST as Control Panel … what about Fedora.. is there anything like Yast for Fedora?

when i open it, and it logs in, i get about 14 windows saying theres some problem with "contactx@blabla,com" and asks me if i want to add to my list.

well did you know that person?

several system-config-* tools, we just mentioned securitylevel

for all your contacts or just one?

right…

yes yes i know the person, its my friend's contacts.

thanks once again…

not for all, for about 14 or 15.

on which IM network?

MSN

u know what
i luv u guys

:o

i need another drink
hey can I be an op?

Nice try xD

maybe in 3 years

i would really like to be an op
3 years

you probably need to stop saying "u" first

We all have dreams of what we want to be when we grow up, yours is an op on an IRC channel?

in 3 years i could be dead you doont want that on your conscience

Hello. I'm kind of confused as to why F7 keeps loading my Atheros drivers, even after I ifconfig ath0 down the interface, and remove all of the modules. Can someone shed some light on what process is doing this?

is the card internal?

Yes, mini-PCI

then that is why it loads the drivers

my lifes ambiton before i die is to be an op in #fedora

or do you mean when you take out the modules it directly reloads them?

can someone put in a good word for me

I've never had any other driver just reload itself.
Yeah, if I rmmod ath_pci, ath_rate_sample and ath_hal, within a minute, they're back.

hmmm…I'm not extremely familiar with what handles device plugins but I'm guessing it's udev or hal. I will be more comfortable if someone else can help you as I'm not sure

Hi guys

what are you trying to accomplish? completely remove madwifi/atheros support?

does anyone know how I can edit the connection limit (max. sockets) which I think is 1024 by default? Thanks.

not sure i understand your objective

connection limit on?

on the box
Im trying to setup an ircd
I set the limit to 12345
but it says limit is 1024, and needs to be fixed

how can I detect which version of xen Im using

Can you help me out with some basic wifi stuff in the meantime? I'm trying to setup a notebook for a non-root user. I use WPA-PSK w/ AES at home, which requires wpa_supplicant. Hotspots typically are open APs, so using wlassistant doesn't work when wpa_supplicant is started. How can I make
life easy for this non-root user so they don't need to be starting and stopping the wpa_supplicant service to be able to connect to di

fferent APs?

rpm -qa | grep -i xen

what ircd?
wb downhillgames

uh its a custom one

toys working?

..based on unrealircd3.2 (I think..)

Loading the module enables the radio, and thus, drains more power. No need to have it loaded and listening when its not in use. Besides, it bothers me that it wants to load modules at its own whim. If one of servers did that, I'd call that a bug.

sorry, I can't help you. I've never needed to do any type of manual config on my laptop as I am fortunate enough that most of my stuff works out of the box (the one advantage of having an older laptop)

is there an easy way to increase the max socket limit on Fedora?

simply remove the madwifi packages … no more modules.

Thats not going to work when I want to use the wireless card.

or edit system-config-network and disable the card on boot

you should have a toggle switch on your laptop that will physically disable the radio as well

Actually, it is diabled in /etc/sysconfig/network-scripts/ifcfg-ath0

opsec doesnt always work
mine is set to off right now
and it still works

that is a bug with atheros chipsets if i recall correctly

www.webbalert.com –awesome

when i set ipw3945 to off on the laptop .. it immediately disconnects

well, can anyone answer my question about wifi roaming that I posed to frozty_sa?

Sephen, network manager

NetworkManager

networkmanager

Sephen, i answered it already if the service ain't running then run it dude

system-config-servers .. top 2
system-config-services .. top 2

hmmm….surprised to still be among you.
thank you.
hmmm- they are talking about virtualization - very cool - citrix buys xen?

thanks. I've been doing linux at the console for years. The desktop stuff I'm really new too… I'm used to running iwconfig manually, but that won't work for the wife
I heard about that. I'm root
I'm root'n for KVM now.

good evening folks, how do I turn off yum-updatesd?

Sephen - KVM?
link

defaultro, why do you want to, if I may ask?

Its another VM system that is already in the kernel. Xen is slated for inclusion in the mainline kernel in 2.6.23

Can anyone please tell me if there is an easy way to increase the max socket limit on Fedora? Thanks

defaultro, chkconfig yum-updatesd off

defaultro, service yum-updatesd stop &&chkconfig yum-updatesd off

lmfaolol, i have no idea

citrix is a group I was pretty certain was in bed with MSFT.

uh how can you have more then the max # of sockets?

thanks

it is in a file somewhere
dont remember where

is your computer some how bigger then a 65355 word?\

thanks for the release notes Southern_Gentlem

g'night people

TrustFund, yep we used to use citrix so our macs could log in to the accounting servers

I may have transposed a number but if I remember correctly an x86 computer has 65355 sockets
uI may have transposed a number but if I remember correctly an x86 computer has 65355 sockets/u

65535

Southern_Gentlem - so its some sort of universal appliance - cross platform?

citrix is THE platform crosser
its very professional stuff
not just cuz one of my good friends is a citrix rep

How do you reprogram some of the special keys on laptops? Like the "launch IE" button? dmesg shows it as an unknown keycode, but other than setting it with 'setkeycodes', how do you make it do something useful?

Sephen, in KDE you can use the control center

I'm wondering if there's a way to directly access CPANEL type server hosting using something like citrix

there is a program in windows that tells you what all your keystrokes represent. You could print that out and work from there

Keyboard shortcuts? I take it I have to use setkeycodes first so its a recognized key?
uKeyboard shortcuts? I take it I have to use setkeycodes first so its a recognized key?/u

Sephen, if /var/log/messages says so.. yes

i'm gonna be subscribed to webbalert until it's death lol

Sephen, i haven't gotten that far yet myself

you are trying to reprogram your keyboard Sephen which is possible but I would think very time consuming

f_newton, not if the kernel recognizes the keys

you are running an asc11 keyboard and you want to modify it… you will need not only to modify it but to make your computer recognize the changes upon start up

f_newton, well lets juts say, as long as the kernel recognizes the keys, the rest is easy in KDE at least
f_newton, i do it every fedora install on my desktop.. but haven't done it yet, since there are 4 keys the kernel doesn't recognize, and want to get them to work this time around

the work is already done for him then… there must be a gnome equivilent I would assume, gnome being a superior (lol) desktop

f_newton, i think that's a fair assumtion
f_newton, i just wouldn' tknow
Sephen, you have to change the keyboard layout first

Input Actions

sorry about that sehh_
uh sorry sehh_ I mean Sephen

Probably not worth it to me. I was just looking if there was an easy way. I was doing all of the iwconfig stuff manually until 3 people here told me to use the networkmanager service.

well duh
why rebuild the light bulb when you can get a pack of 4 for a dollar?

You want questions answered on high performance db servers, I can help you. I'm new the desktop world of linux.

f_newton, i find the 4pk for $1 only last a week

Sephen, well it's literally a few clicks

well I use the ge natural light ones Southern_Gentlem and they are 4 for 2 bux

Sephen, welcome to the linux desktop

wasn't too bad to type either.

I like linux particularly fedora but these days all I use is this laptop

ge is good but stay away from the reveal bulbs

f_newton, and linux host on the laptop mostly sucks (for me) thus far

I use the reveal bulbs
pembo13, its great for me

never had good luck with those

I'm setting up the wife's laptop. I told her I can't let her run Windows if I really loved her. Unfortunately I only knew the manual ways to do this stuff, and that wasn't going to work for her.

what are the reveal bulbs about?

they're great Southern_Gentlem … natural light
they provide a more realistic light pembo13

walmart 1.88 specials

f_newton, "soft" light, right?

lol well they sell them all over and average around 2.00 a oack
no

f_newton, and everyone of them have weak bases

its a coating filter on the bulb that actually eliminates the harsh yellow light

"Natural" light… They're closer to natural light, but they're not true full spectrum bulbs. I use them, but true full spectrum bulbs have different materials used in the filament - Reveals are just coatings on the bulbs.

sounds to me that someone is using higher wattage in their sockets then supposed to

f_newton, nope

I like em I use em ive never had problems with them so there! v bppthh!
lol

is the history of the chat here available on a web page somewhere?

nope

oh gawd that would be one heckuva page

zcat; do you have your miro rpm handy?
zcat; the link to^, sorry… watching a video while typing hehehe

I asked this before but any answers have all scrolled off the buffer
Anyone know what to change in the udev settings to make /dev/sdg* appear with permission 666?

CaneToad, why would you want to do that?
CaneToad, isn't that a hard drive?

you want to give satan access?

CaneToad, btw, don't know how you'd do that with udev.. although i know it's possible

I want a user program to be able to access the cd burner

CaneToad, i think that's the norm

i use k3b

CaneToad, in FC6 and F7 at least
CaneToad, i don't do anything special to get K3B to work

They're all defaulting as 600
I need to access it via scsi generic (sg*)

CaneToad, hold.. let me check mine

you can modify your own udev rules .. but for that purpose you can use either gnomebaker, k3b or nautilus cd burder
*burner
any user should be able to burn a cd

I need to burn some 4Gb files
any of those programs support UDF or ISO9660 level 3 ?

you don't like to research do you?

I might be doing that now

morgan webb changes her hair like… every day

but she's hot.

yes
she is

too bad she has no brains to match.

CaneToad, the perms seem normal

but she's good at looking pretty and saying geeky things
that's plenty for me!

pembo13_com, what perms do you see as default?

CaneToad, 600
CaneToad, and works for me as a regular user, i use K3B

it must use a different interface to the cd?

CaneToad, i think the actual burning app is setuid

growisofs

CaneToad, K3B is just a GUI interface

Thanks for the help all. I'm outta here.

hmm ok, I'll do the setuid thing
thanks pembo13_com

CaneToad, i think it's already setuid, don't have to do it manually
then again i have never burnt via console

nn
downhillgames, what is that link again

www.webbalert.com for use with miro
Southern_Gentlem; ^
phone…

anyone get ati pci-e cards to work properly in fedora ?

Anyone care to field a flash question?

kilbey, what ?

try #flash

I did sudo rpm … it said preparing 100% then package flash-plugin-9.0.48.0-release is already installed
Try #a$$

kilbey, mind your language please

you fuckin' tell him
oops

centosian, you too

There's one in every channel….

sofa king true

So if it is already installed, why no flash in browsers?

completely wrong channel

kilbey, go to the macromedia flash site and install the repo offered there then yum install flash-player


I did
….

obviosly you didnt…

f_newton, gone now

yeah I know and I also scrolled up and saw his rude arrogant behavior. He should have been tossed out

Southern_Gentlem, still gone i think

Southern_Gentlem; was that the link you wanted?

yep

er was that for me? :o

i think so
downhillgames, plays fine without it

shhhhh

miro
the battleaxe says bedtime
nn

night Southern_Gentlem

that is sofa king wonderful. If they get that then they deserve the joke.

Southern_Gentlem, fight the machine

i'm going too

would someone shoot me in the head for buying an ati pci-e card please

centosian, implications can be just as damning

corkster, no

wont work

whats the prob? corkster no driver for it?

or shall i say im not smart enough to figure it out

I have no idea what you're talking about

yes you do and I'm sure you got the joke

ati .run file wont install properly

perhaps subconsciously

corkster, don't do that

what happened to gaim
after the last update it died

yeah right….

corkster, have you check fedorasolved.org
cruiseoveride, name changed

i get a dbus error now

cruiseoveride, what version of fedora are you using GAIM in?

fc7 and everything up to date

cruiseoveride, so you mean pidgin, right?

corkster, apparently you aren't smart enough…. just kidding, really. This issue can be very difficult
its now pidgin cruiseoveride

corkster, have you attempted the instructions at fedorasolved.org?

$ pidgin
dbus returned an error.
(org.freedesktop.DBus.Error.ServiceUnknown) The name org.freedesktop.NetworkManager was not provided by any .service files
wasnt there before the yum update

cruiseoveride, ah.. was just checking, since you said GAIM
cruiseoveride, otherwise i don't know.. don't use Pidgin in Fedora

What should i use?

for what cruiseoveride ?

cruiseoveride, well i can't tell you what you should use… i use KDE, so Kopete works better for me
cruiseoveride, maybe there was a prob in the package, and will be fixed soon
cruiseoveride, otherwise, you can check /var/log/yum.log, and attempt to under whatever it did

f_newton, instant messenger
pembo13, ill wait for the fix, looks like i'm not the only one, too lazy to play with rpms

cruiseoveride, think i've heard a similiar complaint for tonight

yeah I liked gaim never used pidgin dont even know if its installed

f_newton, pidgin is a big upgrade from GAIM, IMHO

not if it doesnt work pembo13

f_newton, tru… but when it does.. the GUI at least is much improved

pidgin is just a name used so that AOL doesnt sue them

fancy shsmansy stuck in the driveway dont get the kids to school

its the same as gaim

cruiseoveride, we know

'big upgrade'?
i think not

no pidgin

anyways, have any of you guys played F.E.A.R

I'll install it and check it out
not me

Installed windows just for it, going to try it out soon

cruiseoveride, there were many updates kept back until the name change

aol is desperate for cash so the anti suit efforts are well worth it

AOL is not desperate
hey looks like it started working again
im out to play F.E.A.R adios people

Let me be the nth to ask about "service ntpd restart" in Fedora 7 now yielding "FAILED". I've noted that there was an /etc/ntp.conf.rpmnew and renamed it to /etc/ntp.conf.
but the problem persists.

rich3krow, have you used system-config-date to attempt to set it up?

no, it had been working ever since fedora core 4 or 5 or so
but i'll use that command and see what happens. my favorite "rdate -s clock.psu.edu" works though.

rich3krow, ok

well pembo13 I cant get pidgin to work
so in my opinion its useless

f_newton, well there is a prob with the latest update it would seem

the window of system-config-date looks good: use ntp is checked, [012].fedora.pool.ntp.org are the servers

f_newton, not a good tiem to try it
rich3krow, not ntpd still fail?
rich3krow, does ntpd still fail?

well I dont give vendors too many chances to show their wares
if they release something that doesnt work… they lose my business

f_newton, well in all likelyhood, it's a packaging problem

works now. Time zone was New York, no doubt due to my renaming that conf file. Changed to Los Angeles, it seemed to work. Did "service ntpd restart" and got an OK where I'd got a FAILED before. Thanks a lot!

rich3krow, you're welcome

I like positive results pembo13 not meeting deadlines
if this was released without the proper testing that tells me they are sloppy
not a good recommendation, eh?

f_newton, i didn't recommend anything

no no dont misunderstand

f_newton, plus this package must have gotten through testing
f_newton, the build system probably made a mistake… then again.. .i don't really care

f_newton, i've used gaim/pidgin with AIM and jabber for years without a problem.

i use it on Windows.. had a lot of probs there till recently

Ive used aim for years zcat but after listening to the previous comments about pidgin I thought I would check it out and they're right… it simply doesnt work
bIve used aim for years zcat but after listening to the previous comments about pidgin I thought I would check it out and they're right… it simply doesnt work/b
uh gaim I meant to say

nirik, the first point release of pigin had quite a few bugs, at least in the windows version

I wouldnt know about the windows version.

the linux version seemed fine to me… even from 2.0.0…

lol

i've also used gaim/pidgin with: aim, icq, XMPP, jabber, msn, yahoo .. never a problem

nirik, cool.. that's good to know

) I freshly insalled Fedora 7 2) yum installed switchdesk-gui, and yum installed kmod-nvidia after kernel 2.6.22.1-41.fc was installed 3) Switched over from gnome to kde and did 4) apporx a 250 file yum update. Rebooted and got a Xserver error. .Xclients missing something line 8
Switched back to gnome and X started fine switched back to kde and X started fien so whast the deal?

cool - an awesome way to resize images: http://www.faculty.idc.ac.il/arik/IMRet-All.mov

Switching environments rewrites ~/.Xclients.

did a yum update change some Xclient script? Where would I find the error log

well… here I sit with egg on my face. I apologize it works now. I must have configured it wrong

E-mu: do you have the 'something' recorded?

-clear
-.-

how is everyone

Not that I am aware of
where would I find the error log for that event? xorg.0.log? I did not seem to find the error in there when I sift through it

I'm in the datacenter with my laptop. What else should I download.

maybe I shoudl cat and | grep error?

I've decided to give Oracle 11g a spin.

how to reconfigure Xserver?
or do anyone can give me a default xorg.conf

E-mu: might be in Xorg.0.log.old, but if you have restarted 2 times it will be gone.
system-config-display –reconfig

well when you install F7 it configures your adapter already I could send you mine but I don't think it iwll help you. Nvidia Quadro nv120
ok thanks

hi all, I'm trying to setup a mail client to run via x over ssh on my web server, to make it easier/faster to transfer mail from my old server to my new server hosting via imap
does anybody know of any good how-to's that will help me or maybe another way to achieve this?

formail

surface just for your info always make a copy of yoru xorg.conf right after a fresh install of WHatever Fedora version.

as at the moment i'm downloading to my local pc then uploading again.

cp xorg.conf xorg.conf.org Thats what I do

E-mu, i am new, trying the dualscreen, it mention it backup an instant for me, but the fact is not

hmm what vid card you using?

might look at offlineimap package. Not sure it will do what you want, but it might be worth looking at.

where's iptables at?

locate iptables

any idea why since i did a massive (570mb) update after a month internetless, konsole has no window decorations? everything else does and i've restarted multiple times…

lol thats a lot

evil_hitman, if you've got access to the server you can also just copy the mbox/maildirs

thanks will have a look. my ISP has upload speed restrictions so trying to get around them by going direct.

yeah i have to do that update also hehe

i kill xorg.conf and restart, it seems to work back normal
:d
i mean i rm xorg.conf

opsec, it found a lot - idk which one is right

surface what vid card you using??

what version? f7? devel?

/sbin/iptables

running postfix/dovecot with mysql based virt users. will this still work?

wonder what caused this … http://rafb.net/p/Cm6HIB87.html

tremb1, sounds like a beryl thing

Rossi, labtop, HP compaq nx5000

i'm running fc6, "konsole 1.6.6 (using kde 3.5.7-0.1.fc6 fedora)"

downhillgames, (miro from updates-testing is fine)

surface what video card do you have?

zcat; oh yeah? yay. how long until that gets put into Fedora, i wonder

surface what kind of vid card is in there nvidia or ati

E-mu intel one
used i810

don't rm xorg save it first
then start over

odd. You might check bugzilla.redhat.com for any reports of that… and/or file a new bug on it.

surface sorry i got no idea how to handle intel vid cards

what is the default X conf? ya i actually mv xorg.conf xorg.conf.bk

ok nirik, thanks

or "cp"

Rossi, i mean i remove xorg.conf, and restarts it works back to normal
it seems it doesn't need xorg.conf
wonder what config it uses

it autodetects by default.

I am not sure if you need the xorg.conf file whenyou reconfigure that part I am unsure of. Ask someone about that part

How do you burn a file 4gb onto disc? k3b refuses

anybody ever use fail2ban in here?

if you're using the intel driver you should be able to switch resolutions however you want using the xrandr tool (it supports the new xrandr stuff for managing multiple displays)

the video card you have in yur compaq laptop is a intel extreme graphics 2 with up to 64 MB shared system memory

depends on the disk… does it have that capacity?

every time you delete the xorg.conf it makes a new one when you restart

thats good to know

ISO9660 doesn't allow files larger than 4GB.

nirik, its not the disk silly

Rossi, the fact is it doesn't thats why i am curious about that.

umm

ISO9660 does, but in later levels

i have set it to use UDF but it still refuses

ISO9660 level three does allow files 4Gb

MTecknology, sure. denyhosts, fail2ban, and pam_abl. mostly the former though.

overburn? Maybe the disk tto

zcat, care to help me set up denyhosts?

what is the exact error it gives you?

look in your xorg.conf where it says adapter and change the intel driver to vesa save and restart xorg

MTecknology, the default config should be fine.

can't find any xFree86 or something

zcat, does it automatically start too?

what are you trying to do? what is your goal?

nvm it solved for now.

MTecknology, no. chkconfig it

nirik, dual screen

MTecknology, rather, it's not automatically set to start when you yum install (like some apps are); you have to do it

off the same vid card? laptop?

nirik, im using the console to burn it now, i cant remember the error, but it said i cannot burn a file larger than '4.0gb'

zcat, chkconfig denyhosts.py ?

if you're using the intel driver you should be able to switch resolutions however you want using the xrandr tool (it supports the new xrandr stuff for managing multiple displays)

is E-mu a bot?

:P

no why

MTecknology, http://fedorasolved.org/post-install-solutions/securing-ssh

just thought he was a bot

ok, no idea then if I cant see the error… at least you have it running command line.

surface look in your logfiles for xorg and see where it hangs or gives you an error

nirik, i think it may be a bug in k3b, because udf file systems support 4gb files, the gui just doesnt want to accept the file

if the other screen is also on your intel card, try plugging it in and doing 'xrandr –auto' (as wolsni mentioned)

error box shows up when you add the file, not when you try and burn the disk

nirik, thx
thx guys

nirik that will result in a black screen i guess thats what happens if i use the autoconfig with my nvidia cards but i can t be wrong
i mean i can be wrong

works great with my intel in my laptop.

hey so how many of you guys with nvidia card (and nvidia drivers) can switch to tty1 and back more than once?

i ll play with it some other times, now need to get back to work.
chat with u guys some other times

cruiseoveride, yes - as long as beryl isn't being used

hmm i can switch as much as i want why?

I can only do it once, every attempt after that, gives me a black screen with the mouse in the center

the intel is the first driver they added xranr 1.2 support to… might not be available for nv yet… and if you are using nvidia all bets are off.

nirik i really don t know i was just assuming it

so i got to ssh in, and kill X
soooooooooo annoying

could i dd some data from a loopback file starting from a certain block? like if i have a 4gb loopback file, and i want add those 4gb to another loopback file but startding from a certain block, let's say after block 512

well i never encountered any problems with my nvidia cards (knock on wood)
bwell i never encountered any problems with my nvidia cards (knock on wood)/b

see 'man dd' ? might look at the skip= parameter?

i can even play eve-online without any crashes adn i get a decent 120-130 fps in 1440×900

zcat, how long should /etc/init.d/denyhosts start take?
it's been about 2 min now

was just looking at it

nvm

anybody else playing eve-online here????
good game too

I installed windows just for it
so it better be

umm

spent like an hour with gparted moving things around to get a dual boot

try enabling overburn

never had any real luck with dual boot systems hehe i usually ruin both partitions hehe

opsec, it was not a burning problem, its a problem with the gui not checking the filesystem type and not allowing the user to add the file to the project

ok, not sure then

zcat, time to test it out

time to install F.E.A.R

anyone have an idea why i can log into my router just fine but when i go to click on 'save changes' it goes to apply.cgi and drops the connection?

it reboots
?

nope
i can go right back into it

hmm what router

it's reloading the saved settings most likely

yep
sounds like a linksys though

its a wrt54gl
ive had no problems for a year

i knew it

i use the hyperwrt firmware

How is your router a Fedora problem?

in F7, what's the vnc viewer?

i just moved and am trying to set it back up

hmm did you try to reflash the firmware?

vnc

why you have to change anything anyways ??

i see vncconfig vncpasswd and vncserver. i tried yum install vncviewer but i get "nothing to do"

"nothing to do?" A: When yum reports "nothing to do" what it's really saying is that the "package may already be installed" (or it doesn't exist), so there's nothing for it to do. (ask directly: rpm -q package).

i have to change some wireless settings

interesting .. did you try yum install vnc ?

hmm save the config to your pc and reset the router

vnc.i386 4.1.2-16.fc7 fedora

maybe you found a glitch

hmm

opsec, i got a hit on a package.. installing now

hmm you welcome stealth o/

Talking about routers and relationship to f7, a lot of routers are broken in ways - for example, with f7 until I put "net.ipv4.tcp_window_scaling=0" in my /etc/sysctl.conf, my router gives me really poor network behaviour for fedora though my wife's windows XP works fine. This low-level
network stuff can be very confusing for users. Should the f7 install do some network probing to determine whether there are weird low-level network problems and repo

rt such?

zcat, one more question… how long is the users IP for using denyhosts?

14cm

i am using smootwall for routing exellent performance

opsec, ?

opsec, vnc worked. thanks

lots of features too from smoothwall
haven t restarted that thing in 2 years

where would i go first to investigate dbus-launcher/gstreamer related issues?

opsec, were you being serious when you said 14cm, if you were… how long is that?

HAHAHA
that was great

cat var/log/messages | grep -i dbus

opsec; my same issue, but no useful information given to resolve:
http://www.pulseaudio.org/ticket/29
i'll do so

i was being facetious ..
"how long is the users ip" makes no sense

hi friends

Yeah. The real answer is eleventy-seven.

MTecknology, the defaults are in the conf file. take a look.

ivazquez, how do i compile ftdi_sio.c and ftdi_sio.h as a module against a certain kernel's headers?

zcat, … I tested it from here and it worked…

i think he wants to know if he has to type lets say 192.168.1.2 or 192.168.001.002

i can't access them :P

http://www.google.com/?q=compile+linux+module

brb

Sorry…
http://www.google.com/search?q=compile+linux+module

opsec; http://rafb.net/p/VwiHR538.html not seeing anything useful there.

la -als /var/log | grep -i messages

ivazquez, yeah, that didn't help at all
and yes, i'm familiar with google
i'm asking about in relation to a fedora rpm system

opsec; la?

you probably have more than one messages log file .. messages.1 .. .2 .. .3 etc
typo
ls

and no make file, etc

ls

Are you sh*tting me? The FIRST F*CKING HIT tells you how.

opsec; i have 1 "messages" file showing

you mean the one that refers to a make file?
hmm, it wants you to create one

that would be /var/log/messages

i guess that's another way of doing it, but someone in here before had told me how to do it all in one command
with the module dir as the parameters

You need at LEAST one line in the Makefile for it to work.

i have several on this system ..

opsec; :o well i have 1
any other places to check?
(fresh install few days ago btw…. i wanted to get back into gaming, blah blah, it didn't happen, here i am…)

i don't play games on my computers .. i'd have no idea

well that's unrelated to this… i reinstalled Windows XP to play some old faves that aren't supported in/for Linux

anyone using bluetooth to transfer files between a pda and linux machine?

back to gstreamer/dbus… the ticket says it's an improper use of dbus-launch…

I used bluetooth with my nokia mobile to transfer files
s/used/use/
what's up Arfdee?

well, i've done it for months with my moto Q
but now for some reason all the files i transfer to the device seem to be corrupted
perhaps some recent update in linux, i dunno

I've been waiting for a full backup before installing the most recent updates… haven't see that yet

wow this was easy
thanks ivazquez

hey all.
I have a small issue with the trashbin permissions would someone be able to assist me with it ?

may I post a general interest link not related to freenode?

so uh
opsec; i don't want to whine, but i'm getting thin on ideas

not quite sure why its started doing what it is . . . but i cant empty the trash bin. it comes up wth "error while deleting" you do not have permission to fdelete its parent folder

Vo0do0, what are the perms on your trashbin?

where do i find that out ?

Vo0do0, possibly ~/.local/share/Trash

what about just ~/.Trash ?

downhillgames, also possible

oh
Vo0do0; just open a terminal as root, cd into /home/username/.Trash then rm -rf ./*
note the . before the / in rm -rf ./*
do NOT leave that dot out

downhillgames, he should check the perms first

it's prolly because of files inside them
when i build crap it always leaves root files in there

just chown user.user .Trash

there is no /home/username/.Trash

uh
sub your name in for username

Vo0do0, did you check the dir i told you?

yer theres no trash folder that i can see .

oh, crazy

rm -rf has burned me a few times

ls ~/.Trash

Vo0do0, updatedb | locate Trash | less

founbd it .

Vo0do0, where was it?

where it was suggested to be, just hidden
ok one more question

shoot

Vo0do0, ~/.Trash?

yep

Vo0do0, cool

been playing around with cedega trying to install a few supported games

which you pay support for

Vo0do0, did you find the problem with Trash?

check their website for help

yes io did thanks pembo13

Hi…I'm new to both IRC and Linux…I was wondering if I could ask a couple questions?

Vo0do0, cool

its not a cedega issue so much more of a permissions thing again i think

Bakasama32; if they are Fedora-related, fire away

nothing will install under a user.

if they are IRC-related then see #freenode

but everything will install as root

Vo0do0; www.transgaming.org

weird that your permissions changed

all these permissions have happened since i did some package updates this morning .

see the shiney button called "Support"?
click it

Hello Everybody

hi Digital2501

It's Fedora related. I've been trying to install Fedora, and a couple other distro's on my laptop, and I can't get the GUI to work. The X-window system says something like "Display cannot be found."
What am I doing wrong?

Bakasama32; perhaps your video card isn't supported… rare but can happen. what type of video card or adapter do you use?

well hello there downhillgames sounds alot like xbox game *phun intended*

pun* hhe

Vo0do0, i'm here

I'm using an ATI Mobility Radeon X700
The install probe see's it just fine.

oooh wierd

would any of you fellows happen to know how to mirror a site using curL!?

How do you check to see what hardware is installed?

is that a mobo video card?

Bakasama32; are you using the distro now?

Yes, Brwskitime

Bakasama32; i mean is it installed and/or booted?

No, I put my Win XP drive back into my computer.

And anyone know how to install bug buddy? I've downloaded it, extracted it, but I haven't the faintest clue as how to install anything /w Fedora.

well it's mighty hard to get help if you don't have the OS installed

I can install, but only in text mode.

http://docs.fedoraproject.org/

Bakasama32; what northbridge does your laptop have?

And also, this laptop is my only computer, so I can't ask questions AND look at install..

I'll try it again.

nforce? sis? via?

I think Nforce…let me check

Bakasama32; actually, you'd be suprised
Vo0do0; fancy that… #cedega on this network.
ask there mate

…how do i find out the northbridge?

commonly just called your "chipset"

Actually, how about i just tel you what system I'm using? Would that help?

i remember once i had to go the bios and turn off OS recognition so that linux could recognize hardware properly

Bakasama32; sure, why not?
thought i find this all rather pointless as you have XP installed hehe
s/thought/though/

lol thanks downhillgames

Okay, It's an AMD Turion64 MT-32, ATI Mob Rad X700 256MB, 2GB DDR memory…
It's a laptop.

Bakasama32; what motherboard…?

MSI
It's an MSI laptop.

what…. model?

L715

MSI L715 laptop ?

yep

http://www.notebookreview.com/default.asp?newsID=3198&review=MSI+L715
that one?

what color
j/k

haha
ATI RS 480M + ATI SB 450

How would you go about using cURL to mirror a site?

and a southbridge is there

yes, that one.

http://www.google.com/linux?hl=en&safe=off&q=ATI+RS+480M&btnG=Search
there are 4 hits on google lol
how new is this laptop?
a week? hehe

I think 2-3 years for the design
It was built 3 years ago, according to the SN

mysterious mobo
that's your nickname
haha

mine?

yeah i get all non-linux hits on google…
less those 4
no idea, man
http://www.michaellarabel.com/?k=blog&i=121
good article anyway

so what that artical says is…i'm screwed?

that article was off topic
sorta
it was more or less a suggestion to complain to MSI about it

Well, can't hurt to.

computers suck.

Wish I had another computer to have linux on though.

Xen

on a laptop? heh

Well, my last laptop ran Fedora vr 1 fine.

vr1?

And oww, my head hurts.

I used it a long time ago…
I was never good with it…but I sure did like that juggling screen saver guy.

haha
funny
opsec; FIXED!

Oh! I think I found a fix!

no wai

ATI has a driver out for my vid card for the x-window system on a 64-bit platform.

and not 32-bit? :o

they have that too

you can put them on a flash drive and load them in at install time

really?!?

yes

how?

there is an option like "dd" it means "driver disk" (not to be confused with the command 'dd' in linux)

Just use the vesa driver during install.

oohhh….okay…

when the CD boots up it'll say "press tab to edit the command line" or somethign like that…
ivazquez; how?

?

lol
i think we're both excited, Bakasama32

is that a command i need to know?

displaydriver= or something, ivazquez?

Checking…

lol, it's a person…oops.
…..there's a short in one of my USB jacks…

oh spiffy

I just plug my cooling pad in it. No loss of data that way.
okay, I've loaded the .run file on my memory stick…is it a problem if there is other stuff on it?

Okay, when at the menu for installing Fedora, add "vesa" to the command line (without the quotes).
Don't use the .run file.

okay
that's what I got from ATI, just FYI

Under *no* circumstances should anyone using ATI or nVidia video cards ever install the OEM drivers.

nods
wait…how do i add vesa to the command line?

There should be a key to press to go to the command line.

oh, so i just type…. vesa?

You add it to the end of the command line it gives you.

oh, okay.
That's it?

Should be.

wow…kinda thought it would be more complicated…

OpenAL would impliment which sound server most likely?
OSS, ALSA or ESD?

Well, I guess I'll put the other HDD in my comp and give it a try.

Neither OSS nor ALSA is a sound server.

Thanks guys, I'll log on tomarrow and let you know how it went.

ivazquez; i guess i don't understand how to phrase my question
"how does OpenAL community to your sound card?"
uh
community? lol

"What sound architecture would OpenAL use?"

downhillgames, most likely that's something that OpenAL decides it self

yes

downhillgames, i'm ghuessing AlSA.. for no particular reason

ivazquez; any idea?

Looks like it figures it out dynamically.
I see no deps on any sound system in the package.

well i got Miro + VLC + Rhyrhmbox running all at the same time… UT2004 uses OpenAL and can't use the sound card
Rhythmbox*
so i'm assuming it's trying OSS… i have OSS/alsa compat installed

Looks like it uses ALSA by default in the Fedora package.

whats the difference between fedora rawhide and fedora 7?

fedora-rawhide is the Fedora 8 testing packages

If you don't know what Rawhide is then you don't want it.

it just keeps going and going and going, never being a specific release

does fedora 7 have a live boot?

pretty much

hph, yes

rawhide will error so much you'll pull your hair out

thanks!
3

http://torrent.fedoraproject.org/
http://www.ataricommunity.com/forums/showthread.php?t=497119&highlight=openal

Hey
anyone here?

zak_, hello

pembo your using fedora right?

Zakkk, yes

im not like new to GNU and all but like how do i install the 100.14.11 nvidia drivers?
i can only seem to do the 9755 ones?

Zakkk, what are you using? i have the 100.14.11 myself

Fedora Core 8 Test 1.. and im updating the packages now
to the newest gnome beta 1.. that came out yesterday?
it was auto thingy in the package installer

Zakkk, well i'm not sure about F8 Test 1, i'm using F7, and i get my drivers from livna

i read that on some wiki
but when i put it in . it shows its trying to install the 9755 ones?
does it really matter?
like between 9755 and 100.14.11?

Zakkk, those seem like two diff version numbers
where are you getting 8755 from?

unless you are a developer or have an active bugzilla account you intend to use to report bugs .. you shouldn't be using it
use f7

most cards work well with both drivers

opsec, i dont like f7 lol. i like being on top
newest stuff, betas and all

Zakkk, what's your motivation for using F8 anyways?

server stuff
and i like fedora i dont know

typical stupid stuff

hey.
thats not true

Zakkk, no seriouslly.. why F8, not F7?

yes, in fact it is

because i like betas.
i just like having the newest of the new

there is no such thing as a fedora beta

Zakkk, ok… well i don't know how to help you

ok Test.
not beta

Zakkk, i just know i have the version you're asking for

the livna?

Zakkk, i got it from Livna, yes

it told me to change the repos. to devel enabled instead?
it said to go into the repo files. disable normal.. and enable devel

Zakkk, i don't know what it told you

and i did that

Zakkk, what is "it"
?

some guide for nvidia install

people who download the "latest" just to have it deserve whatever happens to them

Zakkk, well i don't know anything about.. i more or less follow fedorasolved.org, which is aimed only are release versions, not dev versions

fedorasolved.org. ill bookmark it :P
any other sites?

isn't it good that people are interested in what's coming in fedora?

only one i saw was fedoraforum.org or something?

Zakkk, they are in the topic of this cannel

only if they are going to file proper bugs .. and not come in here and bug us

ok sorry sheesh

if you're using it, you're expected to know how to solve trivial issues like this

im just askin a question
why it installs 9755 and not 100.14.11
thats all i asked.

im not like new to GNU and all but like how do i install the 100.14.11 nvidia drivers?

i can only seem to do the 9755 ones?

you don't need to paste to me ..
i've seen everything you've said

Zakkk, what are you expecting 9755 from?
Zakkk, that's two diff. version number schemes

livna?
i think
i did some yum install kmod-nvidia and something else
and it tried to install 9755
but i said no
cause i should be using 100.14.11 i believe?

And what nVidia card do you think you own that you're trying to install an old driver like that?

Nvidia Geforce 6200 256mb

Zakkk, well none of my nvidia packages ahve such a version scheme

yo u goto nvidia site.

kmod-nvidia-100.14.11-1.2.6.22.1_41.fc7.i686.rpm

yea
i need that

then go install f7

but it keeps giving me 9755

like i said

is there a way i can tell it just to install that?

Zakkk; what release are you using?

Fedora Core 8 Test 1
downloaded like 2 hrs ago?

you're on your own
end story

i tried fedora core 7?

the kmod is kernel specific ,.. and i'm not helping you

like month ago?
thats ok

based on what you've said so far you have no reason for running f8t1

ill just change the filename to my kernel? lol

Zakkk; stop. F8T1 isn't suppoorted. you're waisting your time and ours

You have no reason to be using F8.

ok sorry

Anvil; ping

well i have bad experiences with F7
ok

back to work for meh

go install f7 and we'll help you

indeed

"bad experiences with F7" tells us nothing

VT6421
PATA
ops
sorry
hello people

the last post on this forum for tech support w/ UT2004 was on 8-13-2006 lol
i think i'm screwed there
ponci; less enter key action, please.

i'm running 2.6.20-1.2944.fc6 #1 SMP and i have via vt6421 sata/pata pci controller
ui'm running 2.6.20-1.2944.fc6 #1 SMP and i have via vt6421 sata/pata pci controller/u
i've downloaded and installed modules from via site and i think modules are loaded now. my quiestion is where should i look for the harddisk

Inside the computer case?

ponci, the controller needed its own modules?

very funny, mwilson

sick - downloading kernel 2.6.23

yep, default sata drivers didnt support it
cat /proc/modules | grep via
sata_via 14533 0 - Live 0xe0aba000
libata 104661 2 sata_via,ata_piix, Live 0xe0901000

kernel-2.6.22.1-32.fc6.i686.rpm

yum update

ponci, i'm suprised to hear that… bad buy
ponci, check out dmesg

Whatever "default sata drivers" is even supposed to *mean*…

please "yum update" your system

ok will try that thank you

http://rafb.net/p/07fUwM17.html

opsec - the package updater
says im geting kernel 2.2.23

don't care
do whatever you want .. you're not helping yourself or the community

No, it does not.

Morning all
Is there any kickstart docs anywhere?

www.tldp.org www.google.com

/usr/share/doc/anaconda-11.2.0.66/kickstart-docs.txt

nothing better on a hot night like tonight than a cold glass of homebrewed ice tea.
unothing better on a hot night like tonight than a cold glass of homebrewed ice tea./u
Nova is a good show. Haven't seen it in a long time.

since they were there for it

._.

cheer up ^_^

let's do some OT :P

like?

OT belongs in #fedora-social .

maybe i should go to bed

I just spent a week in Chirripó http://en.wikipedia.org/wiki/Cerro_Chirrip%C3%B3
ah ivazquez moving to there so…

how can I capture lynx? with a pipe command?

hello… if I have a hardware raid, and then the raid controller fails, do you have to get another controller thats exactly the same make and model right?

Depends on the controller.

right ok

I've got rsync running from crontab and I'm not getting the expected results. In the source I can see folders/files that do not exist in the destination, yet the following command doesn't sync them. Why might this be? rsync -e ssh -avhz –exclude "DO_NOT_REMOVE_NtFrs_PreInstall_Directory"
–include "*.xls" –include "*.pdf" –include "*.txt" –exclude "*.*" –bwlimit=2000 /var/BACKUPSERVERS/ACCOUNTS user@xxx.xxx.xxx.xxx:~

Comments

I am trying to execute a script via a link doing this with php using _GET to get the parameter I need Anyway

:443

Comments

I am trying to get everything working in my newly compiled kernel just updated to 22-r2 and now when I try to

and load it with the autoload file?

CareBear\: ahh well good then I can delete em

emerge –oneshot –pretend =emerge: =there =are =no =ebuilds =to =satisfy ="=".
I liked the new revdep up until that point =P

Well you can control what gets plugged and not in conf.d/rc, I suggest you read through it and set it up the way you want it.

ok

I am now getting a blocking message stating that kdesktop-3.5.6-r1 is blocking kdebase-kioslaves-3.5.7-r1; but I have kdesktop 3.5.5-r1 installed. http://rafb.net/p/XxJaII23.html

Unmerge kdesktop, then, and retry

when using emerge, i got some warning about masked dependencies, how should i properly emerge so i get everything needed ?

It says kde-base/kdesktop-3.5.6-r1 (is blocking - means less than; so older versions than the one specified. 3.5.5-r1 3.5.6-r1

rej, thanks thatt fixed the problem

that should not happen in the first place

lol CareBear\ I have something like 7 k-sources to deinstall
guess I ll have 50 % more space on disk

That should get you a couple of gigs free space.

yeah its working fine

infact

why would I have both kde 3.4 and 3.5 packages installed..

do i need udev?
what does it actually do?

Yes.

I can think of how both could be installed. . .

it is recommended … manages /dev/

It is the foundation for the plugging events.

No idea why, though.

yeah

I don't even use kde tho O.o

MilesAsleep, i highly recommend not ditching it.. it makes most of the /dev you can do that by hand.. but good luck knowing all the kernel numbers

well, it does, and i need those packages for my wifi

I wonder if this has something to do with why revdep keeps wanting to rebuild kdelibs

Did you ever build a KDE package?

can someone tell me why doing "USE="nsplugin" emerge -pv blackdown-jre" still shows "[ebuild R ] dev-java/blackdown-jre-1.4.2.03-r14 USE="(-nsplugin)" 0 kB"

Probably. I'm going to fix that now though. =P

so rc_plug_services="!net.*"

so you unmasked some stuff and now it fails?
amd64?

mmhmm

() means the USE flag is not present in the version of the ebuild about to be installed, but it was set previously.

Because that USE flag is masked. Hence the brackets.

emerge iwlwifi iwl4965-ucode gives me one of the following masked packages is requeired blah blah

mmmh, sounds like fun …

Hm, didn't know use flags could be masked too. O.o

Oh _masked_ flags? Where can I learn more?

i didnt mask/unmask anything, as i got no idea what it is

ping

ok.. so i could unmask it but.. what's the correct way to get java to work in firefox now then?

CareBear\: portage(5)

() circumfix = forced, masked, or removed

hey jP

Sememmon, dev's mask flags that don't work on a platform. the PC varients see them less often than non-PC

hm as I recall there's a java web hosting plugin package thinger for firefox..

I'd guess because it doesn't work :-)
nspluginwrapper might be what you want

Interesting. How do you .. unmask masked flags?

in general you don't

Sememmon, you really shouldnt

Hm, ok. =]

what would cause a blinking black cursor in the upper left hand corner of X while using i810 video drivers?

Add '-FLAG' to /etc/portage/profile/use.mask

who still codes for only 32 bit systems, and where can I go and flog them?

cuz http://gentoo-wiki.com/HOWTO_Java_and_Firefox seems to be out of date

Usually this type of masking is architecture dependent and is done with good reasons.

most commercial stuff, including java

USE masks are usually there for a really good reason

Not here.

ty, good to know.

Sadly.

give them a decade to catch up

Just go and write the patches to support 64-bit and everyone will be happy.

Nothing that stops me from shooting myself in the foot is for good reason.

any gnome users here?

without source? you must be one evil programmer ;-)

CareBear\: So which bear are you? As I recall, there are many. =]

teach giinxed about ask

Just ask, don't ask to ask, don't ask who's familiar. Don't ask if anyone knows about it. Just ask the question, it's the easiest way to get people to answer

Sun Java is under the GPL, and there is at least *source* for Blackdown (although I can't remember if it's still under Sun's old restrictive terms).

If you have trouble with a closed source program you can always choose not to use it.

i have a weird situation here and would like some recommendations on how to connfigure this.

hey guys…almost finished with these broken packages…libexpat is finally fixed

hm that didn't affect it it still loaded ath_pci

afaik not all of java, and blackdown is ancient

Yeah. Share Bear or maybe Do-Your-Best Bear.

I chose to, but at the same time that locks out some things like java or flash

CareBear\: lol =] Sounds good.

Not a problem then.

sadly most universities now torture students with java

CareBear\: I thought maybe there was a Linux Bear that I missed somehow.

and I get to clean up the booboos they make

Actually I'm none of them. I have a laptop on my belly, none of the other guys do. :p

You have my pity.

lol =]

you're not too old to repent ;-)

i think i need to install a 32bit java runtime environment

Jeeze. *Everything* depends upon libexpat.

but thank god i used the debug flag for my apps, cause every time i try to play anything there's a crash, and from the backtraces i find there are multiple other libraries i have to rebuild them against

that sounds quite broken

what would cause a blinking black cursor in the upper left hand corner of X while using i810 video drivers?

and libqt-mt

i have a 6meg dsl line of my own. a friend who is moving in(and possibly moving out soon) is moving their cable service to my home. it is also 6meg service. how can i connnfigure my router(aka gentoo box) to provide service from either, as convenience dictates?

Eh, it pays the bills. =P

hey guys

The 810 does it.

ok then i just got the box up with X and gnome… and I couldn't find a working Terminal.. I am in as root… and oh nevermind… Ctl-Alt-F2

Well, you have to tell us more about the rules you want to apply.

rej, is it a bug?

that's the one i'm doing now…then i'll have to rebuild the 20 packages against libc, too, and i don't know how many other libraries

Can you define "as convenience dictates" better?

It's hardly a feature. i810 is evil.

why won't you use revdep-rebuild?

As for how to work around it or fix it, I have no idea.

and how did you break stuff that badly in the first place?

DrEeevil, i have, and i am

rej, I realize It's evil. But being a laptop I have no choice in what i use :P There any way to make it go away?

Google probably does, or forums.g.o.

rej, okee.. i'll give her a shot.

DrEeevil, it's the upgrades…lots of ppl are having these issues

I would try building git HEAD of the intel xorg driver.

not sure how people manage that

CareBear\, smile when you say that *confused*

for awhile there the gtk+ just would *not* rebuild with revdep-rebuild…finally found the solution in the forums…needs pango and something else b4 it will work

CareBear\: i want it make sure noone is crowded at any time. if one ISP is close to my bandwidth, i want to use the other as overflow. but i want my boxen(personal workstations to get priority allocation from the DSL.

CareBear\: http://rafb.net/p/YpolOS56.html — can you maybe answer that question ?

hm.. running equery to get a dependency list on some of these broken packages is taking _forever_

yay… java!

Well, it's not trivial, but it can be done.

updating emul-linux-x86-java did the trick

CareBear\, i don't have a clue what you're referring to when you say 'git HEAD' of the intel xorg driver

http://osdir.com/ml/linux.kernel.console/2005-01/msg00044.html

My kernel is 2508424 bytes wide. Is that small by any standards?

I'm not sure what you want is possible.

ohh rej maybe can you help me … since CareBear\ is pretty much very busy ?

Compressed?

no

Tiny.

error: no such option: -X"

I don't know how I did that o.O

One TCP connection can only use one outgoing ISP.

err … what are you doing? :-)

revdep-rebuild -Xp

it was the very first kernel I ever manually configured

So "overflow" isn't really possible..

is there an install script for ppc distributions or do I really need to go through all of this http://www.gentoo.org/doc/en/handbook/handbook-ppc.xml?full=1 in order to install gentoo on a ppc apple ibook 500mhz

kc8pxy, load balancing is hard to setup on your own… i don't know of many ways to easily do that

that's the gentoo way

how big is your kernel?

My vmlinuz (gzip compressed) images are usually around 1.8 megabytes.

ouch, thats pretty daunting.

i wrote a simple custom init script

ah

http://rafb.net/p/YpolOS56.html — can somebody maybe answer my question ? its in the pastebin too

isn't that a bit personal? ;-)

Load balancing over multiple links can never be set up on only one side of those links. Both sides need to know that those links are being used for load balancing.

it just copies a file, in perl found at /usr/local/bin/custom

eh maybe I should try something else

heh

gentoo is not for me
sorry everyone
bb

mzbot, kc8pxy 2 ISP laod

i invoke it with /etc/init.d/custom , no errors (copy succeeded), but rc-status says it fails to start

mzbot,wiki kc8pxy 2 ISP load

http://gentoo-wiki.com/HOWTO_Gentoo_Router_for_2_ISP,_load_balancing,_switch_traffic_if_link_is_down/up

i have:

But 1.8MB compressed amounts to 4MB uncompressed…

ebegin "msg"

git is the tool xorg driver developers use to keep track of the source code they work on. git HEAD means the very latest version of the code, which hasn't been released yet.

–start-stop-daemon –start –exec /usr/local/bin/custom
eend $?

kc8pxy, grr.. that's a bad page

does anyone know what i'm doing wrong?

CareBear\, last week i had a problem with local partitions from my fstab not mounting at boot, and always "already mounted or resource busy"…the problem turned out to be in my kernel, but now the prob has come back and I've forgotten how to fix it…

So my suggestion is to grab the freshest source code possible and see if that works better than the released versions.

np. I'm not thinking bonding, because 1) i don't think my ISP would do it because 2) the links are not with the same ISP.

Perhaps "automounter" ?

kc8pxy, you can do it yourself with a dedicated box

custom init script not 'started' according to rc-status

CareBear\, currently portage has version 1.7.4 marked stable. there's 2.1.0 available via ~x86. think it's worth a shot?

I'm thinking like process assignment with multi-core boxen..

CareBear\, yes, i think that was it…i'd forgotten, and now i have to do a new kernel anyway…ty

So what is the actual question? Different packages depend on different (SLOTted) versions of docbook-sgml-dtd. If you want to get rid of docbook-sgml-dtd, your could try setting USE=-doc for those packages (i.e. use /etc/portage/package.use).

Sure!

what package provides the "standard" edition of the banner program? app-misc/banner does not seem to have compatible command syntax, most notibly in that it lacks the terminal width option

Maybe a games package?

i have a gentoo box playing router(my linksys doesn't work right as router now, it's fine as long as i don't use the HW DHCP server on it though. i think of it as a wireless hub)

ok, son has come over following my surgery…if anyone else has probs with revdep-rebuild, libexpat, and gtk+, the solution is in the forums…search for pango
ttyl

Later gettinthere.

kc8pxy, see if http://gentoo-wiki.com/HOWTO_setup_a_loadbalancer_with_failover sparks any ideas

oh THANK YOU i thought it was only me
(expat i mean)

Seen the topic? :p

yes
that's why i'm happy

Ah ok, thought it was gettinthere's comment.

looking for custom init script helpage

Looking for foodage. :p
Pastebin.

what group do you need to add a user to to allow rebooting?
shutdown?

wow taht's a lot of reemerging…
it would like to remerge kde, more or less…

doh, how do I remove a user? I messed up with the adduser command

userdel

do it!

DryRayvin, usually wheel

hmm

CareBear\: you'd think they would name it remuser

remuser?

the user is part of wheel

rmuser surely?

Is there a better way, to get emerge to spit out all the packages that will need unmasking to do a specific emerge, rather than one by one?

but I cn't reboot from xfce

DryRayvin, and you've relogged since adding to wheel?

Anyone know how to get a tree view in gnome… (this reminds me too much of windows.. where i am always having to click "Folders" to see my drives.)

usermod/moduser and fix it instead of delete?

grknight yes

not that I know of — it's a bit of a failing

nah, what I did was # adduser michael

that logging out and back in after a group change always gets me

and I didn't do anything after that
so it would just be easier to do a new command as dictated by the handbook

Well, it wouldn't make a difference
Since I added the user to the wheel group back when I created the user, while installing
Which is why I can't figure out why I can't reboot from that account

no tree view?

Different packages depend on different versions of docbook-sgml-dtd, but I think you just need to keep the latest version.

isnt there an easier way to unmask packages, then to type in package and all that each time

there's a script … unmaskall or something like that
use at your own risk

with a little bash magic yes.

argh, sorry, I meant to say that to gnilor

majorjrk, you can use the package flagedit too

that like a fancy version of ufed?

seemant, thanks

grr mosquitos

rxKaffee, very straight forward.. does make.conf, package.use and package.keywords in 1 shot

nice nice will have to check that one out

it doesnt currently work if .use and .keywords are directories (which is allowed)

well in Edit preferences there is an option for showing only folders in tree view…. but I don't see any way to actually get a tree view

http://pastebin.com/m1a4cf7e1
posted*
not ported

I never know how important XML parsers are before today

again, i'm having custom init script errors i don't understand

CareBear\: ah bingo! the "real" banner is part of bsd-gams

CareBear\ ^^ in case it was of interest to you,

Yeah, that's it.

maybe next week another under-appreciated component could be broken?

Yes, looking at it.
Oh not so much broken as upgraded.

never!

same here

(just joking, love gentoo, etc.)

"michael is not in the sudoers file. This incident will be reported."

sugoi, start-stop-daemon is for just that.. a daemon

oh shit, I'm going to kill me when I figure out that I did this
:P

wow flagedit has quite a hefty list of dependencys!

language

language.

Is there a way to retain my kernel configuration as much as possible when upgrading to a newer kernel?

sorry

make oldconfig

Explain more about what you want to accomplish here.
Is the copy-a-file thing just a learning example?

does oldconfig pull in your .config from proc, or searches it out from the second-to-biggest versioned kernel source directory or …?

no
you need top copy old .config
i usually pull it from /proc/config.gz
which off course I have enabled

and if i do that in /usr/src/linux-new it'll look in /usr/src/linux-old ?

yes

the minimal ISO is OK for installing inside another linux hosting distribution
?

"inside" ?

rephrase that please

sry
afk, phone

If you already have Linux booting you don't need the CD at all.

i simply just copy my .config to new kernel source and go from there, i don't like 'make oldconfig' i rather get around the kernel's menus myself.

http://www.gentoo.org/doc/en/altinstall.xml#doc_chap5

from a running system you grab a stage tarball and follow instructions pre-chroot

any livecd is ideal for that..

I don't want to burn a CD

Fine. What else do you have to work with?

ferret_0567, please explain a bit more. any booted kernel will work to install gentoo.. it doesn't have to be a CD or CD image

Hey. I have a question. Can alsa replace arts & can jack replace them both ?

No and no.

jack needs alsa, and only pro-audio programs use jack
jack is awesome though

jack ftw

ALSA is the lowest level software.

do you have a USB flashdrive?

e-Hernick: you work with synths at all?

It's the sound driver for your soundcard.

you could use it and boot from it rather than from a burned CD

e-Hernick: maybe, I'd have to find it…

There are currently few (useful) alternatives.
arts and jack both run on top of ALSA.

not much, my use of jack is mostly for recording

It may even be possible to have arts use jack and also to have jack use arts. I don't know that for sure though.

michael@cthulhu ~ $ sudo emerge -a alsa

w/indow 7

[ebuild R ] sys-kernel/gentoo-sources-2.6.22-r2
?

oopsies…

use the in-kernel alsa drivers instead.
gentoo Bluhd alsa guide.

http://www.gentoo.org/doc/en/alsa-guide.xml

OK CareBear\ 1 more question with -arts flag set globally will I (possibly) have sound in kde through arts?

oh, that's right, I compiled those in already :P

arts is mainly for KDE AFAIK, and JACK is as was already pointed out popular with high performance audio applications.

sorry I meant through ALSA

Probably not, no.

thx man.. this looks to be cool

Oh.
Well, maybe.

it was alsa-tools I was looking for

alsa-utils you mean?

whichever one has aplay

thanx CareBear\

But I'm not sure. I don't know KDE well enough to say if you get sound also without arts. Sorry.

-utils does

kc8pxy, it might take some tweaking.. but you really need a special interface to get it to work.. TCP only ever works 1 IP to 1 IP and has to remember what was routed where

I want to install Gentoo AMD64 on a partition on a unused hard drive from a running Ubuntu 7.04 AMD64 Linux distribution

what is alsa-tools?

Is it recommend to use CFLAGS="-march=prescott -mtune=prescott" with this processor? http://rafb.net/p/44ViKa36.html

oh, that's easy then

Applications that themselves can use ALSA will work for sure. Like mplayer, xine, mpg123, xmms2 alsaplayer etc etc.

it's tools for alsa, never used it.

ok,back. CareBear\ the purpose is exactly as pasted,just to copy a file. I don't want a daemon, but i couldn't find another option for the init scripts besides start-stop-daemon

oh :p

it'll certainly be another feather in my cap

But you may not get any sound from KDE itself - like event sounds.

CareBear\, if it comes to that I am getting quite taken by xfce (might just as well remove KDE completely along with gnome)

you don't need to burn any CDs, just unpack a stage and a portage snapshot into the pre-formatted partition of your choice, and chroot into it to finish the install

Easy. Use mkfs, untar a stage tarball, chroot in and start playing with/configuring Portage.

Ok. I suggest you do the file copy in /etc/conf.d/local.start instead.

CareBear\ but idealy, i can just run a script file (as targeted with –exec /usr/local/bin/blahblah)

which stage tarball do I use?

CareBear\ is that file raw bash code?

stage3?

it's documented in the alternate install guide.. if you find the amd64 guide lacking, follow the x86 guide instead

You will need to mount some filesystems too, of course…

I'm almost ready to emerge fluxbox and start up my x jboss server hosting

stage3

Yup.

no, it's a conf
no
er, oh*
not, 'no'
hehe

I'll bind mount /proc. /dev, and /sys

is it me or revdep-rebuild sucks badly?

e-Hernick: Both.

Then rc-update -a local default

I've been upgrading a couples gentoo boxes to the expat of evil.. and it's painful.. revdep-rebuild fails…

e-Hernick: But mainly revdep-rebuild.

/sys is probably not needed.

anyway, I've got it under control now, but it was painful

e-Hernick: Does revdep-rebuild fail or does emerge fail?

Hmm, I need to configure alsa somewhere

both have failed differently on various boxes..

That would be done during kernel configuration.
There you select which ALSA drivers to include. You need the ones that match your hardware of course.

I've been fighting revdep-rebuild expat issues as well lately

CareBear\: I selected the right driver though

like, there's a few deps that revdep-rebuild doesn't find.. like, slotted apr doesn't get rebuilt.. like, gettext and XML-Parser.. like, revdep-rebuild assigning broken files to packages but never trying to emerge them..

but /msg mzbot faq expat seems to be helping

Then once the system is started with the new kernel, run alsamixer to set sound levels the way you want them. Finally /etc/init.d/alsasound save

for like 2 days man

yeah
sux

CareBear\: "no mixer elems found"

CareBear\: ok, it's working for me now, thank you

Welcome!
Ouch.

honestly I don't mind so much… it's a sign that gentoo continues to move along

Do you have multiple cards? Maybe card 0 isn't the sound card but modem or some other silly thing?

hang on, I'll run lspci

and I often just go away for a few days and come back to a fix

Pastebin /proc/asound/cards

like.. pango and gtk+ not wanting to rebuild until I rebuild libfreetype beforehand, even though revdep-rebuild doesn't detect the libft upgrade as necessary..
but now all is well

4.0 Multimedia audio controller: ALi Corporation M5455 PCI AC-Link Controller Audio Device (rev

e-Hernick: good to know.

CareBear\: I can't pastebin from terminal (no x)
I have to get fluxbox working first

e-Hernick: please post in this thread. http://forums.gentoo.org/viewtopic-t-575655.html

I have card0,1,and 2 though

Bluhd, emerge wgetpaste to paste from terminal

you mentioned that i shouldn't be using start-stop-daemon for my non-daemon service. I agree, and thank you for pointing that out. What other command for init.d scripts would be more appropriate for my needs? Or where might i read about them?

emerge wgetpaste or nopaste, then pipe to that command

CareBear\ and note, i'm asking for curiousity,not because your solutoin wasn't sufficient,because it was
^^

sugoi, for simple copy commands.. just stick them into /etc/conf.d/local.start if you don't mind them doing so as the last item

hi

which command should I pipe to it?

I'm having a problem installing GRUB - when I emerge it tells me I need to manually mount /boot, but I think I already have. Could anybody help me out?

You could just run the copy in start() in the init script. But since the command you run has finite runtime the service should never appear to be started for any long period of time.

so, in general,should i list all of my one time scripts in local.start? and my genuine services can have dedicated init.d scripts?

nopaste /proc/asound/cards
You got it.

kewl

sugoi, for things that just need to be run with startup.. the conf.d/local.start is best (local.stop for shutdown).. things that run in the background should have their own script

nice. i feel i've learned something extra useful today

could anyone help me out? I'm pretty badly stuck on this one…

What's the problem?

CareBear\, A slight off-topic question, what is your favority WM/DE ?

CareBear\: http://rafb.net/p/Zaybgp74.html

I run fvwm2

What is the file to edit that's equivalent of the options in make menuconfig for setting up a kernel?

i might be able to help
lets confirm your /boot drive is mounted

CareBear\: I'm having trouble emerging GRUB. It says it can't automatically mount /boot, and I need to do it manually, but it should already be mounted

..config

what does `mount | grep boot` tell you?

Yep - card 0 is a Virtual MIDI Card so it will not have any mixer elements.
Try alsamixer -c 1

n:nm

CareBear\: haha, so that extra feature I compiled was my fault :p

This is during install, btw, been following the documentation but at one point I had to pick it back up because the computer shut down

and i just put y, n, or m, right?

I'll check, just a sec

what happened to http://packages.gentoo.org/ ??

make sure to check from your chroot'ed environment

yes. * for build-in, m for module
i mean y

k

CareBear\: how do I set card 1 as my default?

tetromino, it's in the topic

I don't think you can.
But I'm not sure.
let's see.

/mnt/gentoo/boot ??

how do i know from .config whether things can be built as modules or not?

Oh sure you can. It's in the userspace config file.
Let's see.

Kijutsu, yes I did

it will have CONFIG_FOO=m

and what was the result of the check i had you do?

lateralus1587, that's really screwed up then, because /boot would already be mounted, and grub wouldn't have to during installation.

oh, you'll have to look at menuconfig's help

Argh. The asound.conf syntax makes my head hurt.

but not if it's not already set to be built in as a module, right? for example i have some that say CONFIG_WLAN_80211 is not set

And sugoi - it seemed to return everything was okay, gave the right partition and location…but when I unplugged the laptop to bring it over here, it died, so I'll have to mount and chroot again real quick…

Or at least work very slowly. :p

Is ACCEPT_KEYWORDS="~amd64" unstable?

oh…ouch. Sorry about that.

heh, it's ok

I've read that it's very dangerous

I agree I'm really baffled as why it's doing that. Anyone else have any ideas?

how can I recover from it?

no clue, never did it

Do you practice kijutsu? Is there even something called that?

the was, if /boot/ was actually mounted, i don't know what would be the issue with the grub install. If it is not mounted, you simply mount the partition you've chosen for boot to /boot
for me,that means mount /dev/hda2 /boot

Again, what I'm doing now is just mounting again, chrooting, and picking up back there. Is there anything else I should be doing

CareBear\, kijutsu is actually japanese for soul/magic

but it's machine+setup dependant

better yet is there a way to search from within menuconfig, because i'm following http://gentoo-wiki.com/HARDWARE_rt2500 and it just has the bare names of the modules

sugoi, /boot should be in /mnt/gentoo, right?

CareBear\: where is asound.conf? slocate only located the file that's within the ebuilds

gnome-sudoku is in gnome-games-2.18

How can I compress a source dir into a tar.gz file using tar? I have some known working source in a dir (madwifi-ng) and need to produce a tar.gz file from it. Any help?

lateralus1587, which method of grub installation are you using? Manual or grub-install?

Well jutsu is technique right?

CareBear\: hey

CareBear\, i don't know.

yes, but you can also boot from within your chroot, and i was actually referring to mounting in a normal environment, i.e. not chrooted

was going to use grub-install, but this is happening when I'm emerging, not even that far yet

type / inside it.

But I don't know about ki? Is it the same as the chinese chi?

ah, perfect

I guess it might be.

CareBear\, as i said, i don't know. :P

like, whoah

CareBear\: even glchess,

Right - documentation is having me mount /dev/hda6 /mnt/gentoo/boot before chrooting - that should be fine, right?

yep

/etc/asound.conf

k

But it may be empty.
Or non-existant.

CareBear\, some years ago, i asked a friend what the japanese word for magic was. and I was told this… and i couldn't exactly go around with a nickname of 'nobody' :P

CareBear\: nonextant

So within the chrooted environment, I should be seeing a /mnt/gentoo/boot directory, right? Because I'm not sure that I was

lateralus1587, no, once you chroot into /mnt/gentoo, / is actually the /mnt/gentoo

lateralus1587, in the chrooted environment, you would not see /mnt/gentoo/boot, but /boot

thus, /mnt/gentoo/boot is relatively /boot

I think it's a fairly true translation though. jutsu means technique and ki or chi would indeed be soul or the power that is within the soul or something like that. So sure - soul technique AKA magic!

CareBear\: What should I put in asound.conf? Is there a manfile?

Japanese is really beautiful. I only know very few words though.

How can I compress a source dir into a tar.gz file prehaps using tar? I have some known working source in a dir (madwifi-ng) and need to produce a tar.gz file from it. Any help?

s/manfile/manpage/

Good question.

CareBear\, about 2 years ago, another friend told me kijutsu wasn't directly translated to magic, but closer to soul. So. *shrugs* At that point, it was really too late to change, as everyone knew me by this. :P

CareBear\: hehe :p

man tar

I think pcm.default { \n type hw \n card 1 \n }

(if you need help afterwards, feel free to ask)

I got a warning when upgrading to 2.6.22, saying i need to make sure i'm set up for udev… if i was previously using 2.6.20, was i already using udev?

Thanks for the input…

Probably, yes.

CareBear\: \n being a literal newline or actually type '\n'?

You got it - newline.

Anyone else?
How can I compress a source dir into a tar.gz file prehaps using tar? I have some known working source in a dir (madwifi-ng) and need to produce a tar.gz file from it. Any help?

me me me!

But I want to!

tar -czf foo.tar.gz source_dir_here/
Clearly explained in tar's man page.

i would want to tell you to read the docs…but true, tar docs are rather cryptic

tar jcvf blah.tar.gz dir

tar takes some really simple args tho, once you understand them

j makes bz2 though

He wants a tar gz, not a tar bz2.

thanks, I'm chrooted again and I'll check on all this, brb

sugoi, most docs are rather cryptic. it's written in geekoid. many don't speak geekoid

If that doesn't work at all I have another idea. :p

can't go on internet.

And I am one who does not speak in the geekoid lang

c: compress,x: expand, f: specify the file, z: tgz compression, j: bz2 compression, p: keep permissions, t: list files, v: verbose….

But I think it should.
Once you've saved the file you should just be able to run alsamixer without -c 1

true, but i still feel tar's is especially strange

CareBear\: broke :P

help, it said, network interface eth0 does not exist.

CareBear\: I'll paste it in #flood

No go nopaste?

shut up, I can read!

so….tar czf dir.tgz dir/ would compress dir/ to dir.tgz in tgz format

Yes I tried -cfz but it didnt work

http://pikhq.nonlogic.org/kdelibs-3.5.7-r2-build.log Can anyone help at all?

scottDkoDer the file MUST follow the 'f'

CareBear\: How do I nopaste from stdinput?

|

tar -cfz means to compress your tar ball into a file named 'z'

The file to be created??

That's what the pipe does.

CareBear\: doesn't work, just displays paste.php

(note that I did that *in* a revdep-rebuild)

scottDkoDer right
and then list your dirs and files to compress after

sugoi doesn't f like to be last in the options?

Ahh… I will try again.

Huh? Do you still get the messages on the screen?

yes

scottDkoDer there are ways to rearrange the order of stuff…moving options around and what not, but it gets complicated, keep it simple

Hode to see you from gentoo :-)

Then you may need to redirect stderr into stdout. (They are usually separate) command 2&1 | nopaste

Hope

http://rafb.net/p/TWdnWP94.html

So please provide /var/tmp/portage/kde-base/kdelibs-3.5.7-r2/work/kdelibs-3.5.7/config.log

yes — to have the file next, but like i pointed out, there are many ways to line things up. i prefer to keep it simple (in _my_ form of simple :P ) for new ppl

Haha. Guess I got that wrong. :p

well lookie here… the minimal installer left me with no network on reboot. waaaaaaaaah

CareBear\: yup

Hold on, I'll put something online you can try to download and use.

ok, same problem however, how can I verify that I'm chrooted properly? I followed the documentation, but it says (chroot) LiveCD: by the command prompt, is that right?

CareBear\: http://pikhq.nonlogic.org/kdelibs-3.5.7-r2-config.log

CareBear\: how do I switch to the nvidia opengl interface?

lateralus1587, mount would tell you where stuff is mounted at. ie. inside the chroot, your root drive would be /

one way to check (tho i'm sure there are more) is to check your / mount

lateralus1587, outisde the chroot, your root would be /mnt/gentoo

just like kijutsu said

So one problem is this: /usr/lib/gcc/x86_64-pc-linux-gnu/4.1.2/../../../../x86_64-pc-linux-gnu/bin/ld: warning: libexpat.so.0, needed by /usr/lib/libfontconfig.so.1, not found (try using -rpath or -rpath-link)
Look familiar, anyone?

so, run the `mount` command all by itself,which lists your mounts

CareBear\: Did I happen to mention that I'm *in* revdep-rebuild?

And another is this: /usr/lib/libfontconfig.so.1: undefined reference to `XML_SetElementHandler'

so just type "/mount" ?

then see where / is, for instance on your /dev/hda# that you chose for your gentoo install root dir

lateralus1587, no.. just 'mount'

(sorry, I'm pretty new)
ok

well, my x server works but I don't think I'm using the nvidia opengl interface

Yup. So what happens if you try to emerge fontconfig manually ?

lateralus1587, just 'mount' will give youa copmlete list of everyhing mounted and where it's mounted to
blateralus1587, just 'mount' will give youa copmlete list of everyhing mounted and where it's mounted to/b

Worst case, do you really need the Virtual MIDI driver?

it'd be cool if these channels and irc supported some type of 'form' based windowing

Heh, I need to emerge something as well. :p

it gives me two things, /dev/hda5 (my root) on /, and then the next like is /dev/hda5 on /mnt/gentoo

to help us write code without trying to mix it with words

*next line

sugoi, no kiddin'.
whattheheck?
Why would it have /dev/hda5 on two mounts?

excellent question!

hehe, is that normal?

yeah, both / and /mnt/gentoo

some things i just don't check when i'm doing it

What am I doing wrong? ifconfig shows that there is tapnixos but qemu tells me that it does not exist? http://rafb.net/p/rSjbqt71.html

one some rw and noatime, one just says rw
*says

I have issues.

CareBear\: probably not but I'll need to reconfigure my kernel
CareBear\: maybe it will even make my tiny kernel tinier

lateralus1587, something isn't playing nice with others

CareBear\: fontconfig built normally.

Now retry r-r

what should I check out?

lateralus1587, okay. explain to me how your partitions are laid out please.
lateralus1587, are you running a dual boot system?

hda6 is gentoo root, right?
what's boot?

*NORMALLY*, boot is /dev/hda1

Yes. hda1 and 2 are windows. For some reason it skips 3 and 4, 5 is root, 6 is boot, 7 is swap

Well, whenever you folks see to it. I am trying to dual boot my Windoze/Gentoo system, the gentoo installer won't read my partition tabe.. why?

could be a extended partition

lateralus1587, 3 & 4 are probably some ohcrap restore utilities for windows.

ok

CareBear\: I'm in X right now, and I probably missed what you just said

It may be how qemu reads interface names.

the installer has been known to delete existing partitions…you might want to be wary

oh,5 is root, 6 is boot

I didn't say much.

lateralus1587 this is what i'd do if i were at your computer

It is pre-partitioned

Still working on uploading that conf file for you.

reboot on livecd, fresh start up

CareBear\: So I should try another name?

lateralus1587, so knowing this, your 'mount' command should , *BEFORE* chroot. /dev/hda5 mounted at /mnt/gentoo, /dev/hda6 /mnt/gentoo/boot, and /dev/hda7 as swap.

I hae Windows on a 10gig, the rest is set for linux

CareBear\: ok

sugoi, yes.. let's start from a non-retarded livecd.

Try http://stuge.se/gentoo/asound.conf

Correct, that's first thing I did this time after booting liveCD

CareBear\: and it's easier now because I'm in fluxbox

like kijutsu said, but i'll give the commands, you confirm you understand

thx, but just gonna d/l a tar.gz file and hope for the best

\o/

lateralus1587, then you issued the command 'chroot /mnt/gentoo /bin/bash' correct?

mount /dev/hda5 /mnt/gentoo

Yes

mount /dev/hda6 /mnt/gentoo/boot

then stuff went haywire

I'll go reboot in a second, unfortunately it's in the other room so I'll go through this with kijutsu real quick
Yeah, I did the three commands it had listed for chroot in the documentation

env-update source /etc/profile

aye

well, what i'm trying to say is just to mount all of your dev points, then chroot, and you should be ready to emerge right at that point

Right, that's what I did this time
and I got this same message

CareBear\: still getting errors

I'll give it another go though

yeah. I'm suggesting what sugoi said, reboot and then go chroot as sugoi instructed

Sure, be right back

CareBear\: the problem is the .default I think

i emerged intels wifi drivers, but im stuck, not sure what to do next, iwconfig shows sit0, is this my wifi nic ?

Hm. Works here.

CareBear\: default is not a compound

sugoi, *insert blubber noise here* what the heck would cause a drive to be mounted at two spots?!

that's what the error says

Let's see.

haha, not sure dude

CareBear\: I need to reset my xterm colors too
:|
I should have backed that setting up

ironically tho, that's one of those things i never check for

mounts after chroot?

you know what i mean,i just kinda 'do it'
i was thinking that, i bet that'd do it
but i don't see how that'd mess up the path

CareBear\: what if I compile the virtual midi driver as a module?

he shouldn't even need to play with any mounts as /boot is already mounted.

right

at that point, he's basically in his system.
minus the kernel from the livecd

i wonder if he chrooted once having forgotten boot, tried to mount it within chroot…then tried again outside from another terminal..
i don't know
and we never will…

silly tty2 rejoining the channel

i think it'll be easier just starting over.

yep

at least, a chroot that hasn't yet been poked at.
grrr. mplayer compile hosting so i can go to work.

If Virtual MIDI is a module and your ALi thing is built-in, the ALi will surely be card 0.

well,goodbye for now. I've got some work to do.

CareBear\: I'll reconfigure my kernel then and reboot

pcm.default should work. Oh well.

CareBear\: you know what's really weird is the fact that my chipset is actually ULi but it's recognized by EVERYTHING as ALi o.O
even the bios says it's ali

May just be rebranded.

maybe
it's a very very nice chipset though

Or a print error where it says ULi

never had a problem on it

How is it going?

CareBear\: www.uli.com.tw
CareBear\: www.ali.com.tw

They are friends yes?

CareBear\: I tried emerge -1 gettext XML-Parser first, just in case that had any relation.

CareBear\: maybe :P

Back to the revdep.

Oh, not tried that yet. Ok.

I think I may have already, but figured it couldn't hurt to try, since I can't remember whether I'd tried that before or not.

Okay, I tried again. Mounted root and boot, chrooted, and hit emerge grub. Same thing
and the only two things is shows as mounted are two copies of /dev/hda5
before I chrooted, mount looked normal, but looked funny after chroot

CareBear\: compiling new kernel now

Sweet.

Whoo. It actually detected the existing Qt version.

hey all. I've been having trouble with dcopserver for sometime now. for some reason it can't access my /tmp/ksocket directory. I tried accessing it manually and all the permissions were denied. I can't even access the files as the root user. is there anything I can do?

how do i get modprobe, lspci and such ?

sugoi, kijutsu, either of you still around?

hmm. how long would one estimate gcc 4.1.2 would take to compile on a dual-core amd64, 2.0ghz system? i've got 3 hours on my 1.4GHz single-core, 32-bit system, and i'm just wondering about comparison values. *shrug*

CareBear\: you know, while I'm at it I can also fix my framebuffer issue when booting up (I'm running at a real low resolution when in the terminal)

modprobe module-init-tools, lspci pciutils, lsusb usbutils

"There are no ebuilds to satisfy mypkg.tar.gz" Do I need the Universal iso? Any ideas?

You can't emerge a .tar.gz
You also need to write a .ebuild file for your tarball.
If you are good at programming and CS in general I would expect you can write your first ebuild in a few days.
(first good)

anything guys?

CareBear\: How should I go about "writing an ebuild file"?

look at existing ones

I have some madwifi (the pkg of interest) .ebuild files installed by default, but do not know how to use them…

What is it you're trying to do?

why can't i use the nptl useflag on glibc-2.6.1? i've got it on in /etc/make.conf and i'm even trying it on the commandline.

AFAIK nptl is not optional with 2.6

/join #gentoo-dev-help

Not so fast.

CareBear\: ah, alright. same with nptlonly?
CareBear\: Thanks

CareBear\: I am trying to build madwifi for my Atheros card from source to access the net, but to no avail

is there a graphing calculator emulator?

Almost all Gentoo packages are built from source.

how do you change permissions via commandline?

Is there a reason you can't just use the latest madwifi-ng package?
chmod ?

CareBear\: I have installed gentoo from the 2007 live iso, and it is a steep learning curve coming from ubuntu
CareBear\: The reason is I simply do not know how

I'd say you have tried the two things at opposite ends of the spectrum.
Oh, ok. Try the command emerge madwifi-ng

CareBear\: what? I can go all night long

CareBear\: It tries to access the internet which I do not have booting into gentoo

is there a program that does what a graphing calc can do, or simulate it?

Aha! I see. Then run emerge -fp madwifi-ng and download all those files manually, then copy them into /usr/portage/distfiles/ and then re-run emerge madwifi-ng
gnumeric?

"Kernel panic - not syncing: VFS: Unable to mount root fs on unknown-block(2,0)

CareBear\ ok ill try that out

Or gnuplot ?

do you want it to simulate a graphing calculator, or do you want pretty graphs?

CareBear\: I have that file saved (ie all the http:*tar.gz file locales) but which should I use??

reisio, i dont have a ti-83, so i need something that will do what it does

Then you're missing the neccessary drivers for Linux to find your system hard drive.

app-emulation/x48 ?

ahh thanks

or your /etc/fstab is not set up right

You don't have to use them yourself, just dump those downloaded files into /usr/portage/distfiles and then emerge will see them and not need to download again (important: don't unpack/repack them)

k, do you know a good place to look up laptop chipsets? I'm pretty sure this has to deal with me not knowing my sata controller exactly

Probably. lspci is your best friend when it comes to identifying hardware.
Do you know anything at all about your laptop hardware?

gcc-3.3* is blocking emul-linux-x86-compat. the gcc-3.3.6-r1 ebuild and toolchain.eclass don't even contain the word "emul" .. gah?

mzbot, teach Alaric2 gcc-3

Some packages, usually pre-compiled binary packages such as mozilla-firefox-bin, are written in C++ and are only compatible with the C++ runtime library provided by gcc-3.x. If this is the case then you can avoid having to install gcc-3.x entirely by installing libstdc++-v3 beforehand: emerge -1 sys-libs/libstdc++-v3

Or?

Anyone ever installed the intel driver 4965 wifi card ? ive done emerge iwlwifi iwl4965-ucode but now im stuck and not sure what to do next ?

CareBear\: I have some known working src (that compiles and works in ubuntu) and was originally trying to "pack" them into my own tar.gz file, but failed. I have the links, but which tar.gz file to use??

emerge -n eix && update-eix && eix -S calculator | less

not really, it's brand new on the market and on the official sites it sounds like it uses ICH8, but when gentoo boots from the live CD it loads promise sata drivers

You would need to add the module to /etc/modules.autoload.d/kernel-2.6

so it's hard for me to tell

reisio thx

First off, Gentoo will always need the unmodified upstream source. So your ubuntu files are probably not usable.

CareBear\: The links I have copied come from the emerge -f -p madwifi-ng madwifi-ng-tools cmd

Ah excellent!

and CareBear\'s suggestions are great, too, but they might be more than you want
and CareBear\'s suggestions are great, too, but they might be more than you want

Then just move all those files you downloaded into /usr/portage/distfiles/

gnuplot, anyways

CareBear\: Which should I d/l? I am slightly confused

All of them.

Can anybody help me out, I'm having a weird problem with the mounting of my boot partition. When I'm emerging GRUB, it says that boot isn't mounted. From within the chroot, I type mount and it only lists the root as mounted. But it won't let me mount boot, says it's already mounted or /boot is busy. Any help?

CareBear\: All
CareBear\: All?? (srry)

Yup. I'm checking now to see how many files it is.
Shouldn't be more than a few.

CareBear\: I have a lot of links. Shall I pastebin for you to veiw?

hey anyone here fimilar with a mail server on gentoo

postfix is nice

for some strange reason my smtp authenication isnt working for my domain

Ahh I see. You got one link per mirror!

people can send mail using my domain name

CareBear\: I am really sorry, but I am new to gentoo and dont understand

All your links end with madwifi-0.9.3.1.tar.bz2, right?
No worries. We're here to help.

reisio, now i have to learn another whole layout…

CareBear\: One moment to pastebin, brb

plenty of alternatives

CareBear\: http://rafb.net/p/YpolOS56.html — can you maybe answer that question ?

reisio one that looks like a ti-83?

any1 here fimilar with qmail
at all

probably not, but possibly

Yes, anyone can send email using any register your domain name name. The email system on the internet is not secure in any way.
Yes.

more likely one that is utilized more like a ti-83

CareBear\: http://pastebin.com/m49d313fd

i have a problem with expat

carebear how to do i fix that issue

(which the mzbot advice did not fix)

I answered it before. You can unmerge all but the latest version of docbook-sgml-dtd

CareBear\: And as you see, yes tar.bz2's

reisio, i just dont think i have the time to learn another set of buttons and layouts ( x48 )

ohh I didnt see it soorry
I checked up the highlights

i have already run the command mzbot recomends for the expat issue but i cannot merge kdelibs

Hehe. That issue is not something we can fix without global coordination, unfortunately.

how'd you learn ti-83?

reisio ive used it for a while now

*starts his 877-package emerge* oh my.

so what happened to yours?

For anyone with an Intel laptop. I have an Intel Mobile IDE controller and an Intel Mobile SATA IDE Controller. What does that translate to in the kernel configuration?

reisio, got stolen

Which means it is not likely to happen anytime soon.

kdelibs build process just says expat is missing (which is fun, cause i'm only remerging it because of expat)

:/ http://www.google.com/search?q=%22ti-83%20emulator%22

If you need email hosting security I suggest using GnuPG.

CareBear\: After my net conn is working I think I will be a lot better off…

Ok, so you see that a lot of these links are to the same file just at different servers?

CareBear\: yes and…?

ae

They're mirrors, so that you can get stuff from the server closest to you.

http://appdb.winehq.org/appview.php?iAppId=1471

You do need all five files, but note that it is really only five files.

CareBear\: Ok, great, but I thought I needed tar.gz format

Some files are .tar.gz, some .tar.bz2

CareBear\: Ok, so d/l those five and then copy to /usr/portage/distfiles and then emerge?

That varies from package to package.
Yup!
But one thing..

CareBear\: So not to worry about versions or my known working src??

reisio, cool

The kernel sources are listed here - is that because you haven't booted a self-built kernel yet?

I am trying to get everything working in my newly compiled kernel, just updated to .22-r2, and now when I try to recompile any kernel modules, for instance alsa-driver or nvidia-drivers, I get this message in red "access violation summary…" then the location of a log file that says "open_wr: /usr/src/linux-2.6.22-gentoo-r2/-.gcda" Anyone know what this means?

No, no need to worry. Portage (the package system) takes care of it almost all the time.

anyone have a problem where revdep-rebuild cannot merge kdelibs after upgrading to expat 2?

CareBear\: No, installed from 2007 live iso with out intenet obviously…

CareBear\: my kernel works, I'm testing the sound now

*internet

CareBear\: YAY
CareBear\: I HAS AN MIXERZ

Please pastebin your build log and the config.log in the error message. Or you could just blindly try emerge fontconfig, and then revdep-rebuild again.
Goodie!

success?

yes

help, it loaded the kernel module, but it said network interface eth0 does not exist

CareBear\: ooh, why fontconfig?
thanks
CareBear\: also, what's config.log

CareBear\: thanks for your help

wait, did i just pick the stupid option?

Ok. Before you can build/install the drivers for the wifi you have to be running a kernel that has been built on the Gentoo system.

beh it's 3am i don't really care if it breaks…

What sound card and driver combo are you using?

CareBear\: what was that init.d save command?
what do you mean?

/etc/init.d/alsasound save

I have onboard ALi M5455 Realtek AC97 sound chip, with the built in kernel driver

CareBear\: That is what I am trying to do! How do I install the "running kernel" or compile it?

Downloading those five files is the right thing to do now anyway. I just wanted to mention that you'll be building a kernel before you can install the madwifi drivers.
Again, grab those files, then see what emerge madwifi-ng says. It _may_ even build the kernel for you although I think that's me being a bit too optimistic.

why is my copy of firefox not built with xft enabled?

CareBear\: the story that was meant for app-text/docbook-sgml-dtd can be the same with an older version of gcc ?

CareBear\: Well I will try just that. I hope anyone else listening will have learned something in this chan, as I see this as a great hurdle without a working net connectiion

I do lspci and it lists me as having INtel Mobile IDE controller and Intel Mobile SATA IDE Controller. My kernel is setup with Intel PATA/SATA support built in. Yet I get the same error message, what am I doing wrong?

hello

Thanks CareBear\, I will be back (hopefully)

i cannot install nicotine+ but nicotine install normally…

CareBear\: well, my sound config works, now I need to get sound out of it (no sound output but it's better than no sound config

anyonr can help ?

Offline Gentoo install is _possible_ but it's definately not what Gentoo was built for.
Unmute master and PCM, and turn up the volume a bit?
Good luck!

CareBear\: already did

And - nothing+
?

aplay /dev/urandom will tell me if anything happens
but uh
nope
hahah
I wasn't flooding :o

CareBear\: That is how I installed gentoo in the first place, networkless, but I would like to be able to get it working live, before installation. Thanks again, I need all the luck I can get!!

:p

is there a way to have qmail authenicate users before they send an email

I know. I am deeply sorry that a very stupid software kicked you out.

CareBear\: Downloading now, any more tid bits before going 'down for the count' are appreciated.
CareBear\: Downloading now, any more tid bits before going 'down for the count' are appreciated.

let's see if this works

Sure. Look into SMTP-AUTH and possibly using PKI for access control. But that will not stop me from forging email so that it seems to be sent by you.

this one had better go to eleven

nobody knows why firefox is built without xft enabled?

0.00 dB is the best - that way there is no amplification on the sound card, those amps are usually not very high quality.

CareBear\: I know, I was joking about it going to 11
what I meant was I was making everything -0.00dB

carebear what is a big difference between postfix and qmail

this is really odd
no sound for meeeee

No, not right now. Try emerge madwifi-ng, it will probably pull in the kernel sources gentoo-sources-2.6.19-r6 too.

Carebear how can i use pam to autheicate local users
for smtp

please…
I cant install NICOTINE+ but NICOTINE install normally

how do i convert a .wav to .mp3 at top quality, i do ffmpeg -i track.wav track.mp3 but it converts it to a mpeg-1 format that i cant even open in wmp

i can t understand this

and it sounds horrible

CareBear\: Sweet, downloads are quick (small files) thanks again for your help, and wish me god speed!

Carebear how can i use pam to authenicate local users for smtp or no

They will probably not get built automatically though, and madwifi-ng probably needs the sources in /usr/src/linux to correspond to the kernel that is currently running.

CareBear\: wait a minute

ffmpeg -i $1 -ab 128 -ar 44100 $2

this looks really odd
Playback 31 [100%] [0.00dB] [off]
o.O
I never muted it :O

help, kernel loaded the network module, but it said network interface eth0 does not exist

But then you'll have the sources in place, and can configure, build and reboot.

CareBear\: at least I found my problem

Relax. I saw your question the first time.

CareBear\: Oops, spoke too soon, as some of the files are bigger (Oops!)

CareBear\: ah, I unmuted PCM and I heard my speaker pop
CareBear\: problem solved

ok

I haven't used postfix myself, only looked at developing software that hooks into it's settings database.

CareBear\: I am anticipating errors… and will cross that bridge.

nickmarinho that dont work

in $1 is the file that you want to encode

I do have extensive experience with qmail. I like qmail a lot because of it's design and because of the high code quality.
I do have extensive experience with qmail. I like qmail a lot because of it's web design and because of the high code quality.

and $2 is the output

But Postfix is not bad either.

ffmpeg -i in.wma -ab 128 -ar 44100 out.mp3

nickmarinho, i know that, but its only like 80kbs now whereas before it was like 1mb, how does that work out?

I would suggest trying lame

it can be
wma is minnor

mplayer cant even play the mp3

i dont know now what to do
anyone can help me please ?

As for using PAM for SMTP user auth, I don't know. Google it and see what you find.

i ewas using nicotine
but now i want to see how nicotine+ works

hi all i am just getting back into my gentoo, i have no X installed and when i run x86info it gives more information then can fit in one screen how do i scroll up

i did uninstall of nicotine
but the nicotine+ don't install

Shift+PgUp

please help

But that buffer "locks" when you switch between virtual consoles.

Thanks thats exactly what i needed

Post the error messages.

ok, thanks

CareBear - is there a better option then clear to clear that buffer, cause clear only brings the command line to the top of the screen

is it possible to set up a windows domain controller with gentoo?

How do I change the xterm backgrounds in .Xdefaults?

Yes, with Samba.

You can't really clear the buffer..

It's nothing Gentoo-specific, though.

Well, you could use bash to feed lots of blank lines through it.
But.. ? Why?

CareBear\: Ok, what 5 files would you d/l, as I'm having trouble recognizing which are correct. Do I need the shareutils?? Yes I'm thinking?

http://rafb.net/p/NKgWh017.html

XTerm*background: black

reset

I thought samba only does file and printer sharing

ah, that's right

The filenames are: sharutils-4.2.1.tar.gz genpatches-2.6.19-6.extras.tar.bz2 genpatches-2.6.19-6.base.tar.bz2 linux-2.6.19.tar.bz2 madwifi-0.9.3.tar.bz2

You thought wrong. Do note that getting a Windows PDC to work using Samba is difficult and has very narrow requirements. It IS possible, though.

I can't understand but this error of ACCESS VIOLATION SUMMARY sometimes appear here when i'm trying to install anything

so you think I would be better off using windows server

help, kernel loaded the network module, but it said network interface eth0 does not exist
it was working before

CareBear\: Thank you so much for pointing me in the right direction..

No. I said it is possible and it isn't Gentoo-specific. It's also less expensive than getting Windows Server…

Either badly written ebuilds, or badly written software.

&& rej: thanks

Welcome.

nickmarinho, its actually ffmpeg -i file.wav -ab 128kb file.mp3

Not all drivers create ethx interfaces. Which driver are you using?

CareBear\: And the tar.bz2 files go directly into the distfiles dir?

-ar is not possible now ?

Exactly.

what can i do to fix this ?

nickmarinho, no it needed the kb on the end of 128

CareBear\: Ok, some links are 'not found', finding the correct links…\

I will try and emerge it and see if I can reproduce the problem.

CareBear\: r8169, it was working before.

why cant my emerge retrieve glib-1.2.10-r5 ??

Thanks Friend, i'll wait here for your results

Report it at bugs.gentoo.org if it isn't already known. If you're good with bash scripting then it would of course help if you can attach a bugfix.

the access violation is caused by sandbox. you can remove sandbox from your FEATURES in make.conf if you really must have whatever that package is…. if the package will emerge with sandbox disabled, and you're not running hardened or grsecurity or whatever, then there's a bug

but if you want to set another ?

unlink: /usr/local/share/pygtk/2.0/codegen/argtypes.pyc will always be a bug.

CareBear\: i replaced the / with the one from vmware. then it doesn't work anymore. i tried to compile new kernel, no luck

nickmarinho, iono?

hi all

The / what from the where?

'lo spike

I can remove this sandbox from here ?

There's a driver in the kernel for the 8169 right?
I would suggest compiling that as built-in rather than a module to eliminate any module loading problems as the cause.

What is the URL?

quit
er

Quite.

heh

Hello.

can't you set another like "-ar 44100" ?

/quit

Could someone equery belongs glxgears for me please?

nickmarinho, go for it

hi all

rej, http://gentoo.osuosl.org/distfiles/glib-1.2.10.tar.gz

mesa-progs

hi

CareBear\: that was a dual boot system, the network was working. and I have another gentoo under winxp vmware. I tar the vmware one and replace the dual boot one. then the dual boot one doesn't have network anymore.

Comments

im trying to emerge kde-meta but i keep getting an error on package kopete-355-r2 To support Video4Linux webcams

1 localhost" or something else?

Are you sure your disk is /dev/hdg ?
no

jmbsvicetto, yeah it does

i have no idea how to work mplayer :P

127.0.0.1 evo.localdomain localhost

absolutely,and device map point hdg to hd0 forgrub

jmbsvicetto, ok thanks a lot .

What did you use for the ip addr add?

i don't find anything about seeds

jmbsvicetto, your line anything but it gave errors

Do you have that many disks? If not, make sure the kernel doesn't use another name for them

Can anyone tell me how can i COPY my gentoo installation from on server to the others ?

Can you show the errors?

Ketarel mplayer -ao alsa /path/to/file should do

no, only one, put it's connected to second maste ata cable, and my other gentoo installment worked like a charm, using hdg.

an inet prefix is exspected rather than "ip/mask"

After you get it done, you could create a stage4 for that, but then you would need to set a new "identity" for the server

same if I replace them with the static ip hosting and netmask

That's why seeds would have been a better option

how do i path to another harddrive?
/mnt/hda or /dev/hda?
or something else?

Hey does anyone know how in beryl to get it so wow displays fullscreen without the panels showing?
its really annoying

you need to mount /dev/hda on /mnt/whatever

path is not a verb… you want to mount?

Read up on quickpkg - you can use it to create binary packages from your compiled packages - then you can install these using portage's binary package support. Note that when you quickpkg packages, with a couple of exceptions, all the config files will be packaged too.

Ketarel, the filesystem is one big tree … the physical drive doesn't matter, as long as the partition is mouted

…. Set system time from RTC on startup, (rtc0) sysfs, proc, dev… I have this options.. any idea?

when I'm booting the system, I get this error when runs /etc/init.d/clock … : Cannot access the Hwd. Clock via any known method. Failed to set clock.

Use 192.168.1.X/24 instead of 192.168.1.X/255.255.255.0

sec

jmbsvicetto, why do you call that a stage4 ? how do i create one ?

Note that /dev, /proc and /sys are special filesystems. You shouldn't mount partitions under those. /dev/hda for example will point to your first IDE drive

Yeah that's what i'm looking to access

Why, isn't it the same thing in two different formats?

Clarification: /dev is used for device nodes, used for accessing hardware

I've got gentoo on hdb and windows on hda, i'm trying to access my user desktop on my windows drive

search for stage4 in the forums - https://forums.gentoo.org

Ketarel, make a mountpoint in /mnt then mount /dev/hda1 there, if thats what you need

i just found a nice documentation on seeds
i'm on thx

Seems to me like your telling him to write two like 2

does anyone have problems with opera locking up?

can you give me the rundown on making mountpoints?
mount /dev/hda /mnt ?

yes, but iproute2 likes ip/prefix-length and not ip/mask

Ketarel, mount /dev/hda/ /mnt/dir

Ketarel mkdir /mnt/win mount -t ntfs o umask=0 /dev/hda1 /mnt/win
bdf“` that would be better with a partition number
Ketarel mkdir /mnt/win mount -t ntfs -o umask=0 /dev/hda1 /mnt/win
bKetarel mkdir /mnt/win mount -t ntfs -o umask=0 /dev/hda1 /mnt/win/b

NeddySeagoon, of course

unknown filesystem type 'ntfs'

is it working now?

Ketarel, make sure ntfs support is built into your kernel

jmbsvicetto, that seems to work, I can ping out to the world now

sounds like i'll have to recompile huh

Ketarel, I assume your Windows in on ntfs, not fat32 ?

then update your system

who uses fat32?
i rep DVD isos yo :P

Ketarel, alot of people do :P

jmbsvicetto, aye let me look up the update manuel

Ketarel, use genkernel it is compiled to work with almost all hardware and filesystem

bdf“`: skanks and blasmephers, the lot of them

Ketarel, You have a choice. The kernel provides ntfs access but readonly. For read write access you need ntfs-3g

easy on the language/insults here plea

bdf“`: genkernel is the devil

Hi, I've just emerge sync'd and I was doing an emerge -uDv world, and its telling me gcc 4.2.0 is on a new slot…

eh?

I don't think i'll be doing much writing to ntfs drives with lunix here

I really don't want to recompile gcc . (1.6Ghz sucks)

should i just check on support for ntfs in my kernel and recompile?

Ketarel, build the ntfs kernel module. Leave out the write support option

wrong tab completion

ah ok

Ketarel, may as well do it as a module

Ketarel, why? it works wonderfully well for me , may be it just doesnt like you

roger that
bdf“`: nah, I'm just not a fan of it.. takes the fun out of the whole thing

you wanted Ketarel and not Katana, right?

i think so

Ketarel, well yea,i just have one comp so i dont screw around alot

should i modulate ntfs debugging support as well, or just file system support?

i got a "Filesize does not match recorded size" during an emerge. what can i do about this?

bdf“`: ah, i have like.. 5 online right now.. this box is just to play around with linux

Ketarel, debugging is for devs - you don't want it

roger that

what is contolling the monitor to go off while using the console?

sync up your portage tree again, try again, and if you still get the error, search bugs.gentoo.org and file a new bug if you don't see one about that
setterm i think

Fieldy; k, thanks

-blank option

event_ide, remove the file from /usr/portage/downloads and/or resysn

Ketarel, well not everyone is lucky

event_ide, remove the file from /usr/portage/downloads and/or resync

Fieldy; btw, Korn fan?

nah

Fieldy; oh, the bassist name is Fieldy

i know heh

Hm, is there a guide on how to upgrade gcc?

lol

teach Skankerpotimous gcc upgrade

http://www.gentoo.org/doc/en/gcc-upgrading.xml ( http://xrl.us/rhxw )

thanks

4.2.0 will just be slotted (installed side by side), 4.2.0 won't even be used unless you perform a specific command to enable it

yea, and i just realized i have 4.1.2 .
thanks for the guide

hey Skankerpotimous how are ya
?

ok, ntfs modules are made and made installed

bdf“`: nothing much, recompiled my whole system (or so) due to changed USE flags and now probably recompiling it all again due to new gcc version

bdf“`: it's not like im running powerhouse systems here.. my best box is an athlon64 3000+ :P

you don't have to do that

Skankerpotimous, aah tedious work all the best

unless you are switching to 4.2.0 (not just installing it)

loooool Ketarel doesnt matter , if i had p2 also i wouldnt mind

windows drive is mounted

which i would hold off on as it's new

bdf“`: people give away lowend systems on craigslist all the time

Just got up gentoo, but udev fires away LOTS of errors during boot, won't show in dmesg and no nodes @ /dev/, what to do?

What should I put in locale.gen for English(uk) and spanish.

yea, its new, ill go see if theres any reported problems over it, and might switch to it in a few days or so

Ketarel, you will hate the spaces in Win filenames mplayer -ao alsa /mnt/win/….

Ketarel, please introduce me to such people
:P

or better where can I find a list of locales

bdf“`, Join your local lug

NeddySeagoon, i wil try

davf, I believe it's told in the handbook?

bdf“`, I passed up a couple of P3 dual CPU servers being offered for a beer the other day

I'm looking at the handbook right now.

looooool NeddySeagoon be my friend

only gives examples for us and de

davf, must be there in wiki

bdf“`, Join your local LUG … people give away kit all the time

NeddySeagoon, well i dont think they do it in my country

well my console's going crazy now
- MPlayer crashed. This shouldn't happen.
weeeee

heh yay for helpful errors right

Ketarel, type reset to clear the mess

if you are using the custom-cflags USE flag for mplayer, be sure to turn it off

done.. should i try another file?

Davf, if you haven't found it yet, do a #man locale.gen and it says in the first sentences where examples are at(not trying to be a bitch, i just don't have access to them now)

Ketarel, don't use WMA files - mp3 should be ok

k

pout no prob. pointing the way is good!

ok, it says it's playing… but no sound is coming out

Ketarel, have you set the levels and unmuted ? Just master and pcm

everything should be muted except master and pcm?

fun times.. updating gcc, mozilla-thunderbird, seamonkey

Ketarel, Thats an easy rule. All the digital stuff must be muted

ok, i had 'center' cranked

Ketarel thats anythings with IEC or SPDI/F in its name

still no sound

Ketarel Muted, is the switch under the slider

what is shm?

ah, turns out the m key does that

as in /dev/shm

turning the volume up doesn't unmute stuff
and now i have sound
huzzah!

im trying to install mozilla-firefox-bin but i cant start it, only the 64bit one, what i need to do?

Ketarel, Now you have ALSA sound. ALSA can provide OSS emulation too. You won't have that yet

and now i can watch http://youtube.com/watch?v=hw1MFobWD_o which was the whole point of this

davf shared memory filesystem

I'll worry about that when i need it. i'm content with what's working at the moment.. thanks a ton for your hours of nonstop help

Ketarel Success. Well done

hey guys

Ketarel No prob

NeddySeagoon, is this like user space or what?

and thanks to everyone else that threw in their 2cents every so often.. that was epic

i was wondering if someone could help me setup the IPsec settings in the kernel config

davf, You can put files in it. It should be mounted someplace. /dev is normally there, you can put /tmp there too. Its not preserved over reboots

ok thx.

davf check your /etc/fstab … /dev/shm should be listed. Try df too. I get none 517952 0 517952 0% /dev/shm

I'm doing an install right now. I just wondered if I need to include it.

hey

NeddySeagoon ^^

I have installed mysql 5 and i have probelem to stop the deamon

davf, Its in the defualt /etc/fstab

when i do /etc/init.d/mysql stop it don't stop it

not in mine. only the /SWAP / ROOT /BOOT ones
anyway it's there now.

Stopping mysqld (0) [!!]

davf close to the bottom

/whoami

davf, See the comment

try askin #gentoo-server too

ok thanks

#gentoo-db

NeddySeagoon duh…. sry…. lol scroll.

davf, no prob

but proc isn't there. I imagine it should be?

davf, its mounted before /etc/fstab can be read

ok… thx

/join #Blind-Gentoo-Administration
Oops

/join #Blind-Gentoo-Administration

Ignore that ROFLROFLROFL!!! I just typed into the wrong window.
Sorry

Keith-BlindUser, no problem

Keith-BlindUser: HI! Long time no see

Hello there. How are you?

Just got up gentoo, but udev fires away LOTS of errors during boot, won't show in dmesg and no nodes @ /dev/, what to do?

Anyone mind helping me get my wireless working on my laptop?

what's the problem ?

pout, can you get logged in ?

I emerged the wireless-tools and wifi-radar But when I 'iwconfig' it says no devices
Internal wireless card on.

and U have the corect driver loaded ?

Not sure honestly, I'm going by the wiki

what wlan-card do you have ?

Honestly I don't know lol

lspci

Its a B/G internal wireless card

find the card, google on it

is there a way to emerge to net-setup tool?

Alrighty

or some other way to tell my wireless card to use dchp

I don't htink net-setup uses correct networking syntaxes.
I think Net-setup would right you a config that would ask you to change it's syntax.
On each boot

Broadcom Corporation Dell Wireless 1470 DualBand WLAN

I see

On my system it did, until I manually whent and applyed the config_interface (whatever)

Keith-BlindUser, net-setup is a liveCD thing only

NeddySeagoon, I can login, complains about not having working asterisks tho

Yeah

Keith-BlindUser, where would I locate the config file?

You'd go to /etc/conf.d/net.

thanks

Oh
And read /etc/conf.d/net.example if you need more assistance.

pout, you can log the screen messages … let me look up how

I couldn't find any linux-driver for so you'll probably have to use ndiswrapper and windows drivers

pout look in /etc/conf.d/rc at the comments around RC_BOOTLOG= get the log onto a pastebin
Last_Hero, dhcp is the default - if the net file is empty, thats what you get

/

Is it going to be as simple as emerging the ndiswrapper and then 'iwconfig' will show my card?

anyone have any experience with accessing window shares on a vmware windows on the same box?

might exist som drivers, give me the numbers infront of the wlan name instead

Last_Hero, it can be a crypto problem too.

Broadcom Corporation Dell Wireless 1470 DualBand WLAN

NeddySeagoon, actually that makes sense

should be som numbers before that
use lspci

Nodlain, you need the Windows driver too, and firmware (if any)

NeddySeagoon, I used iwconfig to set the WEP key for the card, you think I need to instead set it in KWiFi configure?

Last_Hero GEt it to work with no crypto first, then add that back
Last_Hero You need it in your /etc/conf.d/net
Last_Hero See the /etc/conf.d/wireless.example

jmbsvicetto, Fieldy erm, I retried it, and it worked. it is good that it worked, but it worries me it didnt work the first time

NeddySeagoon, kk, thanks, I'm working my through the example files atm

Last_Hero, ok

ok

whats included in kde-meta?

alot I think

any way to tell?

everything. kde-meta is the same as kde but with split packages
If you want the complete list, run emerge -pv kde-meta

hmm, just a bit then

kde-meta contains references to a list of other meta packages, such as kdebase-meta, and kdeadmin-meta

Do I need the .inf file to do this driver install?

Each of thse, in turn, contains references to a set of applications for that category.

Nodlain, I think the inf is used by ndiswrapper when it installs the driver and firmware into linux. emerge ndiswrapper and do man ndiswrapper its all there

I assume "emerge kde-meta" on a stage-3 system will pull in X ?

yes

i'm trying to emerge kde-meta, but i keep getting an error on package: kopete-3.5.5-r2. "To support Video4Linux webcams in this package is required to have =x11-libs/qt-3* compiled with OpenGL support." is there a way to remove this package from the emerge so i stop encountering the error?

try compiling qt-3 with OpenGL support

I've just had to deal with the same issue - adding "opengl" to my USE list and rebuilding =x11-libs/qt-3* seems to have fixed it

Friesia; i just did, and still got the error. emerge –sync?

don't know

Roobarb; i have, but i still get the error
Roobarb; i'm emerge –sync ing right now.

how can i get a working libstdc++.so.5 ?

Roobarb, It will pull in Xorg less video, keyboard and mouse drivers if you don'r set any before you start. Read the Xorg configure guide

pah - documentation is for the weak!

momosh ln -s libstdc++.so libstdc++.so.5

that sounds like a really bad idea

Whats the worst that can happen? segfault? then remove it

emerge libstdc++-v3 maybe?

Roobarb Trial and error works too - eventually

yeah, breaking stuff is usually the worst :-)

will go for the merge option

can I run 2 emerge same time, or is it a bad idea?

you can, but with one cpu or core, it will slow down badly.

ok

Ketarel around?

sup

Jell-O-Fishi: around?

I got the gentoo live cd running.

congrats!

have everything installed?

No

which drive are you installing it to, your 1st or 2nd?

2ed

should I use MAKEOPTS="-j3" for a dualcore system?

yes
or -j4 even

alright, just follow the handbook, make sure you install boot to hdb1, swap to hdb2, and root to hdb3
lemme know when you get to 'configuring the bootloader'

Do I need to get connected before installing?

…aren't you connected right now?

No
I'm on my laptop

:O, yeah you're going to need a decent net connection if you're doing a minimal install

what is must install for baby  create new process from two parents
?

luigiman, the cd has irssi, so you can get here from the box you are installing

Except…it's not connected to the internet.

you said you had a dwl-g520 right?

Yes

i'm 88% sure that the drivers on the livecd will work with that card

luigiman, You will do better with a minimal install but that needs net. Good luck with your networkless install
Ketarel, The liveCD has wireless net drivers now ?

I believe it did when i installed gentoo with it :O

Ketarel, I installed with 1.4rc4 last time I installed

how can i get support for my mouse in the console? thanks

So how would I go about doing that?

gpm

thanks

hi here

hmmm
i might be thinking of backtrack2 then

somehow, i lack a lot of apps in my kde menu and menu updating tool doesn t helps
any idea ?

can i used multiple emerge commands at the same time?

is it possible to put your box on the net?

luigiman, Boot with knoppix, use ndiswrapper and install gentoo

madwifi-ng will work fine with his card
i recomend that over ndiswrapper

Nothing easier?

Ketarel me too

you could download the live DVD

Ehhh, I have no dvd burner though.

Hello! Can somebody please tell me from where can i get revdep_rebuild, i emerged gentoolkit but still i do have that specific command.

you might be able to load wifi drivers onto the live cd.. i've heard about making fake portage packages that will work that way

Hello! Can somebody please tell me from where can i get revdep_rebuild, i emerged gentoolkit but still i do not have that specific command.

Would it be possible to download anything here, put it on a thumbdrive to use on the other computer?

teach Myelin repost

If nobody responds to your question in a channel as busy as #gentoo you should rephrase the question. Maybe the original question doesn't quite make sense, or maybe it's too long to simply scan and reply. Whatever the reason is, just reposting the same question will probably get you the same answer (no answer).

sorry!

That doesn't sound unreasonable

revdep-rebuild … dash, not underscore

oh!
lol
Thanks.

Myelin its - not _

could the lack of swap with 256MB of ram be the cause of random lockup?
oops hello

GNUtoo, no

NeddySeagoon, so what could it be?

Okay, driver is installed now… ndiswrapper -l shows the same ####:#### device installed as lspci -n

GNUtoo, a hardware issue, thermal problem, or maybe a driver problem .. e.g. nvidia=drivers

What should I download?

NeddySeagoon, could it be the ram(badram)?

luigiman follow the handbook http://www.gentoo.org/doc/en/handbook/index.xml

NeddySeagoon, and the computer has only the radeon driver(free software…so)

GNUtoo, yes - it may be the RAM. Try memtest86

NeddySeagoon, ok thanks

GNUtoo Do you see more lockups when emerge is running ?

hi.. i need help configuring my X .. i am not able to get a resolution of 1280×800 on my Compaq Laptop with gentoo.. though it worked with ubuntu 7

NeddySeagoon, i didn't try emerge on it

i tried using 915 resolution thingy too but no use

GNUtoo, ok, test the mem and see what happens

NeddySeagoon, ok thanks

can ne1 guide me wat to do ?

cyberjockey https://forums.gentoo.org/viewtopic-p-3276263.html#3276263

i cant get my joystick working loaded kernel modules and stuff but i dont get any /dev/input/jsX device file :/

That question was more towards Ketarel for help getting my wireless card to run.

thanx NeddySeagon .

luigiman, Sorry.

madwifi-ng
madwifi-ng-tools, and wireless-tools
Though I have my doubts as to wether or not you'll be able to install anything without stage3

Can't find bcm43xx wireless support option in kernel config.

davf, press / to search.

thx

The easiest way to get gentoo installed is by hooking your box to the net
If it's just a matter of the router being in another room, get yourself a good 50feet of cat5
or move the box, or move the router

I'm lost as to where I need to edit anything now.
NDISWRAPPER has my driver installed. I confirmed this with 'lspci -n' and with ndiswrapper -l
When I preform a 'iwconfig' I'm seeing eth0 - no wireless extensions

ok, I'm in wireless lan drivers (non-hamradio) and I don't see bcm

I actually installed my gentoo wirelessly too, but i had my router set as a wifi client and hooked the wan to my machine

but search says it's there

Nodlain, now you can use net-setup to set everything up

I need to exit my kde session right?
Cause in root konsole 'net-setup' isnt recognized

Nodlain, No … open a konsole and do sudo su - to get root

I'm in root.

Can a dev put the new ff on portage?

why was FF dowengreded?

what you mean dowengreded?

[ebuild UD] www-client/mozilla-firefox-2.0.0.4 [2.0.0.5]

Nodlain, do you have roots environment ? net-setup is in /sbin I think

o.o I just synced my portage.. didnt update it

takes so long to compile up and down
just supgraded yesterday to 2.0.0.5

lol, my sbin doesn't have net-setup. I don't think it was emerged. It worked with the LiveCD but its not working now that I'm booting off my HDD

OH it gave a error.. digesr failed

Nodlain, Ah sorry - net-setup is not on your own install
Nodlain, you need to put your wireless settings in /etc/conf.d/net

Any idea what syntax and params I'm looking for?
Or is there an auto/dhcp format?

actually i do see the digest error here too

How do I file a 'Digest verification failed' error?

just ask a dev to digest again

s/file/fix

lemme chekc the repo, might be fixed already

Nodlain, the ones from wireless.example or from the wireless chapter in the handbook

Found the wireless.example just now

Is it possible to make tcpdump output the packet data?

Nodlain, http://www.gentoo.org/doc/en/handbook/handbook-x86.xml?part=4&chap=4

bad magic number
SB validate failed

Wireless Lan drivers (non-hamradio_ & wireless extensions does not show BCM43xx wireless support and netdevices=y and net_radio=y

hey. upgrading from 2.6.18-2.6.22 makes kernel unableto boot my root partition (ext3).. booting 2.6.18 again works fine.. compiled .22 by copying the .18 .config file and doing make oldconfig, and going with the defaults all the time.. any ideas?

where can I manual change kernel config

davf, in /usr/src/linux
do make menuconfig

/usr/src/linux/.config

go into /usr/src/linux and run "make menuconfig"

no… isn't showing the bcm options
says it's there but won't display.

lucas123 thats quite a diefferance in kernel version, u need to actually read through things

guys

tdr, I did read trough all the options. turned out what they picked as default sounded best host for me.

anybody can tell me what do I need to emerge to get the pecl-uploadprogress extension ?

in the kernel config if i set something to be compiled as a module does the system autoload it on boot or do i have to manually load it through terminal?

make modules && make modules_install

anyone here who knows a bit about qmail?

yeah i know that part

i think if you set up auto module loading, it'll load those

i'm having issues with sending mail
postmaster@venice.venice:
Connected to 208.69.32.130 but sender was rejected.

yeah i emnabled that

then it should autoload.. at least mine do

cause im setting OSS to be included in the kernel and ALSA to be a module
OSS is the only one of th two that supports my card

I'm reading but not comprehending my options for automatic detection. In their examples they are saying you enter you SSID, your KEY, etc.. I don't know any of those things.

anybody can tell me what do I need to emerge to get the pecl-uploader extension ?
( http://pecl.php.net/package/uploadprogress )
or how could I talk to some devs to include it ?

Pay me $50 and i'll have it included by the end of the week

lol

Ketarel, I can live without it thanks anyway ..

hi, I plug my usb pen in, and it's there in dmesg, but not in /mnt/ or /dev/ or anything, where would it be by default?

is there anyway to move the var directory (if it's on another directory) to a different location while the system is still running?

jef`: http://gentoo-wiki.com/HOWTO_USB_Mass_Storage_Device

adeel_n you mean like a partition mounted as /var or something?

tdr, yeah

jef?: "/dev/sda" or something like taht

moving it while running could potentially be bad. why can't you just boot from a livecd and move it?

adeel_n, rsync your old /var to the new location then mount the new location as var

tdr, i don't like the way my dedicated server is partition (nor do i like the distro) so i want to migrate it to gentoo while it's live
vertigoacid, well the box is 140 miles away
tdr, could i just do a 'cp -a' or does it have to be rsync?

adeel_n um, chaning distros while its live can be interesting, depending how things are paritioned
adeel_n, rsync is what i use, but cp should be ok i gues

tdr, oh i know…the partitioning scheme sucks…the guy has made 8 partitions, each randomly sized

is there a gensplash patch for kernel 2.6.22??

tdr, yeah i'm not too familiar with using rsync

you'll want to turn off any non-essential processes, especially mail, mysql, things that write to /var often

Nodlain, you make them up. They must be identical at both ends of the radio link

adeel_n rsync -a old_place new_place

vertigoacid, i've done that…but i have forgotten what the redhat equivalent of 'rc-status' is

I would just grep ps, and kill kill kill

Thats assuming that I'm the owner of the wifi though.

I'm having a weird issue with X on my new install. This is the first time I've used an LCD, and the first time I've use a wide-screen, so that may have something to do with it. I've followed the directions in the X and nVidia HOWTOs on the gentoo.org website, but when I try 'startx', the screen blanks with a cursor in the upper left, and displays nothing. Inspection of /var/log/Xorg.0.conf after rebooting shows no (EE) entries. any thou

If I wanted to goto joe schmo coffee shop and use their wireless, that means I'd have to reconfig my file and they might not be capable of providing the information

NeddySeagoon, hey ..

vertigoacid, yeah i'm doing that but by stopping processes using /etc/init.d rather than just killing them

is there a gensplash patch for kernel 2.6.22??

Do you have your exec startkde in the ~./xinitrc file?

I just tend to go the violent route also, if lsof is installed, check it out to see who has what files open on /var

I allready have that stuff in my kernel…

anyone else having problems with X and a usb keyboard/mouse ? mine will randomly stop functioning after like 5-10 minutes, and will only start working again when i replug it in

65-bit.

hi

vertigoacid, i checked for lsof, not that lucky unfortunately

Modlain, I have not yet instaled kde, as I wanted to be sure the X server hosting was working first. DO you think that going ahead and installing it will help?

because 64 just isn't enough? ;-)

The startx thing with the blank screen with a cursor is a good sign assuming you don't have kde yet.

bonsaikitten, NeddySeagoon .. how can I talk to one of the devs to include the pecl-uploadprogress extension in gentoo ?

I was on that step about 4 days ago. After that I installed KDE and editted the ~. file and I was good.

bonsaikitten, haha'

the what for what?

The impression I got from the HOWTO was taht I should have expected a twm session. To be clear, though, the cursor was not a mouse cursor, but the understroke text cursor.

yes, that's what I would expect as well. don't know what nodlain is talking about….

I'd kinda want this pecl extension ( http://pecl.php.net/package/uploadprogress ) included in gentoo ..

Anyone know abot linux on the PS3? If I install linux hosting on a PS3, can I still play games?

or a way to include it in my instalation and not needing to compile my own php everytime there's a new version ..

When you said cursor in the upper left I wasn't given the impression of a cli cursor. Ya that doesn't sound correct to me.

that's just how it works with php webhosting extensions, unfortunately. at least it's not a hard compile and install

Its normally suppose to give a black black/white screen with an X for your cursor

vertigoacid, yeah .. but why not include it in gentoo ? it's pretty neat !

Nodlain, that has been my experience in the past with CRT monitors and 4×3 screen resoluitions.

I'm trying to make a local fileserver and make something like gmail's attach .. with a progress bar for each file

sure, I agree. e-mail the maintaine
can you paste your xorg.conf somewhere?

did .. wondering if there's anything else I need to do ..

i love how this guy decided to put the root partition on a logical partition

i would strongly doubt it since you are replacing the existing OS

well that's assumidly why "this guy" isn't there anymore, and you're in charge

I'll root your logic partition…

vertigoacid, haha well he's still there actually….this is a dedicated box being hosted for me

nothing wrong with that …

bonsaikitten, nothing explicitly wrong, but it does make life much more difficult

you finally get wifi working all the way this morning?

I'd be glad to, just as soon as I figure out how to make BitchX do that. I'll need a moment to dig through the manual.

why?

BlackBishop, ask in #gentoo-dev-help or post a bug

after 3 recompiles, yep

awesome

got my audio working too
it's been a good day for me

does anybody know why my layman -L fails .. i get * Failed to update the overlay list from: http://www.gentoo.org/proj/en/overlays/layman-global.txt
* [Errno socket error] (110, 'Connection timed out')
even know i can lynx http://www.gentoo.org/proj/en/overlays/layman-global.txt
its like its using a proxy or tring to but i cant see where its getting the proxy settings from

/etc/make.conf ?

hi, it's possible to do fix colors using | less? they disappeared…

no, pipes can't handle colour
err what? :-)

bonsaikitten| it all looks normal

hey.. sorry, Im using fedora, but I think you guys are the only one that may be able to answer this… I upgraded mdadm, and SELinux prevented somethings from beign updated… I reset, and now I get "fsck.ext3: Invalid argument while trying to open /dev/md" I need to get this drive to boot… anyone PLEASE help, this will be a multi-thousand dollar problem if I loose the array

slowly giving up on Gentoo.

thnx

wow, that's bad

bonsaikitten, I have a lil' nat using the gentoo box .. but the router's cacti shows that the traffic is pretty shaped at 8 M .. and I have a 15M line ..

that is amusing

bonsaikitten, not for me it isn't ..

I'd guess network settings are limiting it

bonsaikitten are you saying this problem is not able to be fixed?

GreenJelly_linux| i would get the computer to a shell

_matt at shell

selinux and fedora … a nice optimistic combination

yeah .. but where ? I know I enabled some "QoS" stuff in the kernel ..

i connected my joystick with the gameport on my sb live pci, loaded kernel modules (emu10k1-gp, gameport and adi (for logitech joysticks (including mine))), lspci finds my gameport, modinfo tells me everythings fine but i simply do not have a file like /dev/input/js0

GreenJelly_linux| it looks like its not setting up the raid when its booting, i would manually put it together with mdadm

Hello, I seem to have broken emerge( and alot of ther commands) it stops with a trace back where it tries to import alot of .py files and then says the list object has no attributes. Is there a quick fix to this?

no options for bcm43xx in menuconfig

it seems to be everything fine, beside the missing dev files

GreenJelly_linux| what does fdisk -l /dev/md0 say ?

isn't there a js module or something?

GreenJelly_linux| i'm guessing md0 is this raid

joydev and adi

can someone help me? i asked like 50 times over 2 days
i cant get working firefox-bin on amd64, dunno why

so use firefox 64bit

no flash

_matt I got md0, m1, md2, and md3… 3 is the raid 5 array, and is the only one not building

adi is for my stick, and joydev should be loaded too i think

nspluginwrapper

no flash

@ troxor

nspluginsucks is lame

have you asked #gentoo-amd64 ?

it dont works

there's a depedency that you need for it to appear that is unobvious
softmac support, IIRC

/query

every 3×2 the flash is broken and i need to restart firefox to view the flash

x86_64?

Fieldy, nope, but doing now
yea

yeah. plugin wrapper just is buggy

what is Tetex? does anybody know what it is?

hm, dunno then

_matt fdisk -l /dev/md3 says nothing

its even worse to use it, because i waste too many time restarting the FF

hmmm….if i mount the new var location, i still can't unmount the var partition….i'm doing this….'mount –bind /usr/var /var'….'umount /dev/hda2'

GreenJelly_linux| can you run mdadm –detail /dev/md3

what if you redownloaded the portage snapshot

so, either set up a 32-bit chroot for firefox, or reinstall back to x86, cuz there really aren't very many reasons to run 64-bit right now

or stage3 tarball, depending on what you broke

oh ok, duh, I'll try that.

but if i run firefox from a 32bit chroot, it will waste lot of memory

GreenJelly_linux| i dont have a pc handy with mdadm installed lol

rebooting the system isn't an option?

_matt it says md3 doesnt appear to be active

Seems to be everything emerge related, revdep-rebuild, breaks as well.

no KVM over IP, I assume?

because it will open the needed libs by firefox again

tetex is a tex distribution, which is a typesetting system

you really don't have a choice, since adobe hasn't made a 64 bit version

GreenJelly_linux| sorry i ment use detail on one of the drives that was in the array

Hi. Can anyone advise me… I want to use LVM for most of my /usr, /var, etc… but NOT my root and /boot. However, I'm not sure if I should put my swap inside my LVM.. Can anyone advise? Is this a good idea?

vertigoacid, I can reboot the machine, that's no problem…no kvm over ip though

but i just want firefox-bin installed and working

but these are good issues for #gentoo-amd64, you'll find more people there that can help you

GreenJelly_linux| do you know the order of the drives in the array ?

well, change fstab to new loco and reboot is what i'd say

bonsaikitten, well i wanted to install postgresql and it now installs it too

if you have enough ram, you probably won't need swap

vertigoacid, i thought about that…but will everything work?

USE="doc" I guess

Ravenlost swap inside of lvm doesn't matter

bonsaikitten, i do it

troxor, I got 8G of ram and I still think I'd need swap

swap is not a bad thing to have even if you "don't need it"

_matt yes… md0, md1, md2 are all sda,sdb… md3 is sdc,sdb,sde,sdf

cross your fingers? that's why I mentioned kvm. I've had /var fill up on a BSD system and it still booted, unhappy, but I don't know what will happen on gentoo if /var is just missing

Well, if you spread the volume across a couple of disks, you could get a small speed increase.

When your computer boots and asks for username/password. You use startx - to enter KDE right?

GreenJelly_linux| mdadm –misc –examine /dev/sdc

you probably don't do "normal, everyday" computer use then

vertigoacid, well this is centos machine still…i'm in the process of making it gentoo

Just got 1 disk… 320G

bonsaikitten, i mean database hosting with postgresql support itself only like 11mb. Tetex is 101mb

_matt md0 is swap, md1 is boot, md2 is /

vertigoacid, I found softmac mac support but not iirc.

troxor, ofcourse not

and I have 1G of ram…

vertigoacid:I could FTP it somewhere, but I don't see a way to copy or cat the xorg.conf into #flood or anywhere else.

ok.. Ill just create a small 512M swap inside LVM… won\'t matter.

there are comandline pastebin utilites. the name escapes me

no md superblock detected

thx fellows!

vertigoacid, wgetpaste
( one example )

you're trying to have x run each boot, yes?

3 wgetpaste (doesn't need ruby)

I admin boxes with 80gb of RAM and swap is needed, stupid Solaris.

GreenJelly_linux| humm

Honestly I got KDE setup about 3 days ago. And I just preformed my first reboot and I forgot how to get into KDE. I thought it was 'startx'

so have a look at useflags

GreenJelly_linux| what about the other drives that should be in that array ?

slacker_, bleah .. I like gentoo better
but still .. i don't get why it's limiting the nat users to 8M

number of USE flags is getting kinda crazy here

( bandwidth I mean .. )

oh. well, yeah, startx should work as long as you either have your wm chosen in /etc/rc.conf, or you have exec startkde in your .xinitrc file

are there plans to change this?

why?
just needs saner defaults …

bonsaikitten, i guess i have to install it because i checked all the neccessary flags

GreenJelly_linux| when the kernel boots it reads those superblocks to work out what drive should be where in what array

all of them say the same thing

I have the 'exec startkde' in my .xinitrc file - however I'm sitting at a black screen with my X cursor.

emerge -pv –tree — nice little helpre
helper*

GreenJelly_linux| what about a drive from another array
like the swap

i would expect them to grow over time but yeah it can become burdensome if you like to really keep things under control / your way

bonsaikitten, ok thanks a lot

unless other people on this machine will want to run something besides KDE, I prefer putting XSESSION="kde-3.5.7" in rc.conf

it workeds, it re-wrote everything though like my users and root password and everything, nothign i cna't fix though

GreenJelly_linux| ohhh i know why it might not be showing the superblock
GreenJelly_linux| the superblock is probuly on the partition and not the drive
GreenJelly_linux| try sdc1

_matt ok… the drives show up, but your command was slightly off… all except the last drive, which was not shown and requires a special module for the controller

GreenJelly_linux| lol ok

Well its just me at the moment. And I'm wanting to just get back into kde gui

_matt you need to put mdadm –misc –examine /dev/sdc1

GreenJelly_linux| lol ok

well at certain point i run into stuff needing other stuff to be built with another use flag, so i end up rebuilding a fair bit

I have not made any modification to the initrc file.

_matt the drive array and all the drives show up but that last one

GreenJelly_linux| yea i forgot about partitions

sorry, after almost 9 hours of messing with gentoo. I'm pretty sure it's not for me. Maybe after I make my own distro I'll try again.

hehe, you optimist

for example why would someone build a system without ssl?

_matt even without that drive I should be fine….

bonsaikitten

why waste space for ssl? ;-)

GreenJelly_linux| yea was just thinking, it should still start

9 hours isn't that bad, that's not even a weekend

it'll take more time, but if it makes you happy …

ye, it does make gentoo quite handy, but still

GreenJelly_linux| what does cat /proc/mdadm say ?

heh at wasting space for ssl

Yes but after 2 hours simply trying to figure out how to find bcm43xx in the kernel menuconfig!

_matt no such file or directory

argh, that is one of the most evil drives

I just did an emerge –sync and then update and it broke everything again.

drivers*

Slow progress i'm ok with but not no progress. This should be easy.

emerge kdebase *Zzzzz*

do yourself a favour and buy yourself some real hardware ;-)

The menu says it's there but it's not!!!!

GreenJelly_linux| sorry, /proc/mdstat
lol

bonsaikitten. now now!!!

did you read what I said before?

I don't want to buy hardware for software.

i could imagine standard sets of use flags

vertigoacid yes, I asked you about iirc

if I remember correctly

cant find iirc or llrc which ever it might be.

gimme a second to pull up my kernel config, I run a bcm43xx

many thanks!!!

I'm just saying that some hardware is very painful and should not be used

NET && NETDEVICES && PCI && PCI && IEEE80211 && IEEE80211_SOFTMAC && NET_RADIO && EXPERIMENTAL

How do I resolve this?

shows the first 3 raid arrays, but not the 4th
_matt

make sure you have all of those enabled or as modules, and it'll magically appear
I think softmac is probably the one you're missing

Or more specifically, how do I make the output of 'startkde' slow down so I can read it in the terminal?

GreenJelly_linux| what happens if you try to start it
GreenJelly_linux| mdadm -S /dev/md3

somefiletoread

GreenJelly_linux| ok thats stop
GreenJelly_linux| -R

yea
hehe
just about to say that

Permission denied

Speaking of raid, is mdadm better than dmraid?

ugh,,, how can i xlate those into menu options vertigoacid

are you in a directory that you have write permissions for your user?

GreenJelly_linux| i dont have mdadm here, having to search the man page online lol
mdad –misc -R /dev/md3

yes, mdadm is teh best

those are menu options. hit / and you can search

n3kl mdadm is nice

_matt when I try and start it, it says the same thing it did before…

whats that

Was in wrong directory.
The lines are not outputting to a file

_matt Im wondering if somehow MDADM service got started before my hardware drivers

GreenJelly_linux| what does it say when you try to start it ?

Would a DCC SEND do instead of a paste?

_matt "fsck.ext3: Invalid argument while trying to open /dev/md3"

humm
it shouldn't say that

_matt it doesnt exist in google

for some reason its tring to run fsck on the raid when its starts

I suppose so, but you're assuming I'm an expert. it's better to have everyone be able to look at it. if you send it to me, i'll paste it for you, how's that?

starting a raid should just create a /dev/md block device and not touch it with any other apps

vertigoacid there is about 1000 things that have net.

vertigoacid:That would be great, since I can't seem to paste it at all.

_matt wait… this message states says something differemt

GreenJelly_linux| what does dmesg say ?

don't worry about those net ones, I just posted the whole dependency

mdadm -R /dev/md3 gives error mdadm failed to run array, invalid arguement

where is EXPERIMENTAL.
found it

Oh, you have got to be kidding me.

unregistered so you can't send a file?

GreenJelly_linux| you where saying about a controller card needing a module

vertigoacid:Precisely so.

GreenJelly_linux| did you modprobe it ?

rocketraid 3200 yes

GreenJelly_linux| so the harddrive device appeared ?

I'm sorry vertigoacid but what about PCI you have that in there 2x

that's just me copy/pasting poorly, sorry

_matt wait, what is modprobe

This isn't making any sense…

GreenJelly_linux| modprobe loads modules, like loading hard ware drivers

KDE was working perfect, I restart machine, log into my user in terminal. StartX and it just sits there….

_matt I have a feeling that updating the mdadm put the raid array ontop of the module… is this possible?

GreenJelly_linux| erm.. that dosn't really make sense
you cant put raids on modules

_matt I can put drives on a sata card that requires a special module to be loaded
http://www.highpoint-tech.com/USA/bios_rr2300.htm

vertigoacid, do you perhaps know another cli IRC client I could switch to that might make this possible?

i guess its sdf your looking for /

_matt yep
_matt thats the missing drive

GreenJelly_linux| ok

did you install anything?

I use irssi and nothing else

_matt the one that is on the rocket raid card

do you know what the module for that card is ? cus i dont lol

you couldn't get wgetpaste to work??

I installed multiple things while I was in the KDE gui. But nothing said it required a restart.

it might be hpt374

check your /var/log/Xorg.0.log

GreenJelly_linux| try modprobe hpt374

If I 'startx' from terminal I get black screen with mouse cursor(X cursor)

vertigoacid, I must have missed the reference. Let me see.

No EE in my log

_matt the link I gave you has the driver way at the bottom… I have a special setup procedure someone made me, that I recorded… can I sent it to you in private chat?

you meant grey window with X cursor?

where are the mouse pointers stored? I want to open one in gimp

grey/black - its a dark screen

do you have a .xintrc in your home dir?

GreenJelly_linux| sure

(not to edit, I just want to add it to another image)

ls ~/.xinitrc

Yes, and it contains 'exec startkde'

wonderful

Update… my 'startx' finally errored out.

ah
lol, im scratching my head

FINALLY!!! I went through each wireless device driver and changed * M off and magically Broadcom appeared.

AUDIT: client 1 rejected from local host - xlib conntection to :0.0 refused by server - xlib no protocol specified - .. - giving up - xinit: unable to connect to x server - waiting for x server to shutdown - xinit: server error - xauth: error in locking authority file

Is there a way to move the info tty (or whatever it is) from tty12 (or whatever) to tty8 (or whatever)?

o.O

Ya… you're telling me

is there a way to print out the filesystem stats….e.g, block-size, journals, etc ?
it's an ext2/3 fs
n/m, just found dumpe2fs

I need to copy the contents of a harddrive that is developing bad sectors at a rapid rate to a new harddrive, can someone suggest a good method to do this or recommend a HOWTO that I can follow for this?

mluser-work: what's wrong with dd?

vertigoacid:How would I accomplish the paste from within irssi, then? I'm afaid I've never used it.

it gets stuck on the bad sectors, and the new drive geometry and partitions wont be the same size

vertigoacid when I trie to emerge bcm43xx-fwcutter I get an error sayin bcm43xx-fwcutter has been masked by ~x86 keyword

mluser-work: I'd suggest rsync, but I think you'd need special arguments to pass it (I don't know which ones)

did it say anything about /tmp/.X0-lock?

I thought you were having a problem with DCC on your client
register your nick, ya lazy bum

I couldn't read any higher than what I typed for you. So nope

vertigoacid Is that what iit was asking for? I got the impression it was a website reg. My brain is really fried,then. Just a tick.

I've done this in the past by mounting the bad drive onto the new drive and using tar to back up directories, but with so many bad sectors/files I think tar will have a hard time archiving the old drive

okay
ps ax | grep kdm

0 grep –colour=auto

add the package name to /etc/porage/package.keywords

Anybody here every heard of or has experience with g4l (ghost for linux)?

guys, what are your recommendations for tghis option
"Use 4kb for kernel stacks instead of 8kb"

you wanted to load kdm at login right?

No, I can careless about kdm

not using kde as startx fashion?

I cannot even get into my kde gui

mluser-work: if it's borked enough to be getting stuck on the bad sectors, it's already too late for the most part

it shouldn't change much

I'm personally okay with username/password - startx - wait for kde gui to load.

well, i meant before your X sits there when you startx, did your system boot up with kdm?

no, I don't use kdm

okay, fair enough

vertigoacid what is the syntax

Computer starts and I'm presented with terminal login at the end of boot

xhost +

unable to open display ""

Unleet.
Oops

just the full package name w/o version.
so, add a line with net-wireless/bcm43xx-fwcutter to that file (create it if it doesn't exist)

vertigoacidid that work?

ps ax | grep kdm
again

0 grep –colour=auto

vertigoacid thx

killall -9 7076

umm, what?

and ps ax | grep kdm once more to confirm

that's just grep
running on the output

0 grep –colour=auto

echo /etc/portage/package.keywords creates or appends to file

how reliable are the kernels from genkernel?

Comments

helo all Im trying to emerege linux-headers-2621 Error is* This version of linux-headers does not support unknown

1 ; address for

he can exit, it solves it

sorry

use paste or anything else

i wanted to paste one large question
first time didnt know

*so it; **between

anyone here before setup a IPv6 router ?
im not doing anything
im not doing anything it must be reminansense
i pasted one big thing and got booted

_

i guess it slowly will add the rest

http://pastebin.ca

thanks

pinglo, use PASTE

typo

http://pastebin.ca/663516

Have you stopped?

i stopped once i have been kicked
i only pasted once and got kicked
i havnt pasted since

a client that does something like that without allowing you to /quit even has got to suck

no, mirc is awesome!

except your client automatically kept sending the messages when you rejoined

oooh
xchat
let me check settings
if i can stop it
hmm
it doesnt seem to have any settings i can change to stop that
but i have learned my lesson on it
sorry

use irssi
heh

xchat, like most tools designed by *nix for *nix hackers, allows you to shoot yourself in the foot if you want.

I think just letting the buffer run out before rejoining works

this is my first time using irc since 5 years ago when i stole psx games :P

HOw about turning off auto-rejoin. If you were kicked, stay kicked until you get things back under control.

except he didn't want to

i just want some help
ok

analogy, your car doesn't realize you don't want to hit the telephone pole, either

didnt know sorry everyone once again

TFKyle, well, they do let you shoot yourself by accident as well :P

anyone knows why pango wouldnt recogize the cairo_*_surface_create and cairo_write_surface_to_png (cairo is installed with X directfb glitz opengl svg use flags)

ah, agree with killing autorejoin if you've got it enabled, one of the stupidest features of xchat

one of the stupidest features of any client. how many times do you kick with the message "Please come right back in!"

config.log have any clues?

its automated cause if u get kicked chances are u are going to want back in
so they assumed

if you get kicked chances are whoever kicked you wants you doesn't want you to rejoin instantly and keep doing what you were doing that got you kicked

Yes but they don't make guns that kill everyone in your neighborhood if you try to shoot yourself. Well, not any a civilian can afford.

er, s/wants you//

in make.conf, when I set VIDEO_CARDS, shall I type just one driver name or can I do more than one (as I´ve seen on an example)?

I guess that's why the kick function usually has autoban programmed with it as well

TheProphet[S]: you can add more than one. but keep it to a minimum anyway.

VIDEO_CARDS="vesa fb nv nvidia" is perfectly fine, though wordy

DrChandra, thats just a matter of having people going through the right procedures when offing themselves; that is, dont shoot the whole neighbourhood before turning it to your head :P

but bots usually do the kicking in situations like this and they kick u certain amounts of time before ban or for stupid reasons like mine which i didnt know

you can't kick someone for a certain amount of time

I did VIDEO_CARDS=¨radeon ati vesa fbdv¨
I don´t know which one is going to be best for my mobility radeon 7500

TheProphet[S]: open source driver

TheProphet[S]: radeon (from the kernel)

the ati driver doesn't go back that far, and that's the earliest chip, well supported by now

omg - glits-glx seems to be broken

nice

undefined references to many gl functions

also do I need to do set the touchpad on INPUT_DEVICE? or just emerge the synaptics package?

hey, what if i screwed my partition with pvcreate /dev/sda5, did I really kill my partition, or I should just rewrite the partition table?

pvcreate will wipe any data that was in the partition, but leaves the partition table healthy

TheProphet[S]: add it, i've got it there on my config

thanks again

well, is it possible to recover the data from that partition?

still downloading xorg at the moment

now i hate autofoo even more

TheProphet[S]: if you know its synaptics, why not set INPUT_DEVICE="synaptics"?

forensic recovery, probably not worth your trouble

it was my windows partition

I was following a guide and it did not mention setting it up, only emerging the app

you're screwed, unless you have a second disk onto which you can install windows, and load some commercial utility to scan the first disk

^^ what kevincody said

recovery at this point, means scanning the disk sector for sector, and reconstructing windows' root directory.

anyone know why my ext2 partition would mount as read-only while trying to resize via QTParted on a livecd?

you're screwed, reinstall windows.

haha looks like i dont need windows any more

I wish I could say that as well

TheProphet[S]: i know it's a few $$ but i've had good results with win4lin
beats dual boot anyway
has noone else seen this rectangle-font crap?

can you run games on that?

TheProphet[S]: depends how heavy

or Arc-GIS

yep good q
like wow?

yeah, quite heavy unfortunately

i haven't tried it, i've been avoiding all those *crack style games

wow is cedega's best hosting supported game, should play flawlessly

yeah i'd go wine for something heavy
either it works or it doesn't

other not so popular games play poorly or not at all

tried and they don´t work

cool i will give a try

performance won't be the issue, i've done x-plane under wine and it actually performed better than windows

check winehq.org's appdb to see what works & what doesnt

the issue will be missing or misimplemented api calls
what iamben said

I guess I could make them work eventually but they would still be buggy according to appdb

TheProphet[S]: take that with a grain of salt, wine -intends- to achieve bug-for-bug compatibility with windows.
for desktop crap and lightweight games like snood, et al, stick with virtualization approaches; win4lin or vmware

I´m not saying I´ll give up of course

Anyone familiar with getting teh exterior volume control on a laptop to work?

Ramblurr, with?

depends on what laptop it is, some just work and some you have to fiddle around with.

And yeah, what Ehnvis said.:P

what's the hotkey for a full screen capture? (my menus are hopelessly broken)

I am having trouble getting my kernel to boot. Is this an appropriate place to ask for help?

I'm still in doubt wheter i'm going to install gentoo or not. I'm now running like 3 months arch linux host after a few months gentoo. Anyone who can convience me ?
printscreen ?

evert, hows arch?

it's just a matter of taste.

We're not here to convince you really, stick with what you like.

I've heard good things about arch.

i find arch quite good… Only there are some thing that won't work (but installing another distro to fix it is not that good i know)
yeah, but i've had gentoo for few months before arch and i liked it

I've heard good things about it too but I can't give up my USE flags.:P

only, that time i was still to 'linux newb' (it was my first distro)

i am trying to install gnome on gentoo and am getting the error SSLeay could not find a random number generator on your system then it says ERROR dev-perl/IO-socket-DDL_1.07 faild can anyone help

Depends a lot what you're doing with the distribution, for desktops I personally prefer Ubuntu. For servers, I use Gentoo *shrug* Everyone is unique.

Ehnvis: It is a toshiba Tecra M7

Well, I have just finished installing fglrx drivers for my gentoo systemm successfully, and will install compiz-fusion next, but I've been logging on as root because my user is not a part of sudoers. How can I add me or any user as a sudoer?

Hello, if I am an 'rsync user' as man portage says, can I run emerge –regen? it does more 'speed' to calculate dependencies?

How can I add myself or any user as a sudoer?

you can add yourself to the 'wheel' group and 'su' will work

take a look at /etc/sudoers

That depends on your sudo config. Usually you just need to add the user to the wheel group

Maybe, you can start in a 'single' mode a boot

What is the syntax to do that?

i am trying to install gnome on gentoo and am getting the error SSLeay could not find a random number generator on your system then it says ERROR dev-perl/IO-socket-DDL_1.07 faild can anyone help

I am having trouble getting my kernel to boot. Is this an appropriate place to ask for help?

What is the syntax to do add users to 'wheel'?

i think you need to activate the toshiba extras under acpi in the kernel.

as root, vigr

use scrot

What is the syntax to do add users to 'wheel', and what is wheel??

why did I do the minimal installation?

wheel is a group, read man gpasswd

scrot?

comes from BSD idea, that only wheel user can be root.

for screenshots?

So 'vidr wheel username'?

TheProphet[S]: minimal installation? of what? gentoo?

yes

no

gpasswd -a username wheel

What is the syntax to do add users to 'wheel'?

you edit a text file

TheProphet[S]: well thats how gentoo works. installs a minimum and then it's up to you to add the rest.

vi /etc/group and add it

TheProphet[S]: gentoo is all about customization.

ruben, scottDkoDer that's unsafe, 'vigr' is the right way to edit /etc/groups

it[ just taking a while to emerge all the stuff I need

yes, but vi works too

you really need to fire up man or google once and a while

or use gpasswd and it takes 2 seconds

yes it works. i forget why but you're not supposed to.

gpasswd is a command for that, read the manpage already

it´s*

then, us vigr (vi /etc/group)

rube: I am listed in that file anyway

TheProphet[S]: took me over 5 days the first time i installed gentoo to get everything i wanted in place

then you should be able to 'su' to get root

people who edit group and passwd by hand need to be shot in the foot

ahhhhhh, text

Alright, brb

I think that it checks the syntax etc, like visudo does, and rebuild some 'dependence files'

it would have been quicker if I was to install it from the DVD iso would it not?
I appreciate the fact that gentoo is all about customisation, that´s why I chose it for my laptop

I am getting a kernel panic when I try and reboot with my new kernel.

or one of the reasins anyway

what's it saying?

TheProphet[S]: not really, as those packages are "old" and you probably would end up with updating em

the first thing I notice that looks like an error is

reasons* pardon

Arg! Nothing follows me in the pipeline"

true

then it complains about not being able to find an init.

Nicias, sounds like it doesn't have the right root filesystem, or has no driver for either the root filesystem or the device it's on
recheck your kernel config options, or use genkernel, personally i'd do it by hand but that's me

I only wanted a basic installation of linux with Kdevelop, python and perl etc. and gentoo seemed the best candidate for my ageing laptop

o've done it before by hand.

got to go… case anyone was wondering, my font issue was due to an empty pango.modules file

tried genkernel and couldn't get it to work. maybe I'll give it another go.

would compiling time be reduced in non verbose mode? I use simple text console

I'm fairly certian I included the correct drivers for device and file systems. But i'll recheck.

TheProphet[S]:

what package do i install for XML-Parser?

scott is not in the sudoers file. This incident will be reported.

XML-Parser, with the capital letters just as i typed it

thanks

Is it possible to tell udev to ignore a certain module on boot and not load it?

to let a user use sudo, run "visudo" as root and add the user to sudoers

Ok, I will try that, brb

I just double checked and the correct drivers (afaict) for both the filesystem and the device are compiled in the kernel.
I've read some that with some devices and recent kernels devices can change from hdx to sdx.

you can always blacklist a module. but if its some network interface you dont want loaded at boot there is other ways.

only if you pick a different pata disk driver.

hmm.

That worked, thank you

Eh, a v4l device driver I've installed is acting up and likes to segfault and oops my kernel on boot.:P

I have a working kubuntu install.
of course it uses modules for everything, and I see the same driver I selected (ata_piix)
under lsmod

if your support is M and not * you will need an initrd

I have it as * in my config.

channel mode +c was no color, right?

Mirrakor, afaik yes

thx

any other suggestions?

which do you have, pata or sata?

I didn't buy the machine, it was assigned to me.
I am fairly certian it is sata.
I have this in the lspci
f.2 IDE interface: Intel Corporation 82801GBM/GHM (ICH7 Family) Serial ATA
torage Controller IDE (rev 01) (prog-if 80 [Master])

You could just open her up and have a look?

and you see it as what on the livecd when you're building? hda or sda?

hmm, it's a laptop.

modern kernels show them all as sdX

helo all. I'm trying to emerege linux-headers-2.6.21. Error is:"* This version of linux-headers does not support unknown. Please merge the appropriate sources, in most cases (but not all) this will be called unknown-headers." Installed gentoo-sources-2.6.21-r5. What's wrong?

I don't have the live cd handy..

did I ask you?

…..

I'm doing it from a Kubuntu install
and it's sda

ok. piix sata stuff USUALLY gets driven by the ahci sata driver, NOT the ata_piix driver…. please turn on the AHCI driver in your kernel.

Kubuntu will probably be detecting it using ide_generic though

SATA_AHCI [=y]
already on.

turn off the ata_piix driver

ok.

compile in the ata_piix stuff, not as a module.

it was astinus

which kernel version?

v2.6.21-suspend2-r7

When is the gentoo wiki going to be online again?

foo-nix: no idea, Gentoo does not run it.

foo-nix: /topic

foo-nix: google cache works fine

How do I use it?

foo-nix: site:gentoo-wiki.com search word

ok, now I have AHCD on and ata_pix off.

then click on the cached link

AHCI

thank you

while that is making I have another question.
how do I restart from a kernel panic?

should I add dbus to rc-update, is that a service that should normally be running?

Hit the reset button.
Ctl-Alt-Del might work too.

hmm.

Sysrq + B
if you have that compiled in

Kernel panics are pretty much final.
Compiled in and enabled from user space.

hmm. I seem unable to locate my reset button

As in /proc/sys/kernel/sysrq.

*nod*
Just hold down the power button for 4-5 seconds

Press the Power button for a couple of seconds.

hmm.

That should switch the system off.

I'll give that a try after I restart and the new kernel still doesn't help
I should be using sdaX right?

yes.

Depends. dbus can surely make using KDE or GNOME easier.

I use KDE at work and evolution (which has dbus flag), but I've never noticed any ill effects of not autostarting dbus. thanks

I want to make a shell script that starts screen, runs an app, detatches screen, and repeats.. any ideas?

ok.
brb (maybe)

Phenax, Think there are a couple bash guides on tldp.org. One is a beginning, and the other is Advanced

Write a screenrc for it.

well I think I'd run into the problem, that the app running in screen continuously runs forever

where can i configure tty's to turn NumLock on automatically?

as in, the bash script would halt there and wait for the applications termination

and check out screen's -dm options

And that's why I want to run it in a screen and detatch it..

Write a .screenrc that runs 'screen yourcommandhere' and use -dm

xwolf-: it should do this already if you have the 'numlock' service starting on boot

iamben I don't

I'm trying to install gentoo using the x86 minimal cd. When I put it in it does stuff, then it says "Could not find cd to boot". This computer will only work with ubuntu and debian. Is there anything I can do to get Gentoo on it?

thank you

Then install Gentoo using a Debian or Ubuntu boot CD.

teach RyanRyan52 alt install

alternate install: http://www.gentoo.org/doc/en/altinstall.xml

okay, thanks

This client is too old to work with working copy '.'

how do I install Gentoo using the Ubuntu cd?

as usual

teach RyanRyan52 alt install

alternate install: http://www.gentoo.org/doc/en/altinstall.xml

Start by reading http://www.gentoo.org/doc/en/altinstall.xml

okay, thanks

do i need discwrapper to get my wireless working on gentoo?

Is there any argument as to what to execute, or must I take the .screenrc way

it depends on your wifi card

man screen, search for -c

i have a linksys, WMP45G

no help.
the only difference is holding down the power button

try to see the gentoo documentation to check that
or the ndiswrapper home page

yeah
holytrousers:
do you know where i can get partition margic?

i will check that

im trying to partition my harddrive to dual boot linux and win

do you have any files on it ?

yes
i am currently using windows xp
and trying to get gentoo on it also

well, thanks for the help everyone. I guess I'll try waiting on the forums.

well if you have any pöersonal files on it
you will need something more sophisticated
like gparted

`screen command` would work as well, I guess.

you dont need partition magic, its not free and you will have to buy a licence

gparted makes a nice little livecd for this

what i can do/ [blocks B ] dev-libs/boost-1.34.0 (is blocking dev-util/boost-build-1.34.1)
?

remove the blocker and continue

yeah ? do you have its adress ?

ty

I think the output from emerge explained where to read up on blocking packages.

http://gparted.sourceforge.net/livecd.php

Funny how people tend to miss that.

i am getting an error while installing the install log is here http://pastebin.com/m61bb1edd can anyone help

rsk, but the emerge -C cant remove the blocker

what's the output when u try and remove it?

thanks !!!! That must be much better than booting from ubuntu and waiting 10 minutes just to resize a partition or reinstall grub

rsk, — Couldn't find '=dev-libs/boost-1.34.0' to unmerge.

one of his packages needs old boost, and one of his packages breaks with old boost (it seems)

emerge -vaC dev-libs/boost
emerge probably noticed a block on dev-libs/boost-1.34.0, not =dev-libs/boost-1.34.0.

rej, say that i have 1.34.1

so do you still want to use partition magic ???

?

Is dev-util/boost-build blocking dev-libs/boost, per chance?

i am getting an error while installing gnome and the install log is here http://pastebin.com/m61bb1edd can anyone help

Because it seems emerge wants to downgrade boost.

installing the masked package mysql-query-browser has called in an old version of gtkmm which conflicts with the newer gtkmm in use by other apps, any way to fix this without uninstalling mysql-query-browser?

rej, i removed
rej, and the blocked still

Are you still in a chroot installing Gentoo?

yes rej

blocks occur when you have the blocked software installed, AND when the emerge you are running is pulling the blocked software in as a dependency somewhere else

Is /dev bound to /mnt/gentoo/dev ?
What did you remove?

dont know rej how would i find out ?

rej, waht u say 1.34.0

Do `mount`.

ops
1.34.1

If /dev is not mount-bound to /mnt/gentoo/dev, then do `mount –bind /dev /mnt/gentoo/dev` (from outside the chroot) and continue with `emerge –resume`.

http://pastebin.ca/663603 Using this tutorial btw: http://wiki.gentoo-xeffects.org/Compiz_Fusion

Please answer this question: Was dev-util/boost-build blocking dev-libs/boost?
And the other question, was emerge trying to downgrade either of them?

ok rej i need some help with that as i am inside ubuntu installing gentoo

rej, i think yes for both

I have /lib/modules/2.6.18.2-34-default/updates/rt61pci.ko installed, would someone know how to continue setting up a wireless interface for my WMP54G v4.1 (witg rt61 chipset)?

Open a console (as root, and outside the chroot) and do `mount`. That should list all the mounted filesystems.
What could possibly make emerge want to downgrade boost-build or boost? Did you edit /etc/portage/package.keywords or change your ACCEPT_KEYWORDS variable in /etc/make.conf recently?

rej, nope

Could you pastebin the output of `emerge -vupDN world`, please?

is it possible to skip a single given package while doing emerge -uDN world?

rej /mnt/gentoo/dev dose not exist

with packages.gentoo.org down.. what was the other site to search packages? or was that affected as well?

Do a Ctl-C while that package is emerging, then do `emerge –resume –skipfirst`.

emerge eix

whats that?

rej, yes, well, i was hoping for something less 'sit beside and wait for the right moment' and more of 'go have a drink and have it fix itself' :P

what to use instead of a silly website.

The other site was gentoo-portage, but that's down for unrelated reasons. It's an unofficial user-run site and the owner knows but has made no comment as to when it'll be back.

that sucks
packages.gentoo.org isnt silly
its a nice site :p

I need help to finish emerging compiz fusion on gentoo. Can anyone help?: http://pastebin.ca/663603 I am using this tutorial btw: http://wiki.gentoo-xeffects.org/Compiz_Fusion

/j #gentoo-xeffects

Thx

Good News Everyone :-D

Then what are you chrooted into?

gentoo

What directory?

I made it to install my Wlan using ndiswrapper with Wpa_Supplicant

base of the file the root dirctory

Could you simply tell us the path?

Actually i tried to install it following the method indicated by the gentoo official documentation, but it didnt workout

"/"

the informations there were outdated

That's highly unlikely.

how is eix better than emerge –search?

rej, http://rafb.net/p/Tv37fy77.html

It's much faster.

many many times faster

maybe i should post it on the wiki but it doesnt work for me for days now

mnt has cdrom and floppy

weill it break my system like expat did?
oops, did I say that out loud?
sorry

eix generates a database and doesn't search the tree directly.

ohhh
I might try it then

OK OK. What command did you issue to chroot?

anyone knows how i can scroll up the bash console while in screen via ssh?

"ctrl a, esc" enters copy mode where you can scroll up

Ctl-A Escape

does "a is renamed by b" mean the same thing as "a is renamed to b" (if it doesn't mean that b carries out the act of renaming a to something else)?

ctrl-a, ESC or ctrl-a [

No, they mean different things.

thanks guys!

ok, what does "a is renamed by b" mean?

It means that B renamed A.

b was responsible for chaning the name of a

raj troughton-desktop:/media/hda7$ chroot $PWD /bin/sh

Highly off topic here, btw…

that doesn't make much sense in this case though..
yeah, i know, sorry :/

troughton_ is really going out of his way to not give the info you need, isnt he?

Good. Now, from outside the chroot, do `mount –bind /dev /media/hda7/dev`.
Ooops.
Good. Now, from outside the chroot, do `mount –bind /dev /media/hda7/dev`.

i am in an ubuntu instlling gentoo on another harddrive rej

I know that.

for a second i thought you had managed to turn an off-topic conversation on-topic in record time

What is the problem with that?

nothing just cant get gnome or kde installed
sorry sent the wrong comand to u it was chroot /media/hda7 /bin/sh

Er, yes. We've been on this exact topic for about twenty minutes, haven't we?
That's OK. I got the message anyway.

yes i know rej and i am sorry i am still lerning it is all still new to me and i appreciate your help

Hey what was the name of the file in etc that you edit to tell gentoo what windowmanager you want to use?

/etc/rc.conf

ah ok

Yet I think it's deprecated in favour of /etc/conf.d/xdm.

I'll check both

xdm starts the displaymanager which, in turn, starts the windowmanager?

Yes.

so what sort of remote admin tools besides ssh does linux have at its disposal
im in phoenix, my family is in virginia with a gentoo desktop i left them
they hare having video playback problems, and are horrible at describing them
how can i get a better angle on this
ive read about vino etc but its gotta be something i can walk them through or preferably attach to their session myself via ssh

Mark`: ssh can do that. Use X forwarding for instance.

yea but all my desktops here are windows
i have no local X to forward to

Mark`: Also, monitor `top` while they play a video. It might tell you what is eating system resources at the expense of video playback.

nah its really funky, ive been through all the settings
it happened when i did a big update to gnome 2.18
i guess they say the color is all skewed and off

Mark`: use an stunnel and VNC.

So I need help rebuilding my kernel.
Evidently, genkernel doesn't build apm and apci support into the kernel

i mean i read about totem and im figuring its a lost cause at this point
gxine shouldnt have changed at all
mplayer is decent still

Mark`: Try gmplayer.
Mark`: That's part of mplayer.

Mark`: I use MPD for music, if that's what you were asking
it's a good player if you like command line.

its my family, i left them with a gentoo desktop so i could manage it remotely and they couldnt screw themselves over with spyware
the plan has worked, but they arent very good at articulating problems
as far as kernels, thats easy
emerge gentoo-sources
make sure your symlink is at /usr/src/linux and is correct

Mark`: Users never are =P

i wish i saved some of my brothers descriptions

Hey, I'm a user too.

never tells me which videos, which containers, codecs, programs
etc
im guessing libsdl is just being gay and is the default
and if i switch to xvmc or just plain ol xv it will straighten up

Mark`: Mind your language, please.
Mark`: So what is wrong with xvmc?

nothing, i could probably fix it pretty quickly if i could see

you are blind?

my eyesight cant see 2500 miles =[

Mark`: VNC might help.

i wonder if theres an easy way to get vino running
without having to walk them through it

vnc?
maybe not an option if one of you is on dialup

both highspeed, there are some routers but i have access to port forwarding

VNC can work fine over dialup.

isnt there a vnc thing where there's a middleman, and can work even when both users are NAT'd?

hamachi

yeah thats the one

now im in ssh, ive su -'d to my familys account
how can i get vino running under their open display

Anyone have a guide to setting a new kernel up?
gentoo-wiki is down

the handbook is actually pretty decent, but it leaves some stuff out

DISPLAY=":0.0" vino

Mark`: Such as?

ahhh
its not going to list every option in menuconfig you need, but you can use menuconfigs help

cd /usr/src/linux && make menuconfig && make && make install && make modules_install

This is assuming I'm not upgrading my kernel, rej, right?
I am using 2.6.18. Is an upgrade worth it?

you can probably do zcat /proc/config.gz

Depends on what genkernel did for you.

and find your running config

while trying to emerge net-wireless/rt2×00-9999 i get this build error http://www.rafb.net/p/EDXHfR97.html . can anybody help it?

Mark`: I did that

raj thanks i have got past that error now it was i mis typed what u put but when i coppied and paseted it worked fine

Any way to enable apci/apm without rebuilding my kernel?

Nice.
And it's 'rej', not 'raj'.

hi folks
i have an issue with ALSA

ups sorry rej and your help with a new'b is much appreciated

already posted on the gentoo-users mailing list but no help arriving there

yw

I've never rebuilt a kernel before =\

i use the intel8×0 driver. today i rebooted after the holidays and i found no sound coming out. alsamixer shows that the master channel is not muted, but it has no volume control, and it is impossible to raise one

Run `alsaconf` again.

upgraded my kernel to 2.6.22, tried both modular and inbuilt alsa

when emerge builds apr-utils, it builds libaprutils-0.so.0 which depends on libexpat.so.0 which I don't have, thus applications linking against libaprutils-0.so.0 fail to load because of a missing library

teach wereHamster about expat

expat-2.0.1 has been marked stable. However, it is not ABI compatible with earlier versions. To successfully upgrade and fix any reverse dependencies (along with several other issues), run: emerge =portage-2.1.2.9 && emerge -n portage-utils && emerge -qep world | grep –color=never -oFf (scanelf -plRBF '%F %n' | awk '/libexpat.so.0/{print $1}' | xargs qfile -qC | sort -u; echo -e "libtool\ncurl") | xargs emerge -1

alsaconf always tells me that no card is found.

I am having problems with the sk98lin driver for Marvell network controller (8053). I have used the patch from marvell to install the module and load it, and now lsmod reports it up but i dont think anything is using it, and of course the internet doesnt work

but somehow the card is found, because it is recognized as such
and all apps seem to recognize it.

Are your ALSA drivers modules or built into the kernel?

rej, wow, thanks, will try

into the kernel
now

dmesg reports the sky2 driver trying to initialize the device, but it keeps enabling and disabling it

I don't think alsaconf likes that.

heh, I imagined that

It wants to pass initialisation parameters to the modules using insmod.

so I should try to recompile the kernel as modular and then try alsaconf?

Any way I can enable apci/apm without rebuilding my kernel?

Not the kernel, just all the ALSA stuff.
Yes, use menuconfig.

yes, that's what I meant
thanks a lot, i'll have a try
asap

do I still have to recompile my kernel?
or just enable it in menuconfig and reboot?

How come mplayer in gentoo makes funny noises playing .avi files?

Sorry for all the basic questions, I'm not familiar with my kernel.

After menuconfig has rewritten your config, you run make && make install && make modules_install, then you reboot.
Could you explain in more detail, please?

thank you

rej, I just d/l'ed a torrent and I play it in mplayer and it sounds like a broken record and it says header missing one byte

Which part of the kernel is apci in?
And apm.
In menuconfig.

power management, which is either on the main menu or in device drivers iirc.

Also, when I make menuconfig, does it erase everything else I've changed about my kernel?

no, it takes you .config and appends it.

Thank you very much, NightKhaos.
Should I enable both apm and apci, or just one?

depends, do you need both?

boob b00

if you're unsure, you probably have ACPI, but if you're still unsure, enable both.

I do not have APCI enabled.

abnerian
so we meet agian

alright, thank you again, NightKhaos
So we do.

acpi is majorly broken on my notebook

Be you friend or foe?

Please take that to /query.

what

Why does making the linux kernel use CC?

so.. what does it mean when a package's USE flags have % signs, *s, are in yellow, etc? where can I find documentation on what this means?

man portage

Because CC is an environment variable pointing to your favourite compiler.

I was here earlier with a kernel panic.

"man emerge", actually

several people offered advice.
which I took, to no effect.
I am now trying to see if maybe genkernel works.
I seem to have gotten farther with genkernel.
now I get the following kernel panic:

hmm well.. thought I had looked here.. guess I didn't look hard enough

I thought your problem was that the kernel couldn't locate the root fs.

/newmount/dev/console no such file or directory.
yes.
thats what I thought it was too.

Ah, silly me, I thought it was a program

then the same with /nm/dev/tty1
and then it complains about a bad console and give up.
its at least finding the right device.

alright.. so mebbe I need more help.. I am trying to emerge the latest version of kino.. looking at emerge -tpv output.. for kino.. it shows the use flag (-ffpmeg%*).. but ffmpeg appears in the dependency tree for kino.. how does that work?

since it gives a different error if I use /dev/hda4 rather then sda4.

Seems like a problem in your bootloader config.

I followed the handbook.

possibly it *requires* ffmpeg, ie, it's no longer optional

maybe one of the dependency's of kino is dependent on ffmpeg.

hi

hmmmm weird.. i don't see that on any of the other dependencies

to be honest… when it comes to stuff like that… best policy is, don't know, don't care, let it install anyway.

would the preceding - mean that it is disabled though?

in theory.

which exact kino version is this?

does anyone has the mail of the maintener of the xine-lib ebuild? (gentoo-portage.com is down)

ahhh i can't do that.. I need a little more control
still trying to figure out the best way to clean up unused packages and dependencies

but like as you understand, if a depenceny of it requires ffmpeg, it may not be optional for that said package.

the package's metadata.xml lists "media-video@gentoo.org" as the maintainer's email

pressing ctrl-alt-backspace kills X, and - in my case - drops me to kdm from xfce4 and logs out. Is there a way to ban this shortcut?

try -pv some of the depends… you'll find out what requires ffmpeg that way, and if you can, maybe you can disable kinos use flags.

ok, thx for the mail, and for the tip

but to be honest, if it is being pulled in, there must be a reason, unless the ebuild builders are slack.

yes, there was an option for your xorg.conf
look in man xorg.conf.. something like NoZap

looking at the ebuilds, it seems there USED to be an ffmpeg flag to enable/disable the dependency, but now the flag is gone and the ffmpeg dep is hardcoded in

ah, it's DontZap

Is there a package manager with a gui for gnome on gentoo like synaptic?

in other words, the kino maintainers decided you NEED ffmpeg for kino, period

alright so these operators aren't as straightforward as they may appear

Or can synaptic package manager be used in gentoo with gnome?

when there are more than 1, it is VERY confusing

there's porthole, it's GTK+ based

Have you used it or do you know if it is buggy?

i interpret (-ffmpeg%*) to mean this is force removed.. that change is new and it is transitioning from enabled
but it seems that it means the exact opposite heh

Will it break your system easily?

I can not see any relevant in xorg.conf in section InputDevices. "XkbRules" "xorg" option is marked with #.

i've used it a little, seemed fine but haven't used it a lot and it was a long time ago

Ok, thanks for the suggestion

it's an option you have to add, it won't be there by itself.. in the ServerFlags section, add this: Option "DontZap" "true"
if there is no such section, make it (Section "ServerFlags", then that option on the next line, and then EndSection on the next)
and of course then you'll have to restart X (or make it reload the config) for it to take effect

so.. just a little info
i unmerged kino version 0.7.6 then did another emerge -tpv on kino
the ffmpeg USE flag is completely gone but ffmpeg is still in the dependencies

like i said, the ffmpeg dep is hardcoded into 1.0.0 and 1.1.0

so.. perhaps the -% meant that this USE flag was removed.. not necessarily disabled?

just means it was removed, "emerge" doesnt know what dependencies changed as a result of that

or maybe it is a bug.. because the use flag was hardcoded.. and no longer optional it just thought it was a remove
yeah.. this still doesn't make sense haha

yes, -% means removed IIRC

can someone help me with a modified genkernel please. i kicked out things i dont need and now the booting output is totally skewed and orange. any ideas?

old versions of kino could function with or without ffmpeg. new versions REQUIRE ffmpeg.
its not that confusing, imho

if it's removed, that might mean (a) the functionality is no longer there or no longer maintained, or (b) the functionality is no longer optional

i understand the package dependencies
i don't understand the emerge output

there are no ebuilds to satisfy "=net-www/apache-2.0.54-r10"
wtf?

well, remember that a package can (and usually has) dependencies that are not optional and are thus not in the USE flags

me neither, really

(-ffmpeg%*) does not say to me, "this use flag was removed and is now hard-coded as enabled"

moved to www-servers

i think what its supposed to mean is "was disabled, now not a flag at all"
emerge does not try to investigate WHY the flag was removed, or what happened to the functionality tied to it

hmmmmmm.. okay
cept I had it enabled the last time I installed it
oh well.. maybe one day it'll make sense

I'm having blocked packages problem
Can someone help?
the =app-dicts/aspell-en-0.5* package conflicts with another package;

what's the other package?

I can't figure out which it is?

oh..

the =app-dicts/aspell-en-0.5* package conflicts with another package;
!!! the two packages cannot be installed on the same system together.
!!! Please use 'emerge –pretend' to determine blockers.

re-run your emerge command with -pv

please use emerge –pretend to determine blockers

dev-lang/php still expects a net-www/apache

Doesnt specify the 'other' pkg, trying to emerge compiz-fusion

hello

did you add –pretend to your emerge options and try again?

Whats the best AOL instant messanger client for linux?

localhost scott # emerge –pretend doesn't work

pidgin

Just says options usage list

MipsIr1, thanks a lot

or I could tell you that "the best" is a matter of opinion and you have to determine "the best" for yourself.. but nah.. just use pidgin

emerge –pretend compiz-fusion

Well that gave something…
ok

-p is short for –pretend.. -v short for –verbose.. should tell you exactly which package it is in conflict with now

[blocks B ] =app-dicts/aspell-en-0.5* (is blocking app-text/aspell-0.60.5)
How should I fix it?

unmerge aspell-en, continue

ok, thx

I did make menuconfig, make, make install, and make modules_install. I enabled as built-in APM and APCI. Typing APM still says "No APM support in kernel".
Why?

localhost scott # unmerge aspell-en
unmerge: command not found

emerge –unmerge

ok

where in the kernel is CONFIG_NET_RADIO ?

Any ideas, anyone?

ndiswrapper won't compile without it =/

you need to make sure your bootloader is pointed at the new kernel

press / and search for that, it will tell you

Where would the new kernel be?

iamben: It is working now, thanks

(in menuconfig)

I only rebuilt my old one

I did Liquid_Fire

I did not install a new one.

well "make install" puts one at /boot/vmlinuz
i prefer to just point grub at that

arch/(arch)/boot/bzImage

thats my problem

it's not finding it?

nope

maybe the option was removed

isn't there a file that explains all of the use files?
err use flags rather

"euse -i someflag"
part of gentoolkit iirc

ah cool.. thank you

or grep /usr/portage/profiles/use.*desc for the US flag

at least that still works
ahhh that's what I was trying to remember LF thanks.

So I point GRUB at bzImage now?

whats CONFIG_NET_RADIO

copy the image in /boot first
and point grub to that
oh, and before that mount /boot if it's on a separate partition

how do I un-emerge an ebuild without any action other than removing it from /var/db/ ? (a change in eclasses makes this old ebuild have syntax errors, or something like that)

Wait, what? I'm lost.
What do I do with the image in /boot/ now?

(1) mount /boot (2) copy the bzImage in /boot (doesn't matter what you name it (3) point GRUB to the just-copied file

(And where is Grub's conf file again?)

/boot/grub/grub.conf

how do I update my ATI driver?

emerge -u ati-drivers, if you're using the closed drivers

I don't have a bzImage in /boot, only in /usr/src/linux-2.6.18-gentoo-r6/arch/i386/boot

how many configuration options are in xchat?

are you serious with this?

No outdated packagesfound, guess I'm updated

Er, what do you mean?

he told you to copy it over
3 times

dev-lang/php still expects a net-www/apache

Sorry, I was confused.

OR just make install like i said and it copies it to /boot for you

as i said, copy that to /boot, though you can name it what you want (for instance, /boot/linux or /boot/linux-2.6.18 or whatever)

I need a spot of help - I have a Screen session running on a remote machine with an essential 20 hour process running on it, and I need to restart my local machine and log out of the ssh connection. However, ctrl-a key combo doesn't work with fluxbox/xterm, so I can't detach the screen session safely. Ideas? /msg me if necessary.

Liquid_Fire, so I can't update dev-lang/php

well, i'd say file a bug report if there isn't one, and add net-www/apache to package.provided temporarily to calm php down
just close the terminal emulator, it will detatch (if it's really that critical, test with something else first but I'm fairly sure)

Good idea, thank you. Will test.

What do I put for initrd line in grub.conf for my new kernel?

well.. if you haven't made a new initrd, same as for your old one

(Should I make a new one?)

depending on your kernel options, it may not even be necessary

Your suggestion re: screen session worked. Thank you again.

I just enabled as builtin apm and apci.
They were M'd before.

typically, if you compile-in exactly what you will need to mount / and start udev at boot, then the initrd will be unnecessary

if they were m'd before, why didnt you just load the module?

an initrd may also used for a splash image on boot, though if that's the only thing you're using it for, you don't need to make a new one

correct

i'd bet he's using genkernel, and thats why he has an initrd

that won't affect bootup success though, only appearance

I used genkernel, yeah
So an initrd might be unnecessary?
Alright. Thanks. I'll use my old one for now.
rebooting.

can someone tell me what i have to do to get /usr/include/asm/page.h?

maybe you want /usr/src/linux/include/asm/page.h

/lib/modules/`uname -r`/build/include/asm/page.h
but those may be the same, depending …

rej, I just d/l'ed a torrent and I play it in mplayer and it sounds like a broken record and it says header missing one byte?
I just d/l'ed a torrent and I play it in mplayer and it sounds like a broken record and it says header missing one byte?

Hi, what should I do if I want to have a certain include plugin to a program included as a package/ use flag, but don't feel experiences enough to create an ebuild myself? Write a bug, post in the forum, … ?

maybe someone would be willing to help with the implementation in #gentoo-dev-help.

Can anybody tell me why the avi files I just downloaded sound like scratches in mplayer? It says header missing one byte can anybody tell me what that means?

is the a kde-specific gentoo-dev channel?
*there

timotheus, some of those files get installed in /usr/include/asm/, so i guess there must be some kernel option so that page.h also get installed there?

no

ok, thanks

is there a gui for the info command?

try pinfo. it's a bearable alternative.

OuZo, try emacs M-x info
or info:/ protocol in konqueror

thanks

anyone knows which package contains XML

Comments

« Previous entries · Next entries »