Re: [arch-general] Thank you

2014-01-06 Thread Alper Kanat
I wish Arch was supported officially on things like AWS and other server
infrastructures. It's clearly my favourite distro for many years. But it's
pretty heartbreaking to see that its support is only community driven.


---
Quis custodiet ipsos custodes?


On Mon, Jan 6, 2014 at 7:23 PM, Mike Cloaked mike.cloa...@gmail.com wrote:

 May I add my thanks to all the developers and maintainers for making
 ArchLinux the excellent distribution that it is.  I converted all my
 machines to Arch over the past couple of years, and I value the philosophy,
 the up-to-datedness, and the speedy and efficient package management, as
 well as the amazing level of stability given how current the packages are.
 I would particularly like to thank Rod Smith for helping in herding me, as
 one of the rEFInd learners, into the knowledge pen, and making UEFI boot
 work well on so many relatively new machines. The rolling distro model  and
 the Arch way really do work fantastically well.

 May ArchLinux users have a great 2014 and beyond.


 On Mon, Jan 6, 2014 at 12:30 PM, arnaud gaboury arnaud.gabo...@gmail.com
 wrote:

  On Mon, Jan 6, 2014 at 1:05 PM, Genes Lists li...@sapience.com wrote:
  
  
Over the last 2 weeks I have replaced 3 fedora servers with Arch - and
  want to say thank you . That's the last of my fedora machines now and I
 am
  all Arch and they are all working really well.
  
   The new boxes are haswell UEFI and boot using refind. Setting this up
  was straightforward with Arch.
  
   Thank you for making Arch the best linux distro.
  
   Happy New Year
  
   gene
 
 
  I just wanted to add to your testimony I run Arch too on a server and
  it is very pleasant to use.
  And YES, running Arch as a web server is a good and feasible solution,
  even with the high number of upgrades.
  Definitively one of the best distro out there, thanks to its very
  dynamic and reactive dev community.
 
  Thanks to all and HNY.
 



 --
 mike c



Re: [arch-general] Thank you

2014-01-06 Thread Alper Kanat
Hey Kyle,

Yes, I'm aware of DigitalOcean. Since many years, I used to have my own
server running Arch on Hetzner and now on DigitalOcean. I used to host my
ex-company's servers on Hetzner which were again Arch boxes. I personally
think that Arch has the best package manager in Linux world.

I now work for a different company and we recently decided to move our
servers from Rackspace to AWS (and we did). The thing is neither of those
providers officially support Arch. (Rackspace doesn't even support Ubuntu
btw -- at least on dedicated machines) So this is really frustrating. I
know that there are some efforts (AWS supported repo's, specially compiled
kernels etc..) to make Arch available on AWS but they didn't last.
Compiling  configuring everything to make the environment possible is not
an option due to time related concerns.

I do my best to spread the word btw. Hopefully Arch will be the next big
thing in Linux world some day. :)

---
Quis custodiet ipsos custodes?


On Tue, Jan 7, 2014 at 12:32 AM, Kyle k...@gmx.ca wrote:

 According to Alper Kanat:
 # I wish Arch was supported officially on things like AWS and other server
 # infrastructures. It's clearly my favourite distro for many years. But
 it's
 # pretty heartbreaking to see that its support is only community driven.

 This is still true on the most wellknown infrastructures such as AWS.
 However, Arch is officially supported on DigitalOcean[1], which has had
 the honor of being the fastest growing server provider of the past year.
 They officially provide Arch images for both 32-bit and 64-bit
 architectures, available on a per hour or monthly basis, depending on
 which is the lower price, similar to other so-called cloud hosting
 platforms. As far as I know, it's not the only provider to support Arch,
 but it is probably one of very few, and they seem to have the best
 service and specs for the price. Hope this helps.

 [1]: https://digitalocean.com/
 ~Kyle
 http://kyle.tk/
 --
 Kyle? ... She calls her cake, Kyle?
 Out of This World, season 2 episode 21 - The Amazing Evie



[arch-general] Multiple Wired Profiles with Systemd

2012-10-23 Thread Alper Kanat
Hey All,

I just switched to systemd. I work on an Arch Linux Virtualbox VM which
runs on Mac OS X. I assigned 3 NIC's to that VM and 2 of them have
ethernet-dhcp profiles defined and set in /etc/conf.d/netcfg to be started
at boot.

$ cat /etc/conf.d/netcfg
NETWORKS=(public local)

However on boot, I see messages like the following:

