![]() |
2006-03-06
, 16:18
|
Posts: 63 |
Thanked: 1 time |
Joined on Dec 2005
|
#11
|
![]() |
2006-03-06
, 18:04
|
|
Posts: 1,245 |
Thanked: 421 times |
Joined on Dec 2005
|
#12
|
hey Mr. M , how did you get this ? I mean, what and where and how did you changed it?
![]() |
2006-03-08
, 14:15
|
Posts: 16 |
Thanked: 0 times |
Joined on Feb 2006
|
#14
|
![]() |
2006-03-08
, 14:50
|
Posts: 63 |
Thanked: 1 time |
Joined on Dec 2005
|
#15
|
![]() |
2006-03-09
, 01:38
|
|
Posts: 69 |
Thanked: 4 times |
Joined on Feb 2006
@ Boston, Massachusetts
|
#16
|
I got an issue , i would know if someone else have it too.
I can only access webpage with manaos if opera is started and on a webpage.
Thanks.
![]() |
2006-03-09
, 15:12
|
|
Posts: 128 |
Thanked: 4 times |
Joined on Feb 2006
@ Philadelphia, PA
|
#17
|
Yeah, you should probably uninstall all traces of any old versions of MANaOS you installed. If you used dpkg -x, then use dpkg -c on the same debs to see which files were installed and where. You can scrape together a script to automatically remove the files. Here's the one I use:
Just write that to an executable script file on your device and run it as root, passing it the .deb file whose contents you want to remove from your root file system.Code:#!/bin/sh BASE_DIR=/ DEB=$1 if [ "$1" = "" ] then echo "USAGE: undpkg.sh [package.deb]" exit 1 fi /usr/bin/dpkg -c $1 | sed "s/.*[0-9]\{4\}-[0-9]\{2\}-[0-9]\{2\} [0-9]\{2\}:[0-9]\{2\}:[0-9]\{2\} \(.*\)/\1/; s/\(.*\) -> .*/\1/" | sort -r | while read FILE do FILE=$BASE_DIR/$FILE if [ -f "$FILE" ] then rm "$FILE" elif [ -d "$FILE" ] then rmdir "$FILE" 2>/dev/null fi done
(I take no responsibility for how that script is used.)
![]() |
2006-03-09
, 15:48
|
Posts: 16 |
Thanked: 0 times |
Joined on Feb 2006
|
#18
|
Hey, Could it be that the internet connection is just not on?
You have to manually connect before firing up manaos.
![]() |
2006-03-10
, 04:17
|
Posts: 63 |
Thanked: 1 time |
Joined on Dec 2005
|
#19
|
Arg , it was that. I didn't know that once opera is closed, wifi is also disabled ...
I would like connect at my university but opera doesn't work (no encryption) so I need a firefox browser based but manaos can't accept certificate.
Someone knows if it's envisaged in near version ?
![]() |
2006-03-17
, 17:03
|
|
Posts: 128 |
Thanked: 4 times |
Joined on Feb 2006
@ Philadelphia, PA
|
#20
|