Re: quite unusable wifi

2010-02-21 Thread NoSpaze
On Fri, 2010-02-19 at 12:29 +0100, Pietro m0nt0 Montorfano wrote:
 05:00.0 Ethernet controller: Atheros Communications Inc. AR242x
 802.11abg Wireless PCI Express Adapter (rev 01)
...

Confirmation. This worked fine on my old apartment (Toshiba satellite,
atheros AR242x, F12, x86_64) with a linksys wifi. Now I live temporarily
in Argentina, and the new wifi keeps throwing 

ath5k phy0: unsupported jumbo
ath5k phy0: unsupported jumbo
ath5k phy0: unsupported jumbo
ath5k phy0: unsupported jumbo
ath5k phy0: unsupported jumbo
ath5k phy0: unsupported jumbo
ath5k phy0: unsupported jumbo
ath5k phy0: unsupported jumbo
ath5k phy0: unsupported jumbo
ath5k phy0: unsupported jumbo
ath5k phy0: unsupported jumbo
ath5k phy0: unsupported jumbo
ath5k phy0: unsupported jumbo
ath5k phy0: unsupported jumbo
ath5k phy0: unsupported jumbo
ath5k phy0: unsupported jumbo
ath5k phy0: unsupported jumbo
ath5k phy0: unsupported jumbo

Tried madwifi from ATRPMS, doesn't work.

Not solved. Cant' find any solution: just using a wired eth0.

Greets!
--
Rodolfo Alcazar - rodolfo.alca...@padep.org.bo
otbits.blogspot.com / counter.li.org: #367962
--
Arnold Schwarzenegger virus : Terminates and stays resident. It'll be
back.


-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: Looking for advise on a special grub setup.

2010-03-01 Thread NoSpaze
On Sun, 2010-02-28 at 22:03 -0500, Steven W. Orr wrote:
 I have two hard drives which look like this:
 
 FilesystemSize  Used Avail Use% Mounted on
 /dev/sda6 9.4G  1.5G  7.5G  16% /
 /dev/sda11 85G   45G   36G  57% /g
 /dev/sda10 30G  6.1G   23G  22% /h
 /dev/sda5  30G   21G  7.6G  74% /home
 /dev/sda8 1.9G   36M  1.8G   2% /tmp
 /dev/sda9 9.3G  4.7G  4.1G  54% /e
 /dev/sda2  31G   19G  9.9G  66% /var
 /dev/sda3  31G  9.4G   20G  33% /usr
 /dev/sdb1 294G  244G   36G  88% /d2
 /dev/sda1 479M   52M  403M  12% /boot
 tmpfs 1.5G  472K  1.5G   1% /dev/shm
 
 I just bought a new 1T SATA drive to add to the mix, and here's what I'd like
 to do (but I don't understand how to do it).
 
 I want to add the new drive as a third disk so that the system will continue
 to boot off of sda. I'm current;y running F10 in 32 bit mode.
 
 After I add the new drive, it will be seen as sdc, and I will want to install
 F12 in 64 bit mode on sdc.
 
 Q0: Can I tell the install DVD to install on sdc and to leave sda alone?

Yes. Customize partitions and check every item twice.

 Q1: Is it possible to have multiple bootable devices? And how do I do this?

Yes. This is the process you should setup:

a) Bios starts OS from the disk you select (in your case, sda)
b) Grub chooses which disk to boot from (in your case, sda1 or, say,
sdc1)

If you are not so sure, you can

a) Bios boot from sdc
b) Grub choosing boot from sda1 or sdc1

 Next, after I'm thrilled to death that sdc is how I want it to be, I want to
 make a cutover so that sdc will then become the primary boot device. My
 understanding is that the four SATA plugs I have on my motherboard are defined
 so that one (currently sda) is considered to be the primary device.
 
 Q2: When I do a cutover, do I have to switch the cables on the new sdc and
 what is now sda? Will the new drive end up being referred as sda and the now
 current sda become sdc?

Ah, you should know hoy your bios chooses which one is sda, which sdb,
etc. That depends on cabling. I believe:

IDE1/Master: hda/sda 
IDE1/Slave: hdb/sdb 
IDE2/Master: hdc/sdc 
IDE2/Slave: hdd/sdd 

and so on.

 Q3: Is there a grub command I need to run to make the new drive become the
 bootable device? Or do I have to then reload from scratch to make it all work?

Yes. just check your /boot/grub/menu.lst, google for grub and man grub

 Thanks :-)

Please, tell us by the list how it went. Greets!
--
Rodolfo Alcazar - rodolfo.alca...@padep.org.bo
otbits.blogspot.com / counter.li.org: #367962
--


-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: (OT) Generate Graphical Tree (SVG / PNG) of Directory Structure

2010-03-03 Thread NoSpaze
Am Dienstag, den 02.03.2010, 22:21 -0500 schrieb Armelius Cameron:
 I am wondering if anyone knows any tool to generate a graphical 
 representation 
 of directory structure  as a tree. Directories would be a node, files would 
 be 
 leaves. I know about the command line tree. It's similar, but not exactly 
 what I need. It'd be nice to be able to rotate something like the output of 
 tree command line 90 degree, so that the siblings are on the same 
 horizontal 
 level. Also, preferably the output is in SVG, so I can edit it using e.g. 
 Inkscape. But if not, I guess other formal (i.e. PNG, PS) is a possibility 
 too. 
 
 I know about Graphviz. So if I can't find anything I guess I can try to do 
 this 
 myself and code up something. I just didn't want to do the work if something 
 is already out there :) . If there are other tools similar to Graphviz (maybe 
 something simpler), I'd like to hear about it too.

Maybe this graphviz I used once will help, it generates a PNG. I used
some recursion, but no clue about doing it with just one command (find,
tree, may..be?)
---
#!/bin/bash
function recurse () {
SUBS=$(find $1 -mindepth 1 -maxdepth 1 -type d)
for a in $SUBS
do
echo \$1\ - \$a\;  $DOTFILE
recurse $a
done
}
DOTFILE=$(mktemp)
export IFS=$'\n'
echo digraph unix {  $DOTFILE
echo node [color=lightblue2, style=filled];  $DOTFILE
recurse $1
echo }  $DOTFILE
dot -Tpng $DOTFILE  dirs.png
eog dirs.png 

---
Call it with drawrecurse.bash /home/myuser/mytree. You can modify it in
many ways, and change graphviz options to get your desired output.

Greets!
--
Rodolfo Alcazar - rodolfo.alca...@padep.org.bo
otbits.blogspot.com / counter.li.org: #367962
--
/* I can C clearly now */


-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: Problem with an external usb HD - slow usb

2010-03-08 Thread NoSpaze
Am Montag, den 08.03.2010, 12:16 -0300 schrieb Luigi Castro Cardeles:

 the default max_sectors is 240. I change this to 1024 like you said
 but the problem continue.
 time dd if=/dev/sdc1 of=/dev/null bs=1M count=5
 i get that speed: 972 MB/s
 but if i run rsync, the upload transfer rate is very slow ( begins at
 4MB/s and goes below until 0.7KB/s)

Type of filesystem (ext3, ntfs)? Any noticeable messages on dmesg? Whta
does top tracing reports while transferring? Maybe you can also
check /var/log/messages

Let us know.
--
Rodolfo Alcazar Portillo - nosp...@gmail.com
otbits.blogspot.com / counter.li.org: #367962
--
(setq wq This is emacs, not vi) -- Ingvar


-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: Firewall config and ftp server

2010-03-08 Thread NoSpaze
Am Montag, den 08.03.2010, 22:45 +0800 schrieb Edward. S. P. Leong:
 Our is fedora 11...

Mine is F12.

 How can we enable the following of firewall function ( modules ), then
 the ftp server is good for working ?
 modprobe ip_tables

# lsmod|grep tables
ip6_tables  9409  1 ip6table_filter

# modprobe ip_tables
FATAL: Module ip_tables not found.

# lsmod|grep ip
ip6t_REJECT 3394  2 
nf_conntrack_ipv6  14859  2 
ip6table_filter 2227  1 
ip6_tables  9409  1 ip6table_filter
ipv6  223738  22 ip6t_REJECT,nf_conntrack_ipv6
dm_multipath   12324  0 

therefore, there's no such module, suppose I.

 modprobe ip_nat_ftp
 modprobe ip_conntrack
 modprobe ip_conntrack_ftp