Oct 23 15:18:52 starbucks netcfg-daemon[168]: :: public up Interface eth0
does not exist
Oct 23 15:18:52 starbucks netcfg-daemon[168]: :: local up Interface eth1
does not exist
Oct 23 15:18:52 starbucks netcfg-daemon[168]: [fail]
Oct 23 15:18:52 starbucks systemd[1]: netcfg.service: main process exited,
code=exited, status=1
Oct 23 15:18:52 starbucks systemd[1]: Failed to start Netcfg multi-profile
daemon.
Oct 23 15:18:52 starbucks systemd[1]: Unit netcfg.service entered failed
state.
Oct 23 15:18:52 starbucks systemd[1]: Starting Network.
Oct 23 15:18:52 starbucks systemd[1]: Reached target Network.
Oct 23 15:18:52 starbucks systemd[1]: Starting Apache Web Server...

Checking the interfaces via ifconfig shows that none of them are up. If I
start netcfg service manually, both interfaces will be up successfully:

$ sudo systemctl start netcfg
$ sudo systemctl status netcfg
netcfg.service - Netcfg multi-profile daemon
  Loaded: loaded (/usr/lib/systemd/system/netcfg.service; enabled)
  Active: active (exited) since Tue, 23 Oct 2012 15:33:02 +0300;
18min ago
 Process: 354 ExecStart=/usr/bin/netcfg-daemon start (code=exited,
status=0/SUCCESS)
  CGroup: name=systemd:/system/netcfg.service
  ├ 408 dhcpcd -qL -t 60 eth0
  └ 474 dhcpcd -qL -t 60 eth1

I checked the forum to see if there are any solutions. Tried multi-user
services by enabling with the following commands resulted as the same:

$ sudo systemctl enable netcfg@public
$ sudo systemctl enable netcfg@local

Found out some threads on the forum that suggests to copy service
definitions and overwrite them but that didn't look like a solution to me.
All tickets created at flyspray was about 1 wireless - 1 wired setups. Some
of them are closed, marked as Not a bug.

Anyone having the same issue? Any suggestions? Currently I enabled
netcfg.service. Sometimes all NICs are disabled, sometimes both are
enabled. Mostly however only 1 NIC (the first one) is up.

---
Quis custodiet ipsos custodes?


Re: [arch-general] New install media 2012.08.04 uses ZSH, if I may ask, why?

2012-08-07 Thread Alper Kanat
After I've read the whole thread, I decided to give zsh a try and so far I
liked it. Before that, I had custom scripts that handled ssh-agent, screen
and many other things and now projects like OMZ takes care of it. However
django seems to have a problem with it. I believe it can't set the paths
correctly and therefore settings module cannot be found. So far I only
experienced this problem.

---
Quis custodiet ipsos custodes?


Re: [arch-general] Arch as a web server

2012-06-19 Thread Alper Kanat
Hey There,

As a Turkish digital social agency and a startup, we have recently
converted all our physical production servers to seperate Arch Linux VM's.
That not just saved us a lot money but also gave us the flexibility of a
primitive cloud. Being cutting edge led us to always support the upstream
and we experience no problems at all. IMHO it's hard to create and maintain
deb packages. Most common pattern is to find another project's deb files
and change accordingly. In Arch, you mostly have a single PKGBUILD file
which is super easy to create and modify. This saves lots of worktime when
we need a dependency which is not packaged. And contributing the distro
(via AUR) is a plus. :)

---
Quis custodiet ipsos custodes?


Re: [arch-general] Arch as a web server

2012-06-19 Thread Alper Kanat
We bought our VPS' from Hetzner btw. Hetzner is a German ISP which provides
cheap (starts from 7€ just look at the price page) but rock solid servers.
They don't officially support Arch Linux but the installation is trivial.

---
Quis custodiet ipsos custodes?


[arch-general] avahi problem

2012-04-05 Thread Alper Kanat
Hey There,

I've installed an Arch Linux server in our office for serving files over
the network via Bonjour/avahi. All computers are connected to an ADSL modem
via wireless. Only the server is connected via LAN. When I start the
server, I can ping it:

--- CMD OUTPUT
---

$ ping office.local
PING office.local (192.168.1.107): 56 data bytes
64 bytes from 192.168.1.107: icmp_seq=0 ttl=64 time=1.080 ms
64 bytes from 192.168.1.107: icmp_seq=1 ttl=64 time=1.671 ms
64 bytes from 192.168.1.107: icmp_seq=2 ttl=64 time=0.979 ms
^C
--- office.local ping statistics ---
3 packets transmitted, 3 packets received, 0.0% packet loss
round-trip min/avg/max/stddev = 0.979/1.243/1.671/0.305 ms

