Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - enki

Pages: [1] 2 3
1
Zaurus - pdaXrom / http://zaurus.spy.org/feeds/davonz beta feedback thread:
« on: February 07, 2004, 10:54:36 pm »
I guess I\'ve already stated this over and over in the chatroom...the snes9x LordDavon built based on the japanese sources is awesome, very fast! I need to check out some of the other packages as well.

great work!

2
Zaurus - pdaXrom / Gentoo For Zaurus 0.2 available
« on: January 12, 2004, 08:02:23 am »
the g for z environment is a great tool to help produce quality ipks for the cacko rom... at this time, given the nature of g for z, its not really pheasible as a total environment replacement... its just a shell right now. But I\'ve had success compiling a number of packages for the environment.. and with time and stabilization, I\'m sure it\'ll only get better

great work lekter!

3
General Discussion / The FCC has the manual for the SL-6000
« on: January 09, 2004, 10:40:34 pm »
you know, alot of these features are pretty exciting, but the one that really stands out, to me anyways, is the usb host... very interesting stuff if you ask me...

i like that its got the pxa255 ... but given that sharp is actually moving backwards with their screen quality (compared to the 7x0 series), i think ill continue to use my c760 for a long time, until the next generation of linux pda\'s come out, anways... faster processor, integrated wifi/bluetooth , usb host and all that standard... plus more ram and a faster bus... which the 6000 doesnt seem to do much about, except for the 6000D which has an extra 64 megs of flash, putting it on par with the c760, but no wifi/bluetooth...

also, i didnt read the specs, but whats the outlook on this thing\'s wifi range? one can only hope for an external antennae mount, but who knows...

the sl-6000 is pretty sexy, but i thing im gonna be stickin with my 760 for awhile, given teh reasons above, until something that REALLY justifies me dropping another 700 dollars comes along

just my editorial opinion on the matter, though

4
Zaurus - pdaXrom / Adding a user
« on: January 05, 2004, 10:51:55 pm »
hmmm ollie... ive never encountered anything like that... the way i usually do it is i first add the user with no passwd, as in the manner i described above... then i log in as the user, and just do \'passwd\' with no follow username ... and im able to change the passwd and log out then back in just fine...

sorry for the late response, i was on vacation

5
Site Suggestions, Requests, and Updates / new forum posts box?
« on: January 04, 2004, 06:48:30 pm »
one of my favorite site features here at ZUG is the \"last forum posts\" thing at the top of the homepage...

would it be possible to implement this along the left-hand side of boxes as an option for users who would want it? i say left-hand side because that way itll stay there even when the user is browsing the forums...

just a thought, thank you.

6
Zaurus - pdaXrom / Portage (gentoo) for cacko X11
« on: January 04, 2004, 06:43:34 pm »
ack, above guest is me

7
Zaurus - pdaXrom / Portage (gentoo) for cacko X11
« on: January 04, 2004, 01:17:56 pm »
wow, sounds like some really fascinating stuff, lekter... im definately gonna have to look into implementing and testing your setup, as im running gentoo on my linux that i network my zaurus through via usb...  

distcc would certainly solve a few issues, ive heard of it, but dont much understand its implementation

ill see what i can do to learn more

8
Zaurus - pdaXrom / Browser with x11
« on: January 04, 2004, 01:13:54 pm »
i personally have hung onto the dillo ipk from the x11 pre1 release... i dont know if offroadgeek posted it on the ZUG x11 feed, what it works pretty well, IMHO... but you gotta use konqueror if you want any advanced functionality (cookies, etc) ... as dillo is pretty plain..

9
North Carolina / Welcome, Tar Heels
« on: December 18, 2003, 07:40:48 pm »
hey pHluid ... we\'ll have to have a FayZUG meeting or somethin like that... unforetunetly tho im gettin headin to head home until after the first of the year... keep me posted tho!

10
Zaurus - pdaXrom / Great ROM but beware of "normal" users
« on: December 16, 2003, 02:50:25 pm »
i concurr abuot the above \"package madness\" post .. my solution was to move into my feed directory and type \"ipkg install *ipk\" ... this would of course isntall EVERY ipk in the directory (kinda overkill i know) ... i would then start up qpackager and remove the packages i didnt want ...

thats one way to do it.

11
Zaurus - pdaXrom / Adding a user
« on: December 16, 2003, 01:27:03 pm »
i had the same troubles tcoulon... it pretty much means you gotta add the user yourself ...

the way to do it is you\'ll need to edit the /etc/passwd file, /etc/group and /etc/shadow ... i will further in-depth now..

first, /etc/passwd - this file contains basic unshadowed information about the user... the users already there give pretty good examples to work off of, and you can figure out what you want from looking at it:

example:
joe:x:1000:1000:root:/home/joe:/bin/bash

note: everything in these files is delimited by a colon( : ) ...