# modprobe ip_nat_ftp
# modprobe ip_conntrack
FATAL: Module ip_conntrack not found.
# modprobe ip_conntrack_ftp

You do not show the output of this three commands, this is mine.

Matches your setup?
--
Rodolfo Alcazar Portillo - nosp...@gmail.com
otbits.blogspot.com / counter.li.org: #367962
--
Apr 13 11:05:20 apollo13 fsck[3927]: root, we have a problem.
-- Jeff Gostin


-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: Firewall config and ftp server

2010-03-09 Thread NoSpaze
Am Dienstag, den 09.03.2010, 23:09 +0800 schrieb Edward. S. P. Leong:
 NoSpaze wrote:
  # modprobe ip_tables
  FATAL: Module ip_tables not found.

Again: this module does not exist! Maybe ip_nat or nf_nat?

  # modprobe ip_nat_ftp
  # modprobe ip_conntrack
  FATAL: Module ip_conntrack not found.
  # modprobe ip_conntrack_ftp
  You do not show the output of this three commands, this is mine.
  Matches your setup?

 Dear You,
 Mine in here :
 []# modprobe ip_tables
 WARNING: Deprecated config file /etc/modprobe.conf, all config files
 belong into /etc/modprobe.d/.
 FATAL: Module ip_tables not found.
 []# modprobe ip_nat_ftp
 WARNING: Deprecated config file /etc/modprobe.conf, all config files
 belong into /etc/modprobe.d/.
 []# modprobe ip_conntrack
 WARNING: Deprecated config file /etc/modprobe.conf, all config files
 belong into /etc/modprobe.d/.
 FATAL: Module ip_conntrack not found.
(same as mine)
 []# modprobe ip_conntrack_ftp
 WARNING: Deprecated config file /etc/modprobe.conf, all config files
 belong into /etc/modprobe.d/.

Ok. maybe some names are messed up on your modules.conf, maybe you have
names like nf_nat_ftp and nf_conntrack_ftp. Check this commands outputs:

# ls -l /lib/modules/$(uname -r)/kernel/net/ipv4/netfilter/

# modinfo nf_nat_ftp nf_conntrack_ftp

filename:   
/lib/modules/2.6.32.9-67.fc12.i686/kernel/net/ipv4/netfilter/nf_nat_ftp.ko
alias:  ip_nat_ftp
description:ftp NAT helper
author: Rusty Russell ru...@rustcorp.com.au
license:GPL
srcversion: F92EE3A32D64466A49CF33B
depends:nf_nat,nf_conntrack_ftp
vermagic:   2.6.32.9-67.fc12.i686 SMP mod_unload 686 

filename:   
/lib/modules/2.6.32.9-67.fc12.i686/kernel/net/netfilter/nf_conntrack_ftp.ko
alias:  nfct-helper-ftp
alias:  ip_conntrack_ftp
description:ftp connection tracking helper
author: Rusty Russell ru...@rustcorp.com.au
license:GPL
srcversion: BCE75C1712FB8C7DF825917
depends:
vermagic:   2.6.32.9-67.fc12.i686 SMP mod_unload 686 
parm:   ports:array of ushort
parm:   loose:bool

# cat /proc/modules |grep nf

nf_nat_ftp 2452 0 - Live 0xf7dad000
nf_nat 15785 1 nf_nat_ftp, Live 0xf8881000
nf_conntrack_ftp 9435 1 nf_nat_ftp, Live 0xf8857000
nf_conntrack_ipv6 14859 2 - Live 0xf9ee2000
ipv6 223738 22 ip6t_REJECT,nf_conntrack_ipv6, Live 0xf9e76000

 So, is there any solution for me ?

Good: read, fix. Bad: update/reinstall. Ugly: pay. Greets.
--
Rodolfo Alcazar Portillo - nosp...@gmail.com
otbits.blogspot.com / counter.li.org: #367962
--
An ASCII character walks into a bar and orders a double. Having a
bad day? asks the barman. Yeah, I have a parity error, replies the
ASCII character. The barman says, Yeah, I thought you looked a bit
off. 
-- Skud


-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: Converting SVG to PDF

2010-03-09 Thread NoSpaze
Am Dienstag, den 09.03.2010, 13:58 -0500 schrieb Oliver Ruebenacker:
 Is there a free SVG to PDF converter available that actually works?

a) Imagemagick:

$ convert myfile.svg myfile.pdf

b) use inkscape to generate a raster (jpg, gif). Then use convert:

$ convert myfile.jpg myfile.pdf

Greets!
--
Rodolfo Alcazar Portillo - nosp...@gmail.com
otbits.blogspot.com / counter.li.org: #367962
--
- C makes it easy to shoot yourself in the foot. C++ makes it harder,
but when you do, it blows away your whole leg. 
B. Stroustrup


-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: GNS3 installation

2010-03-10 Thread NoSpaze
Am Dienstag, den 09.03.2010, 23:23 +0700 schrieb Rashedul Arefin:
 I want to install GNS3 on Fedora 12. Can anyone provide me the step by
 step guidelines for this?

Make it work in five minutes (mostly, learning GNS3, nice, thanks).

a) yum install xterm telnet PyQt4 
b) downloaded and untarred GNS3 source from
http://downloads.sourceforge.net/gns-3/GNS3-0.7-src.tar.bz2?download
c) download dynamips 2.8RC1, copy inside GNS3 dir
$ wget http://www.ipflow.utc.fr/dynamips/dynamips-0.2.8-RC2-x86.bin
d) installed dynagen just in case 
http://sourceforge.net/projects/dyna-gen/files/dynagen%20source%20_%
20Linux/dynagen%200.11.0/dynagen-0.11.0-1.fc9.noarch.rpm/download
e) maybe you should install qemu, dont know if it is needed for more
routers. I make a cisco ios work fine without it.
f) create an ios directory inside GNS3's. Put some IOS there.
g) configure steps 1 and 2, requested by GNS3.
h) ./gns3

Thanks for the tip, didn't know GNS3. Cheers.
--
Rodolfo Alcazar Portillo - nosp...@gmail.com
otbits.blogspot.com / counter.li.org: #367962
--
Sorry, we don't support the worship of gods on this list, we only
support the worship of penguins.
what about us agnustics?
-- Russell Coker and Graham Wilson


-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: lzma compression on official isos vs Deltaisos

2010-03-10 Thread NoSpaze
Am Dienstag, den 09.03.2010, 20:35 -0800 schrieb Antonio Olivares:
 Yes, But I must ask again, rpm is using xz compression, but can 
 it be recompressed again with xz, 

No it cannot. Recompressing something that is already compressed,
normally ends in growing the final result. 

 xz is already present in Fedora
 11/Fedora 12/Fedora 13 Alpha/Fedora Rawhide and 7zip can 
 open/extract the files too.   The rpms are xz compressed but the
 isos are not.  That is what I am asking, or is it too much
 compression?  When is so much too much?

Too much compression there is not. Best compression means getting
optimal balance between spent resources (time, space) and final result
(file size). Normally, you can add some additional compression, using
different algorithms and techniques. But compression time grows
exponentially. 

Cheers!
--
Rodolfo Alcazar Portillo - nosp...@gmail.com
otbits.blogspot.com / counter.li.org: #367962
--
Fachbegriffe der Informatik, Halflife-Server: Server, der nur halb lebt.
Kurz: IIS. 
-- Andreas Dau


-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: Strange things during upgrades

2010-03-10 Thread NoSpaze
Am Mittwoch, den 10.03.2010, 16:15 +0100 schrieb Antonio M:
 [Errno 2] No such file or directory:
 '/var/cache/yum/i386/12/fedora/01a9150327554e6d65132266f7b065a5d107b4efb7afa78012fa3ffcc6f517e9-primary.sqlite.bz2'

My two cents: this is my i386 laptop output. Curiously, my version is
not bzipped:

# ls -l /var/cache/yum/i386/12/fedora/
insgesamt 122048
-rw-r--r--. 1 root root 43433984 25. Feb 08:25 
01a9150327554e6d65132266f7b065a5d107b4efb7afa78012fa3ffcc6f517e9-primary.sqlite
-rw-r--r--. 1 root root   399827 11. Nov 11:36 
049e1caf96d85939d47c2530c21ae9d4535fd6019bfe8a0429319c293f493629-comps-rawhide.xml.gz
-rw-r--r--. 1 root root 1327 11. Nov 11:25 
521b16256b03f708faa16735faeb724df48eb2562ba044c595add16e23288979-prestodelta.xml.gz
-rw-r--r--. 1 root root 81090560 25. Feb 11:35 
c5e3cda5e7bc2dc520e26e0545f1079400aae213bab8c03383c23ec5523c6cc4-filelists.sqlite
-rw-r--r--. 1 root root0  8. Mär 09:09 cachecookie
-rw-r--r--. 1 root root28908  8. Mär 09:09 metalink.xml
drwxr-xr-x. 2 root root 4096 10. Mär 12:40 packages
-rw-r--r--. 1 root root 4286 11. Nov 11:36 repomd.xml