$ ping 192.168.1.107
PING 192.168.1.107 (192.168.1.107): 56 data bytes
64 bytes from 192.168.1.107: icmp_seq=0 ttl=64 time=1.194 ms
64 bytes from 192.168.1.107: icmp_seq=1 ttl=64 time=1.229 ms
^C
--- 192.168.1.107 ping statistics ---
2 packets transmitted, 2 packets received, 0.0% packet loss
round-trip min/avg/max/stddev = 1.194/1.212/1.229/0.017 ms

After a few minutes however I can't ping it using the .local address:

*$ ping office.local*
*ping: cannot resolve office.local: Unknown host*

$ ping 192.168.1.107
PING 192.168.1.107 (192.168.1.107): 56 data bytes
64 bytes from 192.168.1.107: icmp_seq=0 ttl=64 time=1.375 ms
64 bytes from 192.168.1.107: icmp_seq=1 ttl=64 time=1.562 ms
^C
--- 192.168.1.107 ping statistics ---
2 packets transmitted, 2 packets received, 0.0% packet loss
round-trip min/avg/max/stddev = 1.375/1.469/1.562/0.094 ms

--- CMD OUTPUT
---

If I restart avahi-daemon, we can ping office.local for another few
minutes. Any ideas?

---
Quis custodiet ipsos custodes?


Re: [arch-general] avahi problem

2012-04-05 Thread Alper Kanat
I did. However I found out that there's not much difference in the case of
host resolution. When hosts line is like the following:

$ cat /etc/nsswitch.conf | grep hosts
hosts: files dns

I can ping office.local from other machines on the network. If I change
that line like this:

hosts: files mdns4_minimal dns mdns4

then I realized that host resolution is a little bit more slower.
Connecting via SSH takes 3-4 seconds longer. Even if I change the line like
this, office.local becomes inaccessible after a few minutes. I tried
enabling avahi-dnsconfd which also made no difference.

---
Quis custodiet ipsos custodes?


On Thu, Apr 5, 2012 at 14:32, Jochen Maes (Gcool) gcool...@gmail.comwrote:

 Have you configured your /etc/nsswitch.conf (server side) as suggested
 on https://wiki.archlinux.org/index.php/Avahi#Hostname_resolution ?

 2012/4/5, Alper Kanat tu...@raptiye.org:
  Hey There,
 
  I've installed an Arch Linux server in our office for serving files over
  the network via Bonjour/avahi. All computers are connected to an ADSL
 modem
  via wireless. Only the server is connected via LAN. When I start the
  server, I can ping it:
 
  --- CMD OUTPUT
 
 ---
 
  $ ping office.local
  PING office.local (192.168.1.107): 56 data bytes
  64 bytes from 192.168.1.107: icmp_seq=0 ttl=64 time=1.080 ms
  64 bytes from 192.168.1.107: icmp_seq=1 ttl=64 time=1.671 ms
  64 bytes from 192.168.1.107: icmp_seq=2 ttl=64 time=0.979 ms
  ^C
  --- office.local ping statistics ---
  3 packets transmitted, 3 packets received, 0.0% packet loss
  round-trip min/avg/max/stddev = 0.979/1.243/1.671/0.305 ms
 
  $ ping 192.168.1.107
  PING 192.168.1.107 (192.168.1.107): 56 data bytes
  64 bytes from 192.168.1.107: icmp_seq=0 ttl=64 time=1.194 ms
  64 bytes from 192.168.1.107: icmp_seq=1 ttl=64 time=1.229 ms
  ^C
  --- 192.168.1.107 ping statistics ---
  2 packets transmitted, 2 packets received, 0.0% packet loss
  round-trip min/avg/max/stddev = 1.194/1.212/1.229/0.017 ms
 
  After a few minutes however I can't ping it using the .local address:
 
  *$ ping office.local*
  *ping: cannot resolve office.local: Unknown host*
 
  $ ping 192.168.1.107
  PING 192.168.1.107 (192.168.1.107): 56 data bytes
  64 bytes from 192.168.1.107: icmp_seq=0 ttl=64 time=1.375 ms
  64 bytes from 192.168.1.107: icmp_seq=1 ttl=64 time=1.562 ms
  ^C
  --- 192.168.1.107 ping statistics ---
  2 packets transmitted, 2 packets received, 0.0% packet loss
  round-trip min/avg/max/stddev = 1.375/1.469/1.562/0.094 ms
 
  --- CMD OUTPUT
 
 ---
 
  If I restart avahi-daemon, we can ping office.local for another few
  minutes. Any ideas?
 
  ---
  Quis custodiet ipsos custodes?
 