the first field is the username, the second field, in old unix implementations would contain the \"unshadowed\" (plaintext) passwd, obviously this isn\'t the case anymore, so it just contains an \"x\" as a placeholder. the third and fourth fields are the uid and gid. The uid should be a unique number, 100 is a good one to start with asmost distros will automagically start making new users at 100 then increment from there. The gid us the unique id associated with the user\'s group. It should be 100 for most non-priv\'d users, as this is the gid for users, ill cover this further down the road. the fifth field is the user\'s full name, i beleive (i could be wrong and am too lazy to look at the man  ) ... the sixth field is the user\'s homedir  and the seventh is the user\'s shell of choice , bash is pretty much your only choice for cacko-x11 (ksh anyone?  )

next is /etc/group which holds a list of groups, and what users are \"Attached\" to each group

users:x:100:joe

the first field is the group\'s name , the second is the deprecated passwd field, again, the third is the unique gid for that group ( also the fourth field in the /etc/passwd file) and the last field is a comma-seperated list of users belonging to that group. remember, if the group in question in the user\'s \"main\" group, then the fourth field of that user\'s entry in /etc/passwd should match up with their \"main\" group\'s gid. This is so that a user can be in multiple entries in /etc/group, but still have one primary group that new files made by them will be associated with. If you plan on doing much su or sudo type stuff, to avoid having to log in as root as much, then id recommend also adding the user to the \"wheel\" group.

the last file is /etc/shadow

joe::10933:0:99999:::

ok, this one is a little wierd, but ill break it down like this:

the first field is of course, the user\'s name. The second one should hold either A) nothing (like in this case), means there is NO PASSWORD for that account (ie you just type username, and hit enter twice to log in), this is how root\'s account will after setup.  an asterisk (*) which means there is no passwd, period. i.e. there is no right passwd, so you can\'t log in. or C) if you have actually set a passwd, there\'ll be a bunch of gibberish (an md5 hash i guess). you\'ll prolly want to leave it empty like in case A, then log in and set a passwd, just to play it safe. the third field isthe number of doans btween jan 1, 1970 and the date when the passwd was last changed. This really doesnt matter, all the others say 10933 in cacko\'s /etc/shadow, so i decided to follow suit. the fourth field is the min number of days between passwd changes, this is 0, the fifth is the max number of days. we set to 99999 so that it\'s like 273 years or somethin like that. The next field is the number of days prior to passwd expiration to warn the user, suffice to say you\'ll be pretty old by the time you get that message.  The next three fields are inactive, expire and flag .. and are pretty much alwasy left blank for every day use.

Basically with the information above, you can hand-fabricate your own users, and if you\'d like more information, check out the passwd(4), group(4) and shadow(4) manpages.

update: upon reviewing this post, ive realized how encyclopedic it is in nature .. whoops .. but hey, if you manage to make it all the through then more power to ya!  :roll:

12
im curious are the home and menu buttons both like \"special case\" type buttons, cuz i havent seen anyone try to use them... i know obviously home/power on is useful for *gasp* powering on, but couldnt be used outside that context?

also, what about those two japanese character buttons in the lower left hand corner of the actual qwerty... im assuming one of them is to switch between hiragana and katakana, is the other one for kanji then?

anyways, itd be cool if we could get special mappings for all of these... i like having a control button ALOT, and as annoying as fn+1,2,3 to switch mice is... i like control too much..

also, ive noticed my adress button doesnt behave like alt, as it is allegedly supposed to. hmm...cant get the menu in most apps with alt, turns i can alt+tab switch tho, but there are other irregularities ive noticed, neways...

*jumping up and down as zgcc-cross for cacko-x11 dl\'s*

13
General Discussion / Zaurus good for "road coders"?
« on: December 15, 2003, 10:03:50 am »
i agree the Guest\'s post above .. as for editors, speaking from the standpoint of the Cacko-X11 ROM for the SL-C7x0 series ... The default editor is SciTE which is a pretty decent text editor, also has vi in the CLI.

Also, the X11 rom has a GCC 3.3.1 and tons of libs, not to mentioned the newly released (im itchin to test) cross-compile environment

as for java, Cacko X11 doesn\'t have any java implementation at this time, altho the Cacko team has been VERY receptive to requests for software/libs from the community.

While it may not be perfect, and perhaps poorly suited at this time to larger projects (i think the internal compile errors will be worked out in time, and a swapfile always helps too), I feel the 7x0 series w/ the X11 ROM is prolly the best choice for a linux developer on the road.

(sharp/qtopia is lame in comparison IMO  )

14
Zaurus - pdaXrom / Cross-compiling for the x11 ROM
« on: December 15, 2003, 09:16:03 am »
YES!!!!!!!!!!!!!!!

15
Zaurus - pdaXrom / Cacko-X11 ZGCC 3.3.1 internal compiler errors
« on: December 13, 2003, 02:25:53 pm »
Guest:

sorry i forgot to mentioned that, i already have a 60 meg swapfile on my cf card... maybe it isnt enough? i know for desktop installation, they suggest twice the size of available ram, so maybe a bigger swap partition?

Pages: [1] 2 3