Tell if you solve it, and how. Cheers.
--
Rodolfo Alcazar Portillo - nosp...@gmail.com
otbits.blogspot.com / counter.li.org: #367962
--
If you are not free to choose wrongly and irresponsibly, you are not
free at all.
– Jacob Hornberger (1995)


-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: Mail Server

2010-03-10 Thread NoSpaze
Am Mittwoch, den 10.03.2010, 15:40 +0200 schrieb William Mungwiro:
 Hi All, im running Fedora 10 and i want to configure the sending of
 email both internal and external. can anybody email me the
 instructions on how to do it at 
 mungwirowill...@gmail.com as soon as possible.

As someone pointed, the scope of your question is too wide. An email
server is related with a lot of issues: dns and nameservers,
authentication, security, encryption, viruses and spam handling, client
options, maybe a web server, etc. 

This is a vanilla setup, almost useless in the real world:

http://docs.fedoraproject.org/deployment-guide/f12/en-US/html/s3-email-mta-postfix-conf.html
 
This one is my preferred basic setup:

http://fedorasolved.org/server-solutions/postfix-mail-server

You could be more explicit and ask puntual matters... after googling a
bit. This list provides great help, but you must focus a precise
problem. Personally, I'd like to know what are you trying to deploy.

Cheers.
--
Rodolfo Alcazar Portillo - nosp...@gmail.com
otbits.blogspot.com / counter.li.org: #367962
--
Usenet: open mouth, insert foot, propagate internationally


-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: Problem with apache virtual host in new fedora 12 installation

2010-03-11 Thread NoSpaze
Am Donnerstag, den 11.03.2010, 08:30 +0800 schrieb Richard Cahilig:
 Yes. The user apache able to access /home/user. I even tried to
 changed the owership to user apache and group apache but I still have
 error 403.

Nope. I'm sure he is not. You certainly are, but in order to provide
access to apache, and that precise file, you would do 

# chmod o+rx /home /home/user /home/user/.htaccess

But that's a very BAD practice. Try soft linking a /home/user/html
to /var/www/html or viceversa and handling permissions there.

Cheers.  
--
Rodolfo Alcazar Portillo - nosp...@gmail.com
otbits.blogspot.com / counter.li.org: #367962
--
-An NT server can be run by an idiot, and usually is.
Tom Holub, a.h.b-o-i


-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: Strange things during upgrades

2010-03-11 Thread NoSpaze
Am Mittwoch, den 10.03.2010, 17:20 +0100 schrieb Antonio M:
 2010/3/10 NoSpaze nosp...@gmail.com:
  Am Mittwoch, den 10.03.2010, 16:15 +0100 schrieb Antonio M:
  [Errno 2] No such file or directory:
  '/var/cache/yum/i386/12/fedora/01a9150327554e6d65132266f7b065a5d107b4efb7afa78012fa3ffcc6f517e9-primary.sqlite.bz2'
...
  # ls -l /var/cache/yum/i386/12/fedora/
  insgesamt 122048
  -rw-r--r--. 1 root root 43433984 25. Feb 08:25 
  01a9150327554e6d65132266f7b065a5d107b4efb7afa78012fa3ffcc6f517e9-primary.sqlite
...
 also on my system, such a file is not zipped, that doesn't mean that I
 can solve the problem :-)

?

backup; try bzip2ing, changing filename in repomd.xml, deleting the
whole ...12/fedora/; googling...

bis: Tell IF you solve it, and how. Cheers.
--
Rodolfo Alcazar Portillo - nosp...@gmail.com
otbits.blogspot.com / counter.li.org: #367962
--
- Trying to make digital files uncopyable is like trying to make water
not wet.
Bruce Schneier


-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: Charging USB devices with Fedora

2010-03-17 Thread NoSpaze
Am Mittwoch, den 17.03.2010, 12:33 +0100 schrieb Ambrogio:
 It's very strange that 2 different devices bought in the same store at
 the same moment are both dead.

I cant' understand if you are able to charge also from the wall power
adapter. Anyway, it doesn't seem to be a linux issue; could be:
- Cable damaged 
- Charging from PC is not possible on both devices (if they are chinese,
I can bet on it).
- USB card damaged
- MP3 devices require some software signal to start charge (look for
software)
- Some BIOS options on the devices can able the USB port to
enable/disable charging when mounted (just try unmounting and wait or
looking for configuratio options on devices).

Regards,
--
Rodolfo Alcazar Portillo - nosp...@gmail.com
otbits.blogspot.com / counter.li.org: #367962
--
A train station is where trains stop. A bus station is where busses
stop. A Work Station is where...


-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: Restarting pulseaudio? -

2010-03-22 Thread NoSpaze
Am Montag, den 22.03.2010, 10:01 -0400 schrieb Bob Goodwin:
 How can I restart pulseaudio after killing it?
 I can't find anything like service pulseaudio
 restart/status/whatever. Must I reboot F-12?

Please, notice this works as a non-root user:

Killing pulseaudio:

$ pulseaudio -k

Starting pulseaudio daemon:

$ pulseaudio -D

Greetings.
--
Rodolfo Alcazar Portillo - nosp...@gmail.com
otbits.blogspot.com / counter.li.org: #367962
--
Java is, in many ways, C++--. -- Michael Feldman


-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: Restarting pulseaudio? -

2010-03-22 Thread NoSpaze
Am Montag, den 22.03.2010, 11:36 -0400 schrieb Bob Goodwin:
 I tried as user:
 [b...@box6 ~]$ pulseaudio -D
 E: main.c: Daemon startup failed.

$ pulseaudio -k
$ ps fax|grep pulse
 4981 pts/1S+ 0:00  |   \_ grep pulse
 4974 ?Ssl   0:00 /usr/bin/pulseaudio --start --log-target=syslog
 4978 ?S  0:00  \_ /usr/libexec/pulse/gconf-helper
$ pulseaudio -k
$ ps fax|grep pulse
 5012 pts/1S+ 0:00  |   \_ grep pulse
 4994 ?Ssl   0:00 /usr/bin/pulseaudio --start --log-target=syslog
 5007 ?S  0:00  \_ /usr/libexec/pulse/gconf-helper
$ pulseaudio -D
E: main.c: Start des Daemons fehlgeschlagen.

I got the same message. Seems like it restarts automatically. 
Sorry. I didn't know this new behaviour. 

:(
--
Rodolfo Alcazar Portillo - nosp...@gmail.com
otbits.blogspot.com / counter.li.org: #367962
--
- Moral indignation is jealousy with a halo.
H. G. Wells


-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: upgrade FC5

2010-03-24 Thread NoSpaze
Am Mittwoch, den 24.03.2010, 07:07 + schrieb Thufir:
 It seems impossible to upgrade FC5 without a clean install -- is that 
 essentially correct?

It all depends on time. If you want to spent days fixing upgrade issues
between versions, no. If you want to write yum upgrade f12, yes.

 If I did decide to stick with FC5, how, generally, 
 would I go about installing java or other rpm's?  Manually downloading?

Installing fc5 rpms is easy, but again, other software would need time
and skills.

 Can I connect up FC5 with:
 
 http://livna-dl.reloumirrors.net/fedora/5/i386/

Yes (do you know what connect means?).

:)
--
Rodolfo Alcazar Portillo - nosp...@gmail.com
otbits.blogspot.com / counter.li.org: #367962
--
Reine Mathematik ist Religion.
- Novalis, Fragmente


-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: [TOPPOSTING] find /etc -size -1G return only empty files

2010-03-25 Thread NoSpaze
(following top posting)

Seems like rounding issues lead to the problem. Try lesser units
(instead of G, use M, k, c).