Re: [arch-general] avahi problem

2012-04-05 Thread Alper Kanat
The firewall on our modem is disabled. Afaik default Arch Linux
installations doesn't come up with firewall enabled. I don't have a
firewall on my Mac either. So I believe this has nothing to do with the
firewall. Thank you for your interest btw.

---
Quis custodiet ipsos custodes?


On Thu, Apr 5, 2012 at 15:05, Jochen Maes (Gcool) gcool...@gmail.comwrote:

 Are you running a firewall on the Arch box (or elsewhere in the
 network) through which the avahi traffic has to pass? As I understand
 it (various similar issues found through Google), you need to
 explicitly allow mulitcast DNS traffic (udp 5353) for this feature to
 work.


[arch-general] cannot generate enough entropy for pacman-key --init

2011-10-15 Thread Alper Kanat
Hey There,

I have an Arch Linux box inside Virtualbox on a Mac that I use for
development purposes. I connect to this machine via SSH without any visual
interface. It's on [testing] and just upgraded to pacman 4.0 and after
installation it asked me to run pacman-key --init to generate the necessary
keys for my system. I did all of these inside GNU Screen (also tried without
it without any luck):

$ sudo pacman-key --init
gpg: Generating pacman keychain master key...

Not enough random bytes available.  Please do some other work to give
the OS a chance to collect more entropy! (Need 300 more bytes)


I pressed random bits with the keyboard but it didn't work so I fired up
another window inside screen and did cat /dev/urandom  /dev/null but that
also didn't work. So I found this [1] article and tried it again without any
luck.

So I'm basically stuck here. Can someone please help me? Since pacman is
bricked, I can't also install anything. Now I have to manually downgrade
pacman if I can't succeed.

Thanks!


[1] http://www.thingy-ma-jig.co.uk/blog/22-01-2010/generate-entropy-gnupg

---
Quis custodiet ipsos custodes?


Re: [arch-general] cannot generate enough entropy for pacman-key --init

2011-10-15 Thread Alper Kanat
Hello,

As I wrote earlier, I don't have a mouse interface at all since I'm
accessing the Arch box via SSH on my Mac. I checked the entropy level via
cat /proc/sys/kernel/random/entropy_level and it was around 58 at most. So I
installed rng-tools, changed TIMEOUT in /etc/conf.d/rngd from 0 to 10.

When I ran rngd -f -r /dev/urandom and ran pacman-key --init, it completed
in seconds. Issue solved. This is probably about being inside a VM which
limits the entropy level somehow.

---
Quis custodiet ipsos custodes?


Re: [arch-general] netcfg: complete documentation available?

2011-07-05 Thread Alper Kanat
Hey There,

In addition to these, I can't find any documentation regarding bridged
connections need for such cases like openvpn and virtual machine needs.

---
Quis custodiet ipsos custodes?


On Tue, Jul 5, 2011 at 17:45, XeCycle xecy...@gmail.com wrote:

 Hello, I am now trying netcfg for managing network connections, however
 I encountered some problems, and I didn't find the solution in the
 manual or the ArchWiki.  So I wonder whether a complete documentation is
 available.

 The two problems I encountered are:

 1. Ad-Hoc wireless lost ESSID.

 I used this (working) script to connect:

  #!/bin/bash
  NET_ESSID=ssid
  NET_KEY=passwd
  NET_GATEWAY=192.168.0.1
  NET_MYIP=192.168.0.3
  iwconfig wlan0 mode ad-hoc
  ifconfig wlan0 up
  iwconfig wlan0 essid $NET_ESSID key s:$NET_KEY channel auto
  ifconfig wlan0 $NET_MYIP
  route add default gw $NET_GATEWAY

 I tried to do the same with netcfg.  Here is the profile:

  CONNECTION='wireless'
  DESCRIPTION='Wi-Fi at home'
  PRE_UP=ip link set wlan0 down; iwconfig wlan0 mode ad-hoc
  INTERFACE='wlan0'
  SECURITY='wep'
  ESSID='ssid'
  KEY='s:passwd'
  IP='static'
  ADDR='192.168.0.2' # Please ignore this difference, I'm sure it's unused
  GATEWAY='192.168.0.1'
  DNS=('8.8.8.8')
  # Uncomment this if your ssid is hidden
  #HIDDEN=yes

 However, I cannot connect it.  I've configured my conky to monitor
 network connections, from what it showed, the ESSID is associated first,
 then lost after a few seconds.

 2. PPPOE won't start by itself.

 Here's the simple profile:

 CONNECTION='ppp'
 INTERFACE='eth0'
 PEER='provider'
 PPP_TIMEOUT=10

 When I run `sudo netcfg ppp`, it just got stuck there.  Then I opened
 another terminal, and ping some IP, then it got connected.

 Thank you.  These two problems have been bothering me for a week.

 --
 Carl Lei (XeCycle)
 Department of Physics, Shanghai Jiao Tong University
 OpenPGP public key: 7795E591
 Fingerprint: 1FB6 7F1F D45D F681 C845 27F7 8D71 8EC4 7795 E591