Am Donnerstag, den 25.03.2010, 09:28 +0100 schrieb Christof Damian:
 I think it is just confusing: http://savannah.gnu.org/bugs/?12162
 
 On Thu, Mar 25, 2010 at 07:45, Ala1n Sp1neu8 aspin...@gmail.com wrote:
  Hello
  find /etc -size -1G
 
  should return all files less than 1Giga byte in /etc, but return a
  list of empty file (size=0)
 
  find /etc -size -2G
 
  work fine and return all the files
 
  This works the same  on my fedora11 and my centos 5 !
 
  Did I miss something or is it a bug ?
 
  Regards
 
  --
  Alain Spineux |  aspineux gmail com
  Your email 100% available |  http://www.emailgency.com
  ntbackup and tar frontend sending mail report |
  http://www.magikmon.com/mkbackup/
  --
  users mailing list
  users@lists.fedoraproject.org
  To unsubscribe or change subscription options:
  https://admin.fedoraproject.org/mailman/listinfo/users
  Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
 

--
Rodolfo Alcazar Portillo - nosp...@gmail.com
otbits.blogspot.com / counter.li.org: #367962
--
Never trust a computer you can't lift. - Stan Masor


-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: Asking for help to install Gambit

2010-03-26 Thread NoSpaze
Am Freitag, den 26.03.2010, 09:41 + schrieb Paul Smith:
 Dear All,
 I am trying to install gambit-0.2007.12.04.tar.gz on F12, but getting
 errors. 

If nobody answered the first time, it has to be for some reason. Maybe
you can try specifying the errors.

:)
--
Rodolfo Alcazar Portillo - nosp...@gmail.com
otbits.blogspot.com / counter.li.org: #367962
--
When in doubt, use brute force. -- Ken Thompson


-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: Asking for help to install Gambit

2010-03-26 Thread NoSpaze
Am Freitag, den 26.03.2010, 14:08 + schrieb Paul Smith:
 On Fri, Mar 26, 2010 at 1:13 PM, NoSpaze nosp...@gmail.com wrote:
  I am trying to install gambit-0.2007.12.04.tar.gz on F12, but getting
  errors.
 
  If nobody answered the first time, it has to be for some reason. Maybe
  you can try specifying the errors.
 
 
 Thanks, Rodolfo. I am now qouting the errors below.
 
 Paul
 
 --
 config.status: creating Makefile
 config.status: WARNING:  Makefile.in seems to ignore the --datarootdir setting

mmm... warnings. Let them be.

 With make:
 
 -DHAVE_DRAND48=1 -I. -I. -g -O2 -c integer.cc  -fPIC -DPIC -o .libs/integer.o
 integer.cc: In function 'Gambit::IntegerRep*
 Gambit::atoIntegerRep(const char*, int)':
 integer.cc:2153: error: 'strlen' was not declared in this scope

Seems the problem is the current gcc version (4.3). Try adding

#include memory
#include climits
#include cstring

to the headers section in the file which trigs the error
(src/libgambit/integer.cc)...

Tell us how did you go. :)
--
Rodolfo Alcazar Portillo - nosp...@gmail.com
otbits.blogspot.com / counter.li.org: #367962
--
As a software development model, Anarchy does not scale well.
-- Dave Welch


-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: Asking for help to install Gambit

2010-03-26 Thread NoSpaze
Am Freitag, den 26.03.2010, 18:09 + schrieb Paul Smith:
   -DHAVE_DRAND48=1 -I. -I. -g -O2 -c integer.cc  -fPIC -DPIC -o 
   .libs/integer.o
   integer.cc: In function 'Gambit::IntegerRep*
   Gambit::atoIntegerRep(const char*, int)':
   integer.cc:2153: error: 'strlen' was not declared in this scope

   Seems the problem is the current gcc version (4.3). Try adding
  
   #include memory
   #include climits
   #include cstring
  
   to the headers section in the file which trigs the error
   (src/libgambit/integer.cc)...

 
  Thanks, Rodolfo. Now the errors are:

  /bin/sh ../../libtool --mode=compile g++ -DPACKAGE_NAME=\\
  -DPACKAGE_TARNAME=\\ -DPACKAGE_VERSION=\\ -DPACKAGE_STRING=\\
  -DPACKAGE_BUGREPORT=\\ -DPACKAGE=\gambit\
  -DVERSION=\0.2007.12.04\ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1
  -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1
  -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1
  -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1
  -DLT_OBJDIR=\.libs/\ -DHAVE_BCMP=1 -DHAVE_SRAND48=1 -DHAVE_DRAND48=1
  -I. -I.  -g -O2 -c integer.cc
 ...
  ../../libtool: line 950: X-I.: command not found
  ../../libtool: line 950: X-I.: command not found
  ../../libtool: line 950: X-g: command not found
  ../../libtool: line 950: X-O2: command not found
  ../../libtool: line 950: X-c: command not found

 Thanks to all. After Rodolfo's reply, I think I know how to fix the
 problem: to do the includes that are missing.

But how did you solved the libtool failure?
--
Rodolfo Alcazar Portillo - nosp...@gmail.com
otbits.blogspot.com / counter.li.org: #367962
--
Zum schönsten, was zwischen Menschen entstehen kann,
zählt zweifellos die Distanz. -- Gunkl


-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Kernel BUG crash + photo 2.6.32.10-90

2010-03-31 Thread NoSpaze
Hi. Yesterday I updated to kernel 2.6.32.10-90.fc12.i686. When booting,
I got this BUG (likely reported by udev in the photo):

http://otbits.blogspot.com/2010/03/bug-photo-20100331.html

Now I'm booting by choosing previous kernel on Grub
(2.6.32.9-70.fc12.i686). At first, felt like a disk error, maybe others
are formatting!

Is there any workaround? Anyone got the same? Must I file it with
Bugzilla, if no one else got the same? 

Thanks, cheers.
--
Rodolfo Alcazar Portillo - nosp...@gmail.com
otbits.blogspot.com / counter.li.org: #367962
--
Sysadmin (n): The untrained being underpaid for doing the impossible
with the obsolete.


-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: New Kernel will not boot

2010-04-01 Thread NoSpaze
Am Donnerstag, den 01.04.2010, 07:33 -0600 schrieb Lawrence E Graves:
 When I install it and reboot my system it stops at the
 Fedora sign in the middle of the screen.  

Press the ESC key to see any messages. Maybe
https://bugzilla.redhat.com/show_bug.cgi?id=578217
applies to you. 

Greets.
--
Rodolfo Alcazar Portillo - nosp...@gmail.com
otbits.blogspot.com / counter.li.org: #367962
--
The Microsoft Torque Wrench: what do you want to shear today?
-- Malcolm Ray


-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: Mounting a qemu created image

2010-04-04 Thread NoSpaze
Am Sonntag, den 04.04.2010, 21:24 +0100 schrieb Paul:
 Outside of qemu, is there a way to mount the image? 

Could this be useful?

http://en.wikibooks.org/wiki/QEMU/Images

:)
--
Rodolfo Alcazar Portillo - nosp...@gmail.com
otbits.blogspot.com / counter.li.org: #367962
--
So instead, I toil through fields of various OSes, planting
applications,
spraying patches to catch the bugs, and watching the databases grow.
-- D. Joseph Creighton


-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: can't create live USB stick with Fedora 12