Re: [arch-general] netcfg: complete documentation available?

2011-07-05 Thread Alper Kanat
It wasn't there last time I checked.. :) Thanks man!

---
Quis custodiet ipsos custodes?


On Tue, Jul 5, 2011 at 18:00, joseph.mit...@gmail.com wrote:

 I added a section in the wiki just the other day:

 https://wiki.archlinux.org/**index.php/Netcfg#Configuring_**
 a_bridge_for_use_with_VMshttps://wiki.archlinux.org/index.php/Netcfg#Configuring_a_bridge_for_use_with_VMs

 -Mitch


Re: [arch-general] Synaptics Gesture Suite on Arch?

2011-06-30 Thread Alper Kanat
For such questions I'd like to remind the following XKCD:
http://xkcd.com/619/

---
Quis custodiet ipsos custodes?


On Wed, Jun 29, 2011 at 13:47, Christian Hesse l...@eworm.de wrote:


 Why would someone want to have a 'synaptics gesture suite'?



Re: [arch-general] Gnome 3 + KDE 4 are both large disappointments.

2011-04-10 Thread Alper Kanat
Hello Fellow Archers,

Most people say that Arch is cutting edge and saving GNOME2 as gnome2 is not
the the Arch way. I know that packaging and maintaining GNOME2 is a hard
task that no devs would want to take care of and that we'll most likely be
seeing unofficial repositories but what about python? Despite the upstream
python is 3.x, we still have python2 for failback? So is that the Arch way?

I believe there's no need to say that preserving GNOME2 is not the Arch way.
It's also unreliable and unwanted to use the unstable repository to test
GNOME3 since it's probably not ready for end users imho. We'll see better
integration soon.

---
Quis custodiet ipsos custodes?


[arch-general] python 2.7.1-3 - python 2.7.1-4 broke django

2011-01-10 Thread Alper KANAT
Hello Fellow Archers,

With the last update, I'm not able to run ./manage.py at all which I was
just before the update. (I can't downgrade because I wiped pacman cache)
Here is what it says:

$ ./manage.py runserver 192.168.56.101:8000
bash: ./manage.py: /usr/bin/python2^M: bad interpreter: No such file or
directory

$ /usr/bin/python2
Python 2.7.1 (r271:86832, Jan  6 2011, 11:51:37)
[GCC 4.5.2] on linux2
Type help, copyright, credits or license for more information.


$ /usr/bin/env python2
Python 2.7.1 (r271:86832, Jan  6 2011, 11:51:37)
[GCC 4.5.2] on linux2
Type help, copyright, credits or license for more information.


$ y -Qs python2
extra/python2 2.7.1-4
A high-level scripting language
extra/python2-distribute 0.6.14-2
A collection of extensions to the Python 2 distutils

Any ideas?

---
Quis custodiet ipsos custodes?


Re: [arch-general] python3 thoughts

2010-11-17 Thread Alper KANAT
That's nonsense. It's correct that Arch is an advanced user distribution but
you can't expect everyone to workaround each py application. Not everyone
that use Arch are developers.

---
Quis custodiet ipsos custodes?


2010/11/12 C Anthony Risinger anth...@extof.me

 On Fri, Nov 12, 2010 at 12:46 PM, Auguste Pop augu...@gmail.com wrote:
  The transition is indeed smooth, as least for me. I am just worrying
  that maybe most python utilities will remain using python2 for a
  rather long time.
 
  Considering the incompatibility in the fundamental print
  function/statement, I seriously doubt the number of python2 packages
  that can run under python3 without any modification.
 
  Most python programmers are clearly not so interested in the
  bleeding-edge technologies. That's what makes me frustrated as an Arch
  user.

 most problems are rather easy to workaround... so i don't know why
 there is so much fuss about py3k.  personally, i welcome it;  clean up
 basic language constructs, do it all at once, and make everything more
 consistent.  consistency is a wonderful thing for a developer.

 even the print statement is easy:

 print('this is a test')

 works correctly in python2 and py3k... only when you add multiple
 args, does it break:

 print('this is a test', 'so is this')

 because in python the comma is the tuple operator, not parentheses.
 all you have to do is join you args together before sending to print.
 or, just use:

 sys.stdout.write()

 thought some changes are more difficult, ultimately, it's not that
 disruptive imo.  it's clearly the path forward; no use in dragging
 feet.

 C Anthony



Re: [arch-general] Arch Linux on Freerunner

2009-07-09 Thread Alper KANAT
Hey There,

I've never heard of BeagleBoard. As a user of it, have you tried playing HD?
I really would like to have one if can play various formats of digital video
and of course on Arch!

Cheers!


Alper KANAT alperka...@raptiye.org


On Thu, Jul 9, 2009 at 09:00, Jaime Oyarzun Knittel 
joyar...@alumnos.inf.utfsm.cl wrote:

 Jaime Oyarzun Knittel wrote:
  Giovanni Scafora wrote:
  Hi guys,
 
  I just noticed this project [1], It's awesome. :-)
  What do you think about?
  Cheers,
 
  [1] http://archmobile.org/trac/wiki/AFR
 
 
  I noticed a few days ago too. Thanks for remembering, I'm gonna try it
  right now on a BeagleBoard.
 
  Cheers!
 

 Well, after some hours of work (most of the time downloading stuff) I
 finally did it, I'm on the testing phase now, and of course trying to
 compile more packages.

 Here's a picture of the BeagleBoard working. I hope I can get a real
 camera tomorrow, this one was taken with my cellphone
 http://twitpic.com/9ri9r .

 PS: If someone from archmobile.org reads this, please contact me, as
 your e-mail servers doesn't work.

 --
 mitoyarzun
 http://www.archlinux.org



[arch-general] Arch Linux Turkish Community Web Site is Renewed!

2009-06-29 Thread Alper KANAT
Hey There,

I, as one of the members of the Arch Linux Turkish Community, want to
present you our new website on http://www.archlinux.org.tr ! To have such an
address we have also co-op'd with Linux Foundation of Turkish Users (a.k.a.
LKD).

Hope you like it! [image: smile]


Alper KANAT alperka...@raptiye.org


[arch-general] Arch Linux Turkish Community @ 8th Free Software and Linux Festival

2009-04-17 Thread Alper KANAT
Hey There Guys,

We'd love to tell you about the latest news. We were at our stand all
day long on the very first day of 8th Free Software and Linux Festival.
What we've done?

* We've burnt 20 i686 and 10 x86_64 CD images and created paper CD cases
and gave everyone for free. (unfortunetly we were only capable of doing
40 of them and 30 cases since especially the cases were so expensive as
they were the best quality available)

* Made some installations for people who needs help

* Printed nearly 30 Turkish installation manual and gave them with the
CD's..

* Created a Arch Linux on Tap concept and made it available over the
network! :) They is very cool though since anyone can put the plug in
and install Arch with our very new and fresh Arch mirror (that have i686
and x86_64 packages for core, testing, community, extra).

We'll continue to do introduce Arch Linux to visitors of the festival
and help them to discover the beauty!

We also have some pictures for you! :) Comments are welcome!

http://www.flickr.com/photos/tunix/sets/72157616848517025/

-- 
Alper KANAT alperka...@raptiye.org



signature.asc
Description: OpenPGP digital signature


Re: [arch-general] i686 build machines for rent

2009-04-01 Thread Alper KANAT
I guess we should stick with upcoming processor architectures instead of
existing ones.. We're the future!

I can share some power of my Macbook Pro if you want.. :) All for 0xPD!


Alper KANAT alperka...@raptiye.org


Corrado Primier wrote:
 Since the decision of discontinuing the i686 binary repo, many people
 who can't or don't want to switch will need to recompile their
 packages themselves. Then there's also the problem of devs and TUs who
 don't have access to an x86_64 machine. Striving to find a solution I
 came up with an idea: selling processing power!
 
 That's right, guys. Do you own one of those slow i686-only dinosaurs?
 Do you need the power of an x86_64 machine to get your packages built
 quickly in i686 chroots? I'm here for you! I have a couple of machines
 I can dedicate to this task. I decided for a political price of
 20€/year; all revenues will be donated to the OxPD (One x86_64 Per
 Developer) Project.
 
 Before setting everything up I'd like to hear from the community if
 this is something they're interested in, and I'm obviously also asking
 all Arch contributors who have a decent machine (x86_64, that is...)
 to dedicate it to this important project that will allow all of our
 devs to continue their work for our favorite distro.
 
 Corrado Primier
 (Arch Linux Trusted User)