2010-04-19 Thread NoSpaze
Am Montag, den 19.04.2010, 16:29 +0300 schrieb Alan Holt: 
 # ls -la /media/CARD/
 ls: невозможно получить доступ к /media/CARD/φ▒u ç▄8d.╤ìi:
 Input/output error
 ls: невозможно получить доступ к /media/CARD/╠ét(í²e.≡¼h:
 Input/output error
 ls: невозможно получить доступ к /media/CARD/╡φr▄üf;.▒∞
: Input/output
 error

... bad usb stick!

:( 
--
Rodolfo Alcazar Portillo - nosp...@gmail.com
otbits.blogspot.com / counter.li.org: #367962
--
Things should be as simple as possible, but not simpler. 
-- Albert Einstein



-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: F12 Firefox pwd trouble

2010-04-28 Thread NoSpaze
Am Dienstag, den 27.04.2010, 17:11 + schrieb Beartooth:
 Firefox insists, whenever I let it change a password, on
 making those for two lists on the same domain (one that I run, and one 
 that I help run) the same. There are actually four different passwords, 
 what with owner and moderator for each list. Is there a fix for this??

Afaik, ffox bases its supposition about passwords on protocol, url, and
field names. If two pages present the same environment, ffox uses the
same user/password pair.

Fixes: If you have designer access to the site, you can fix the issue by
changing field names. Or you can associate two different urls for the
same page, with your two different functions, and store passwords one in
each URL.

Good luck.
--
Rodolfo Alcazar Portillo - nosp...@gmail.com
otbits.blogspot.com / counter.li.org: #367962
--
If addiction is judged by how long a dumb animal will sit pressing a
lever to get a fix of something, to its own detriment, then I would
conclude that netnews is far more addictive than cocaine.
-- Rob Stampfli


-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: How to compare two text files

2010-05-06 Thread NoSpaze
Am Donnerstag, den 06.05.2010, 18:27 +0530 schrieb W.H. Kalpa Pathum:
 I've got two text files containing email addresses one at a row. The
 number of rows in one file is different from the number of the other
 file. email addresses in one file is already there in the other file
 (there are some more also). What I want to do is extract the list
 which is not in the other file.
 
 elaboration
 
 File A has 100 email addresses and file B has 15 email addresses. 15
 email addresses in file B are already there in file A. I want to
 extract the 85 mails (excluding the 15 from file B) from file A.

First, files must have the same pattern form, and be sorted (I assume
you don't have b...@ms.com in file1 and Bill b...@ms.com in file2)

sorting:
$ sort file1file1.sort
$ sort file2file2.sort

Show what file1.sort contains but avoid entries in file2.sort:
$ grep -f file2.sort -v file1.sort

visual differences
$ diff --side-by-side file1.sort file2.sort

Greets!
--
Rodolfo Alcazar Portillo - nosp...@gmail.com
otbits.blogspot.com / counter.li.org: #367962
--
 hence the AIX boxen of increasing power [...]
That phrasing reminded me of Rodents of Unusual Size.
-- Mike and Greg Andrews


-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: Fedora - time to blink

2011-11-23 Thread NOSpaze
On Wed, 2011-11-23 at 18:44 +, JB wrote:
 Marko Vojinovic vvmarko at gmail.com writes:
  On Wednesday 23 November 2011 09:57:35 JB wrote:
   http://www.dedoimedo.com/computers/fedora-16.html
  Oh, come on JB, do you really think quoting that guy makes any sense?
 That's not fair to him.
 He has a pretty neat site, and a long history of Linux distros reviews, which
 are very standard (from a user point of view), 

a) All the reviews are loaded with tons of emotional influence: trying
to use Fedora 16 verne. 
b) the review is a witch hunting of bugs: the bad integration continues
here. Notice the icon background is a different shade of gray than the
window. 
c) Is not objective: I touched the subject of politics in my latest
Mandriva review. 
d) Is not concrete. That's not a review of a distro features.

A very emotional and subjective opinion of some applications within a
narrow point of view of the linux capabilities.

Empty glasses are louder :)


Cheers.
-- 
NOSpaze nosp...@gmail.com

-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: Hello to everyone

2011-12-02 Thread NOSpaze
On Thu, 2011-12-01 at 09:55 -0500, LinuxIsOne wrote:
 Hello,
 
I get it. Linux is one, meaning that Debian=Fedora, and we name them
differently because or religious matters. Well thought and good one.
That means you have a high IQ. Hello and welcome to this list!

Going a little bit further, I realize that God needs to be unique in
order to be God. If God is one, LinuxIsOne=Linux is God. Nice hidden
message in your nickname. You are highly creative and religious. Welcome
to this list.

I also realize that your name is an affirmation instead of an adjective
or a meaningless word. Also comprehended that you do not use your name
in any part of your mail. That combination could mean you are changing.
Trying to liberate yourself from your present and feeling like a pupa
about to become a beautiful butterfly, which will soonly spread the
wings and touch the sky. Like that killer Buffalo Bill in the movie The
Silence of the Lambs... get it? hah? hah? get it? So I conclude you
could have some serial killer instincts. You could be a dangerous
person. So welcome to this list, I must ask you kindly to please don't
kill anyone.

Also realized that you have mistaken the Fedora List and the Debian
List. See? I can think as well or better as anyone! I'm trying to
improve my IQ, cause I envy people like you. Any way, as I said, If you
mistake this both list names could have 3 reasons: a) you made a typo
because you have big fingers b) You are using a shitty mail client like
Outlook or ccmail c) you use a web mail client. I will say the probable
answers are c), a) and less probably b) (if you are a serial killer with
strong fingers, God save us. I mean, Linux save us!). Trying to follow
the logical path, I'd say that if you use a web mail client, you use
google. That is confirmed by the meaningful fact that your email ends in
@gmail.com. And if you use gmail, I would say you have a computer with a
powerful processor. That means you are rich, and probably a relative of
any Wall Street stock broker. Tell him I hate all of them. But you are
not to blame. You are welcome to this list. 

I didn't analyzed the subject of your message, probably contains many
hidden misteries and deserves to be analyzed. Particularily, the use of
the abbreviation Re:, coming from an interesting person like you... Im
sure it doesn't mean Reply as anyone else's or  Reject, when I use
it. It MUST abbreviate something important.

 Hello to the Debian Community.

Hello and welcome. You will find more people of the fedora community
than the Debian community in this list. 

 Thanks.

For what? 

Sorry for making fun. A truly welcome.


-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Writing a book w/F16?

2011-12-09 Thread NOSpaze
Hi. 

I need to know what software f16 includes to aid in the task of writing
a book (not just spelling and TOC). libreoffice I'm using, but is too
slow and unappropriate when working with lots of text. Please dont'
advise to change OS, I'm a sysadmin and need fedora on all my laptops.

Mind mapping (freemind is ok, any alternatives?), editing separated
chapters and ordering afterwards, possibility of looking a list of
sections or chapters summaries, comparing visually two texts, create
tables of contents, fast access by indexes, use the less scrolling as
possible (I know the fast key combinations)... maybe i'm asking too
much.

Thanks!
-- 
NOSpaze nosp...@gmail.com

-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: Writing a book w/F16?

2011-12-09 Thread NOSpaze
On Fri, 2011-12-09 at 13:28 -0700, Peter Gueckel wrote:
 NOSpaze wrote:
 
  Hi.
  
  I need to know what software f16 includes to aid in the task of writing
  a book (not just spelling and TOC). libreoffice I'm using, but is too
  slow and unappropriate when working with lots of text. Please dont'
  advise to change OS, I'm a sysadmin and need fedora on all my laptops.
  
  Mind mapping (freemind is ok, any alternatives?), editing separated
  chapters and ordering afterwards, possibility of looking a list of
  sections or chapters summaries, comparing visually two texts, create
  tables of contents, fast access by indexes, use the less scrolling as
  possible (I know the fast key combinations)... maybe i'm asking too
  much.
  
  Thanks!
 
 I cannot anticipate your exact needs, but it sounds to me like scribus could 
 be 
 what you might be looking for.

Nop. Scribus is, AFAIK, meant for the final formatting, not the writing
process. I suppose I'll use it in 20 years, when I finish the book :D

-- 
NOSpaze nosp...@gmail.com

-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: Writing a book w/F16?

2011-12-10 Thread NOSpaze
On Sat, 2011-12-10 at 10:22 +0100, Marc Blanc wrote:
 Le Fri, 09 Dec 2011 21:22:15 +0100,
 NOSpaze nosp...@gmail.com a écrit :
 I need to know what software f16 includes to aid in the task of writing
 a book 
...
 sgml/xml does this. But it's no wysiwyg...

And it's not a software.

What question are you answering? Are you answering the question if xml
can describe my beautiful neighbor singing repertoire? She's also not
wysiwyg...

:)
-- 
NOSpaze nosp...@gmail.com

-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: Writing a book w/F16?

2011-12-10 Thread NOSpaze
On Sat, 2011-12-10 at 20:50 +0800, Ed Greshko wrote:
 On 12/10/2011 08:34 PM, Craig White wrote:
  is there any doubt who this NOSpaze is?
 
 Rodolfo Alcazar Portillo 
 
 Why do you ask?

Yea thats me, why do you ask? are you my neighbor?

:)
-- 
NOSpaze nosp...@gmail.com

-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: Writing a book w/F16?

2011-12-10 Thread NOSpaze
On Sat, 2011-12-10 at 10:17 -0700, Craig White wrote:
 On Sat, 2011-12-10 at 13:57 +0100, NOSpaze wrote:
  On Sat, 2011-12-10 at 20:50 +0800, Ed Greshko wrote:
   On 12/10/2011 08:34 PM, Craig White wrote:
is there any doubt who this NOSpaze is?
   
   Rodolfo Alcazar Portillo 
   
   Why do you ask?
  
  Yea thats me, why do you ask? are you my neighbor?
 
 I was wrong... in that case, I will answer.
 
 sgml has long been used for professional publishing ( see adobe
 framemaker).
 
 The idea is that you can use fast/simple editors such as vi or emacs and
 put in your own markup tags and save the processing (ie, generate
 toc/footnotes/end notes/appendix/etc.) for later.

Thanks for the suggestion. I'll read how to do a TOC, footnotes and
commenting/tagging paragraps, summarizing in vim. If you can suggest any
link, TIA. your own markup tags... I wouldn't use sgml/xml, but i'll
wait for any links on how to apply them effectively.

 WYSIWYG is an obstacle to writing but is in fact an artifact of
 publishing and in that case, you can merely concentrate on writing and
 leave all of the stylizing until the writing is finished.

WYSIWYG is an obstacle to writing? Damn! I knew it! Tell it to the
LibreOffice team. They need to know it.

 Seemed to me to be a more than adequate suggestion that you mocked.

I do really appreciate your help, just it sounded illogic. Sorry for
making fun. I live it.

:)
-- 
NOSpaze nosp...@gmail.com

-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: Writing a book w/F16?

2011-12-10 Thread NOSpaze
On Sat, 2011-12-10 at 11:20 -0800, Linda McLeod wrote:
 Get FocusWriter for sure...

Nice and fast! Handle tabs below! Trying to understand what a session
is. Tx.

-- 
NOSpaze nosp...@gmail.com

-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: Googlecl

2012-02-09 Thread NOSpaze
On Thu, 2012-02-09 at 16:31 +, Timothy Murphy wrote:
 I have yum-installed googlecl
 ...
 I have done that, and I still have no idea
 what the project is or is about.

Tim, I don't use it for a long time. But I still have some notes, which
could for that reason be outdated. I've used it mainly to maintain my
calendar and check it from everywhere. Here they are:

Blogger
google blogger post --tags GoogleCL, awesome --title Test Post I'm posting 
from the command line
google blogger post blogpost.txt
google blogger list title,url-site # List posts
google blogger delete --title Test Post
google delete --title Silly post number [0-9]* # Delete posts matching regex
google tag --title Dev post --tags Python, software # label an existing post

Calendar
google calendar add Dinner party with George today at 6pm # add event to 
calendar
google calendar today # List events for today only.
google calendar list --date 2010-06-01,2010-06-30 # List events.
google calendar delete --title Dinner party with George # Delete an event.
google calendar today list --cal .* | egrep '\[.*\]' # List all calendars

Contacts
google contacts add J. Random Hacker, jran...@example.com
google contacts list name,email --title J. Random Hacker
google contacts delete --title J. Random Hacker