signature.asc
Description: OpenPGP digital signature


Re: [arch-general] bftp denyhosts

2008-10-13 Thread Alper KANAT
Maybe bftp doesn't use hosts.allow and deny files ? There's a setting
called tcp_wrappers for vsftpd..

I guess there might be a setting for bftp too..


Alper KANAT [EMAIL PROTECTED]

Sergey Manucharian yazmış:
 On Sun, 12 Oct 2008 20:58:12 -0400
 Daenyth Blank [EMAIL PROTECTED] wrote:
 
 How it it can happen?
 Anything in /etc/hosts.allow?

 
 No, it's empty. Besides that, I think, hosts.deny is of higher priority,
 isn't it?
 
 Sergey
 



signature.asc
Description: OpenPGP digital signature


[arch-general] About Turkish Mirrors

2008-10-01 Thread Alper KANAT
Hey There All Arch'ers,

I'm one of the Arch Linux Turkish Community members and want to remind
all of you that we have 2 (and counting) official mirrors in Turkey.

I write this e-mail to kindly request an update for pacman mirrorlist
and wiki pages like this one [1]..

ftp.linux.org.tr belongs to LKD (Turkish Linux Community Foundation) and
you can reach the team from: ftp at linux.org.tr

Thanks for all your great software and support!

Cheers!

[1] http://wiki.archlinux.org/index.php/Mirror

-- 
Alper KANAT
http://raptiye.org



signature.asc
Description: OpenPGP digital signature


Re: [arch-general] firefox-i18n Dependency and package mainteiner contact

2008-07-10 Thread Alper KANAT
I want to ask a question here.. I can't really distinguish the 
difference between Maintainer and Contributor... I wasn't able to see it 
on the AUR wiki.. So can someone enlighten me ?



Alper KANAT
http://raptiye.org


Roman Kyrylych wrote:

2008/7/9 Attila [EMAIL PROTECTED]:

On Mittwoch, 9. Juli 2008 14:07 Hugo Doria wrote:


You can run `pacman -Si package` to get maintainer contact ou use the
web interface on archlinux.org.

The question is not so stupid as it sounds in the first moment
because pacman -Si shows only the packager but we all speaks even from the
maintainer. And i must say that this point is for me not clear too and i will
give you a example with firefox-i18n:

pacman -Si firefox-i18n:
Packager : Jan de Groot [EMAIL PROTECTED]

First lines in the PKGBUILD (i delete only the email addresses):
# Maintainer: Thomas Baechler
# Contributor: Jaroslaw Swierczynski
# Contributor: Michal Hybner

And now? Result for me: Having the abs tree on my disk (or looking at
repos.archlinux.org) is the best solution to find out who maintains a
package.-)


The best way to know who _currently_ maintains a package
is looking at archlinux.org/packages/
because new maintainer may not always change the # Maintainer tag right away.


Note: A pacman -Si firefox shows this Packager : Unknown Packager.







Re: [arch-general] [arch-dev-public] maintainers wanted

2008-06-14 Thread Alper KANAT

I want to contribute Arch as a developer too... Please count me in.. :)


Alper KANAT
http://raptiye.org


Giovanni Scafora yazmış:

2008/6/14, JJDaNiMoTh [EMAIL PROTECTED]:

I'm glad for your interesting ( it's beatiful see users interested on
 distribuition's developing ), but I hope that the searching of new devs
 ( if it really happens ) starts from TUs, as is usual.


+1
I agree.
I'm interested too.






Re: [arch-general] Can we use the Firefox name?

2008-06-11 Thread Alper KANAT
As a user, I really dislike the name Iceweasel... I really dislike its 
logo and so on... Please don't change it unless you have to..



Alper KANAT
http://raptiye.org


Alessio Bolognino yazmış:

On Wed 2008-06-11 05:46, Alessio 'mOLOk' Bolognino wrote:

There is a thing that I have never understood: we ship the Firefox
package not branded, for the well known issues with the licensing of the
artwork, and that's fine; but are we sure we can name that package
firefox ? If you ask it to me, I think we can not: 

Mike Connor (a Mozilla guy :) said here [1]: 
Firefox (the name) is equally protected and controlled by the same 
trademark policy and legal requirements as the Firefox logo.  You're 
free to use any other name for the browser bits, but calling the browser 
Firefox requires the same approvals as are required for using the logo 
and other artwork.

[...]
If you are going to use the Firefox name, you must also use the rest of the
branding.

Mozilla may say that we are lying to users, because the name is named
firefox, but it doesn't contain Firefox.