Docs
google docs delete --title Evidence
google docs list title,url-direct --delimiter :  # list docs
google docs upload the_bobs.csv ~/work/docs_to_share/*
gdata-python-client = 1.3.0 ONLY
google docs edit --title Shopping list --editor vim
google docs get --title Homework [0-9]*

Picasa
google picasa create --title Vermont Test --tags Vermont vermont.jpg
google picasa get --title Vermont Test /path/to/download/folder
google picasa list title,url-direct --query A tag
google picasa post --title Vermont Test ~/old_photos/*.jpg # Add to an album
google picasa tag --title Vermont Test --tags places
google picasa delete --title Vermont Test # delete entire album

Youtube
google youtube post --category Education --devtags GoogleCL killer_robots.avi
google youtube delete --title killer_robots.avi
google youtube list # list my videos
google youtube tag -n .*robot.* --tags robot

Greets!

-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: bash script regular expression

2012-02-10 Thread NOSpaze
On Thu, 2012-02-09 at 23:31 -0800, Alejandro Rodriguez Luna wrote:
 I expected this
 RSA Secure Server Certification Authority
 VeriSign Class 1 CA Individual Subscriber-Persona Not Validated
 but i got this
 RSA
 Secure
 Server
 Certification
 Authority
 VeriSign
 Class
 1
 CA
 Individual
 Subscriber-Persona
 Not
 Validated

The default field separator ($IFS) is usually space or tab or newline.
Read: http://bash.cyberciti.biz/guide/$IFS 
-- 
NOSpaze nosp...@gmail.com

-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: hacked - looking for doc/suggestions on hardening/securing systems from the start

2013-12-18 Thread NoSpaze
Common rootkits that exploit weaknesses of old systems. I'd say it's
enough to keep updated systems. If want some more hardening, close
opened ports, use a firewall or iptables, create a DMZ, use strong
passwords, disable unneeded services.

Re included the list. There are people who reads the threads. Sorry for
the top-posting, I started :(

Merry christmas.

On Wed, 2013-12-18 at 12:50 -0500, bruce wrote:
 Hey Rodolfo.
 
 That's just it, I have no idea how it was hacked.. it might have been
 a security hoole in the older FC I was using...
 
 the rootkits are
 cb Rootkit, SHV4 Rootkit, SHV5 Rootkit, Lite5-r Rootkit
 
 
 
 On Wed, Dec 18, 2013 at 12:45 PM, Rodolfo Alcazar Portillo
 nosp...@gmail.com wrote:
  As it in not common to be hacked on linux, and linux is really strong after
  install, perhaps you could specify a little under what conditions you were
  hacked. Was a physical intrusion? communicational? software? a web page? an
  open service or port? an injection? stolen passwd? Normally, hacking a linux
  box is the result of an inconscious administrator, sorry.
 
  If the information you have is sensitive, -has some cost- you need to invest
  proportionally to it on security -hardening software, hardware, physical
  access.. etc.- Most persons on this list know enough to protect information
  to a certain level, but if you want to protect very expensive information,
  you should invest -as I said, proportionally- on a specialist. If not,
  google is enough.
 
  Hope you find the solution...
 
  R
 
 
 
  bruce badoug...@gmail.com wrote:
 
  Hey guys. - subject says it all!!
 
  For a basic centos/fedora install. Need to have
  pointers/docs/suggestions/solid steps to actually harden/secure a
  system.
 
  I've looked at a bunch of different articles/sites, so I'm also turning
  here.
 
  Also, are there any good (i know) security lists/resources (people) I
  could talk to about remotely hiring for this process..
 
  thanks
 
  'ppreciate it!!
 
 
  --
  Sent from my Android device with K-9 Mail. Please excuse my brevity.

-- 
--
Rodolfo Alcazar Portillo - rodolf...@gmail.com
otbits.blogspot.com / counter.li.org: #367962
--


-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: More antivirus talk - comodo antivirus for linux

2013-08-14 Thread NOSpaze
On Wed, 2013-08-14 at 18:19 -0400, linuxnuts...@videotron.ca wrote:
 Has anybody heard of this, or even tried it?
 
 http://www.comodo.com/home/internet-security/antivirus-for-linux.php

In fact, a quick search at your mail domain (.com) shows a lot of
windows software useful for windows, including this antivirus. Not
related to this list, thanks.
http://pages.videotron.com/g225/index.html

;)

--
nosp...@gmail.com
otbits.blogspot.com / counter.li.org: #367962
--
Es gibt kein unmoralisches Buch. Bücher sind gut geschrieben oder
schlecht geschrieben. Das ist alles.
- Oscar Wilde


-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: Ogg to mp3, anyone?

2012-02-19 Thread NOSpaze
On Mon, 2012-02-20 at 01:03 +, Timothy Murphy wrote:
 I'm looking for a Fedora/KDE application to convert ogg music format to mp3.
 (My Android phone does not accept .ogg files.)

FILENAME=~/mp3/Paradoxes/NeverSayNever.ogg
ffmpeg -i $FILENAME -ab 128 ${FILENAME/.ogg/.mp3}

However, converting to any lossy format causes the audio to lose quality
each time a compression is made (that means wav-ogg loses something;
ogg-mp3 loses even more).

Greets.
-- 
NOSpaze nosp...@gmail.com

-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Mockup tool?

2012-02-27 Thread NOSpaze
Hi. Does Fedora (16) include any mockup tool? 
(something like mockflow.com or mockingbird.com, but not online)...

Thanks, greetings.
-- 
NOSpaze nosp...@gmail.com

-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: Mockup tool?

2012-02-29 Thread NOSpaze
Am 27.02.2012 14:56, schrieb NOSpaze:
  Hi. Does Fedora (16) include any mockup tool? 
  (something like mockflow.com or mockingbird.com, but not online)...
On Wed, 2012-02-29 at 08:42 +0100, Christian Kalkhoff wrote:
 very interesting question that led me to
 http://pencil.evolus.vn/en-US/Home.aspx

Well, it's an option -not a binary, but a firefox plugin-. Just
installed and currently working on it.

Thanks!
-- 
NOSpaze nosp...@gmail.com

-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: F16 rocks ! (w/XFCE?)

2012-03-16 Thread NOSpaze
On Fri, 2012-03-16 at 08:19 +, John Maclean wrote:
 +1 

f16++

 (F16+XFCE)^awesome = ^_^

Dear John/friends, I feel gnome kinda heavy, and want to try xfce. But
every time I started, I've felt frustrated. Keyboard shortcuts. desktops
(+ shotrcuts), menus, alt-f2, devilspie (works with xfce?), autologin,
security  keys, and so on. Maybe it's easy, but don't want to spend a
whole weekend digging.

Does anyone knows any quick and concrete tutorial for xfce (better if
fedora oriented)? Really want to use xfce or any lightweight desktop!

Thanks!
-- 
NOSpaze nosp...@gmail.com

-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: F16 rocks ! (w/XFCE?)

2012-03-16 Thread NOSpaze
On Fri, 2012-03-16 at 11:52 +0200, Alchemist wrote:
 Fedora 15 XFCE Desktop tour https://www.youtube.com/watch?v=NCMcH469ATI
 HOWTO Customize XFCE http://forums.fedoraforum.org/showthread.php?t=265583
 look at theese ^

Perfect, just what I need. I'll try it. Thanks!
-- 
NOSpaze nosp...@gmail.com

-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: [OT] Fedora 18 code name

2012-04-04 Thread NOSpaze
On Tue, 2012-04-03 at 14:07 -0400, nu...@gmx.com wrote:
 On Fri, Mar 30, 2012 at 09:13:33PM -0400, Tom Horsley wrote:
  I think Fedora 18 should take a radical approach to code
  names, one that no one would ever expect. How about:
  
  Fedora 18
 
 Fedora 17++
 
 Fedora 19 Beta??

Fedora New Version


-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


F18: Gnome panel icons w a s t e s p a c e !

2013-01-21 Thread NOSpaze
Hi. 

After update to F18, my gnome panel icons (20px) spacings are too wide
(perhaps 1cm, fallback mode).

Googled, tried modifying spacings width gconf-editor, gconftool-2
gtk-widgets.css, ~/.config/gtk-3.0/settings.ini, but no success. They
are still wasting space.

Am I missing something? How can I reduce this space wasting?

Thanks! F18 going well as far...
-- 
NOSpaze nosp...@gmail.com

-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: [OT] Security layers

2013-03-11 Thread NOSpaze
On Sat, 2013-03-09 at 19:38 +0100, Reindl Harald wrote:
 Am 09.03.2013 19:35, schrieb Markus Lindholm:
  On 9 March 2013 19:07, Reindl Harald h.rei...@thelounge.net wrote:
  Am 09.03.2013 18:58, schrieb Markus Lindholm:
  I have a box with F18 on which I use automatic login and I just
  noticed that Evolution doesn't work any more. 
  most likely because virtually nobody has open his
  machine so blindly these days
 but a honest one - what rides people to not protect their computers?

Why does everybody should? Each context is different.

Security has its layered rules equivalent as networking. If layer 1
(physical) security is sufficient, you don't need to protect the other
layers. 

Security is not using locks on each layer (doorlocks, kengsinton,
routing password, firewalling password, bios password, gnome password,
application password). That's inaccessibility. 

:)


-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: f18...

2013-04-01 Thread NOSpaze
On Mon, 2013-04-01 at 21:03 +0200, Marc Blanc wrote:
 Le Mon, 01 Apr 2013 11:12:09 -0700,
 Joe Zeff j...@zeff.us a écrit :
 ping 18.9.22.69
 Right :
 ping 18.9.22.69
 PING 18.9.22.69 (18.9.22.69) 56(84) bytes of data.
 64 bytes from 18.9.22.69: icmp_req=1 ttl=237 time=112 ms
 64 bytes from 18.9.22.69: icmp_req=2 ttl=237 time=112 ms

I would say you have problems with your profile, access rights, maybe?
or your configuration, dns spoof probably? or your connection, packet
loss, occassionally? 

But you dont' say enough and make less effort than the people on this
list to solve your problem. 

Hope this helps: this is the process of loading a web page:

a) browser tries to solve the IP address 

-Try dig www.google.com on the command line, you should obtain an IP
address.

b) browser tries to connect to web server

-Try telnet 173.194.45.83 80 (thats the IP address you found and port
80), and you should obtain an answer like this:

Trying 173.194.45.83...
Connected to 173.194.45.83.
Escape character is '^]'.

c) browser tries to load some web page.

-Immediately after that Escape character... write:
GET /

and press ENTER. You should see some HEADERS and then some HTML.

If you arrived here, your connection is ok and the problem are your
profiles (google, mozilla). If not, you have a problem on your
connection. 

Here is an example:

$ dig www.google.com

;  DiG 9.9.2-rl.028.23-P1-RedHat-9.9.2-8.P1.fc18  www.google.com
;; global options: +cmd
;; Got answer:
;; -HEADER- opcode: QUERY, status: NOERROR, id: 8185
;; flags: qr rd ra; QUERY: 1, ANSWER: 5, AUTHORITY: 0, ADDITIONAL: 1
;; OPT PSEUDOSECTION:
; EDNS: version: 0, flags:; udp: 4096
;; QUESTION SECTION:
;www.google.com.IN  A
;; ANSWER SECTION:
www.google.com. 1263IN  A   173.194.35.48
www.google.com. 1263IN  A   173.194.35.51
www.google.com. 1263IN  A   173.194.35.50
www.google.com. 1263IN  A   173.194.35.49
www.google.com. 1263IN  A   173.194.35.52
;; Query time: 35 msec
;; SERVER: 192.168.1.254#53(192.168.1.254)
;; WHEN: Tue Apr  2 03:32:24 2013
;; MSG SIZE  rcvd: 123

$ telnet 173.194.35.48 80

Trying 173.194.35.48...
Connected to 173.194.35.48.
Escape character is '^]'.
GET /
HTTP/1.0 302 Found
Location: http://www.google.uk/
Cache-Control: private
Content-Type: text/html; charset=UTF-8
Set-Cookie:
PREF=ID=643f424d5f4a9092:FF=0:TM=1365866362:LM=1364866562:S=1hOfiUim-wQtaDRa; 
expires=Thu, 02-Apr-2015 01:32:42 GMT; path=/; domain=.google.com
Set-Cookie:
NID=67=lfSZNSW_Bv9MlhPZQIswCy-0qqXdJitz7lqLkJBpGNOQGpeRBTnM3rO3CkG3gSU-gRu2q73FDKNH60Amgl63pz2-QSlWs4hcidl6rbYsf6vTqz8UOx0GzuAn2BxO4duP;
 expires=Wed, 02-Oct-2013 01:32:42 GMT; path=/; domain=.google.com; HttpOnly
P3P: CP=This is not a P3P policy! See
http://www.google.com/support/accounts/bin/answer.py?hl=enanswer=151637
for more info.
Date: Tue, 02 Apr 2013 01:32:42 GMT
Server: gws
Content-Length: 218
X-XSS-Protection: 1; mode=block
X-Frame-Options: SAMEORIGIN

HTMLHEADmeta http-equiv=content-type
content=text/html;charset=utf-8
TITLE302 Moved/TITLE/HEADBODY
H1302 Moved/H1
The document has moved
A HREF=http://www.google.uk/;here/A.
/BODY/HTML
Connection closed by foreign host.

The next step is to trace connection with tcpdump, mtr.

R

-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: How to search for large files 1Gigabyte via command line

2012-08-14 Thread NOSpaze
On Mon, 2012-08-13 at 20:41 +0100, Aaron Gray wrote:
 On 13 August 2012 19:53, Jack Craig jack.craig.ap...@gmail.com wrote:
 
 du -ahx * | sort -rh | head -30

Kinda same approach with find, just for files...

find . -type f -print0 | xargs -0 du -h | sort -hr | head -30

Greets!

-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


To telnet or to netcat... that's the question

2012-08-31 Thread NOSpaze
Hi. If I do:

# telnet 127.0.0.1 5038

Trying 127.0.0.1...
Connected to localhost.localdomain (127.0.0.1).
Escape character is '^]'.
Asterisk Call Manager/1.0

Action: Login
ActionID: 1
Username: youwanna
Secret: uwanna

... And asterisk responds:

== Manager 'youwanna' logged on from 127.0.0.1

But if I use nc and do...

# nc 127.0.0.1 5038  EOF
 Action: Login
 ActionID: 1
 Username: youwanna
 Secret: uwanna
 
 EOF
Asterisk Call Manager/1.0

... Asterisk responds:

== Connect attempt from '127.0.0.1' unable to authenticate

Notice the TEXT is EXACTLY THE SAME (pasted in both cases) tried 762753 times 
or something less. Tcp port.
Why is that difference? Is nc sending a different string sequence or what?

TIA...
-- 
NOSpaze nosp...@gmail.com

-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: To telnet or to netcat... that's the question

2012-08-31 Thread NOSpaze
On Fri, 2012-08-31 at 14:14 +0100, Bryn M. Reeves wrote:
 On 08/31/2012 01:41 PM, NOSpaze wrote:
  But if I use nc and do...
  
  # nc 127.0.0.1 5038  EOF
   Action: Login
   ActionID: 1
   Username: youwanna
   Secret: uwanna
   
   EOF
  Asterisk Call Manager/1.0
 
 Does the behaviour differ if you type or paste the lines in and then hit
 Ctrl-D (or your keybinding for EOF) rather than use a shell here document?

No. Even when I slowly wrote it.

 I think this might cause nc to send one big packet with all the lines
 which might not be what asterisk expects. I'd also expect telnet to turn
 of nagling on the socket (so data is sent immediately rather than
 buffering). I think nc doesn't do that although it does provide a
 configurable send/receive delay interval (-i).

I used big delays. No difference.

 Failing that I would try a tethereal/tcpdump to see what's different in
 the data going over the wire.

Already tried, tcpdump -X. The process is completely different (telnet
is interactive, nc don't), and I dont' get which is the precise problem.
I've already used nc with asterisk, and worked fine. Maybe is my
asterisk version...

Thanks!

-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: To telnet or to netcat... that's the question

2012-08-31 Thread NOSpaze
On Fri, 2012-08-31 at 22:31 +0800, Ed Greshko wrote:
 On 08/31/2012 10:15 PM, Timothy Murphy wrote:
  Ed Greshko wrote:
 
  Maybe add -o filename to record the session?  Or, try using the -i
  parameter to delay sending data?
  I don't see a -o option in man telnet.
  Have I misunderstood you?
 Since nc is giving the problem  I'm suggesting options within nc  
 Same goes for -i

Already tried -i. No success. Already tried:

# iconv -f UTF-8 -t ISO8859-1 myscript  myscript.ISO8859-1

(hah! could it be caused some encoding issue?)

# chmod +x myscript.ISO8859-1
# ./myscript.ISO8859-1

and 

# . ./myscript.ISO8859-1

(hah! could it be caused by the environment vars?)

asterisk said == Connect attempt from '127.0.0.1' unable to
authenticate. This is making me lose the sense of existence. THIS USED
TO WORK!!!

:(
-- 
NOSpaze nosp...@gmail.com

-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: mysqldump on Fedora 16 slightly OT

2012-09-08 Thread NOSpaze
On Sat, 2012-09-08 at 15:53 +1000, Roger wrote:
 I got this command line from Google
 mysql mydb1 -u user -p password -e 'select tables like 
 field_data_field%'| xargs | mysqldump -u user -p password d7x 

I can't see the select tables command exists, although tables is a
table with all the tables list. Anyway, you can try something like this:

$ for table in $(mysql mydb1 -Bse 'show tables'); do mysqldump mydb1 
$table$table.sql; done

or using xargs,

$ mysql mydb1 -Bse 'show tables'|xargs -I TAB mysqldump mydb1 TAB -r TAB.sql

which produce both the same result.

Greetings.
-- 
Rodolfo Alcazar nosp...@gmail.com

-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: iptables fubared?

2012-10-04 Thread NOSpaze
On Thu, 2012-10-04 at 12:45 -0700, Mark Space wrote:
 Hi all, I'm having a bit of trouble setting up a new web server. The
 last time I set up up it went smoothly, but for some reason I can't
 connect to the HTTP port on this one.
 Any clues what I'm missing?

You are trying to solve a problem with many variables simultaneously (I
can't even understand the purpose of your iptables rules). 

Try solving one problem at the time. First: routing. If you can ping
effectively from the outside, routing is ok. Second: tcp ports. Check if
you can find the opened ports. Try debugging the problem with tcpdump.
nmap can help you check for opened ports.
-- 
NOSpaze nosp...@gmail.com

-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: iptables fubared?

2012-10-05 Thread NOSpaze
On Thu, 2012-10-04 at 15:00 -0700, Mark Space wrote:
 I tried this with tcpdump running on the server.  It surprised me when I 
 saw tcpdump respond.  Firefox still says cannot connect from an 
 external workstation, but my server is seeing something at least.
 
 I won't bore you with all of it, but here's the first bit:
 
 $ sudo  tcpdump -i eth0 -n port 80
 tcpdump: verbose output suppressed, use -v or -vv for full protocol decode
 listening on eth0, link-type EN10MB (Ethernet), capture size 65535 bytes
 21:54:16.482166 IP 99.92.208.198.52890  10.211.163.215.http: Flags [S], 
 seq 2014763367, win 8192, options [mss 1460,nop,wscale 
 2,nop,nop,sackOK], length 0
 21:54:16.482251 IP 10.211.163.215.http  99.92.208.198.52890: Flags 
 [R.], seq 0, ack 2014763368, win 0, length 0
 21:54:16.731133 IP 99.92.208.198.52891  10.211.163.215.http: Flags [S], 
 seq 1148493083, win 8192, options [mss 1460,nop,wscale 
 2,nop,nop,sackOK], length 0
 21:54:16.731183 IP 10.211.163.215.http  99.92.208.198.52891: Flags 
 [R.], seq 0, ack 1148493084, win 0, length 0
 21:54:17.080885 IP 99.92.208.198.52890  10.211.163.215.http: Flags [S], 
 seq 2014763367, win 8192, options [mss 1460,nop,wscale 
 2,nop,nop,sackOK], length 0
 {{ sinpage }}
 ^C
 36 packets captured
 36 packets received by filter
 0 packets dropped by kernel
 
 The server appears to be trying to give a response. (99.92.208.198 is my 
 workstation external IP address).  It's like FF can't get the response.  
 Hmm.

Ok. Did you check you can ping? First, routing, second, transport (ISO
layers 3, then 4, then 5, then 6, then 7).

Instead of firefox, use telnet (from windows or linux), this way:

telnet my.ip.addr.ess 80

then  write 

GET / 
(press ENTER TWICE)

You should see html code.

:)

-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: [OT] Microsoft Bashing

2012-11-15 Thread NOSpaze
On Tue, 2012-11-13 at 12:12 +, Arthur Dent wrote:
 I was sitting in a dentist's waiting room
...
 Good ammunition for all you Microsoft bashers...

Dentist  reading MS ?? U likes pain!

;)

-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: Hack attacks

2012-11-18 Thread NOSpaze
On Mon, 2012-11-19 at 10:16 +1100, Roger wrote:
 Is there any way to trace ip addresses back past the originating ISP.
 I've been using whois but it seems limited.

Could mtr be of any help?
-- 
NOSpaze nosp...@gmail.com

-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: fedora books

2012-12-01 Thread NOSpaze
On Sat, 2012-12-01 at 01:37 -0500, Brian West wrote:
 Hello everyone I'd like to hear any suggestions you may have when it 
 comes to a good book to learn the features of fedora.  while there are 
 countless books that teach you how to use linux in the general way.  
 each distribution has its own unique set of tools and features.

You will not find a book about the features of some specific laptop
model, car model or mobile phone. The same with a distro. A car differs
to others basically in the way components are assembled. The same with a
distro. They both share the same components in essence.

A distro differ from others basically in directories organization and
some scripts. The rest is basically the same among others with the same
purpose (say, suse, debian, ubuntu). The best way to learn features of a
distro is using it with some purpose (ie. write a book, handle bank
accounts, play games). If you want to learn linux, the best kind of
books are the certification-oriented books. 

:)

-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org