Discuss!


And I just found this old bug report:
http://bugs.archlinux.org/task/5795

I don't know why I missed it the first time I searched for it.





[arch-general] Arch Linux Turkish Community Announcement

2008-06-11 Thread Alper KANAT

Hey All,

We, as the Turkish users of Arch Linux, have created our own community
to support, to translate, to develop our very beloved Linux distro on
all platforms. As our first gift to the community, we have translated
pacman completely to Turkish. It's also being tested by our community
right now.

We set http://www.archlinuxtr.org as our web site (it's currently under
development) and have SVN, Trac projects (still being configured). We
also have #archlinux.tr on irc.freenode.net

We look forward to see anyone commenting, helping, cheering, donating
and of course contributing our work.

Cheers..!

--
Alper KANAT
http://raptiye.org




Re: [arch-general] thunderbird 2.0.0.14: Don't see attachments anymore

2008-05-22 Thread Alper KANAT
Once again, we came to a conclusion that thunderbird-2.0.0.14 should 
have stayed in [testing] for a while until it's stable enough to make it 
into [extra]..



Alper KANAT
http://raptiye.org


Allan McRae yazmış:
For those wanting to work around this while waiting for an official 
solution:


gcc-42 package (i686): 
http://allan.mcrae.googlepages.com/gcc-42-4.2.3-1-i686.pkg.tar.gz
gcc-42 PKGBUILD: http://allan.mcrae.googlepages.com/PKGBUILD (not x86_64 
tested but I think it should work)

This installs alongside gcc-4.3.

add these lines the the thunderbird PKGBUILD then build...
 export CC=gcc-4.2
 export CXX=g++-4.2

Or you can install gcc-34 from the official repos and try that.

I can't upload a thunderbird build as the file size is bigger than 
googlepages allows (and I like mozilla branding which I can't distribute).


Allan





[arch-general] Anyone using fprint for authentication ?

2008-02-29 Thread Alper KANAT

Hey There,

I want to use my fingerprint scanner to login through GDM and GNOME 
Screensaver... I can do this right now partially... It always asks for 
my password which is maybe secure but annoying at the same time..


I want to use fingerprint login first and if it fails then I want to use 
password login..


Any ideas for how to do this ?

I'm trying this in GNOME Screensaver but it asks for the password 
whenever I slide my finger on the scanner..


--
Alper KANAT
http://raptiye.org



Re: [arch-general] New web page

2008-01-14 Thread Alper KANAT

Hey There,

Awesome work guys.. the site looks a lot better and complete than 
before.. I'm looking forward for other stuff like splashy and etc.. :)



Alper KANAT ([EMAIL PROTECTED])
http://raptiye.org


Julian DeFronzo yazmış:

Nice job guys! Logo and all looks good. Everything ties in well!

~Julian D


On Jan 12, 2008, at 5:07 PM, Philippe Miron wrote:


Nice jobs to everyone,

Same thing as Kesara Rathnayake:
 And when you guys going to give the new suit to the AUR? ;-)

If you need someone else, I can help you trying to reface it!
Nice work.

On Jan 12, 2008 8:08 PM, Kesara Rathnayake [EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED] wrote:


Web site looks great!
Well done!
I suggest that colours of Arch Wiki (and Flyspray may be) also should
changed accordingly.
And when you guys going to give the new suit to the AUR? ;-)
Keep it up.
Kesara

On Jan 12, 2008 11:28 PM, Jeffrey Parke [EMAIL PROTECTED]
mailto:[EMAIL PROTECTED] wrote:
 yes it is very nice. Congrats to all who where involved. Well, I
guess
 that would be everyone. WOOT!!


 Carl Mueller wrote:
  The new web page looks great!  Congratulations to all involved.
 
  Carl Mueller





--
[http://kesara.f2g.net]




--
Philippe






Re: [arch-general] iwlwifi in [testing] feedback

2008-01-05 Thread Alper KANAT
I'm using iwlwifi driver for almost 1 month and it works perfectly for
me.. I have a HP dv2580et laptop computer and it also works great after
suspend.. I'm using it with NetworkManager without any problem..


Alper KANAT ([EMAIL PROTECTED])
http://raptiye.org


Mac!eKs yazmış:
 Tobias Powalowski pisze:
 Hi
 just wanted to know if some user already tested the iwlwifi driver
 from [testing], if it works for you.
 
 works fine for me since:
 [2007-12-13 08:11] . iwlwifi (1.2.0-1 - 1.2.22-1)
 
 i686 with 4965 chipset