Tagged Questions
Arch Linux is a Linux distribution intended to be lightweight and simple. Its development is focused on simplicity, elegance, code correctness and minimalism from a developer's standpoint.
7
votes
1answer
164 views
Packaging Linux software while keeping a sane file structure
So I have created a piece of software which I wanna package and post to Arch Linux User Repositories, AUR, -should note, that I have never packaged anything for any distro before - and I have also got ...
6
votes
4answers
237 views
zlib build error with GHC
I'm using a VM with the following configuration:
Arch Linux (3.0-ARCH kernel)
GHC 7.0.3
cabal-install 0.10.2
Cabal library 1.10.1.0
When I try to build zlib using cabal...
$ cabal install zlib
...
6
votes
4answers
2k views
How to download source code with pacman, archlinux? [closed]
I am using Archlinux. I want to do the same thing like apt-get source coreutils, so I wonder that is it possible to download sources with pacman. I didn't find solution in manpages.
Arch guys, how ...
3
votes
2answers
56 views
prlimit64() linux function
Does anyone know what the prlimit64() C function does? I don't seem to have it on my x86_64 Ubuntu machine but it exists in Arch, and I can't seem to find anyone or thing who knows what it does.
3
votes
2answers
114 views
Effective way to find total number of files in a directory
I am building a Music file organizer(in python2) in which I read the metadata of all files & then put those file in the required folder.
Now, I am already ready with the command line interface ...
3
votes
1answer
100 views
how to see release notes with pacman
Hi all:
Like many fellow archers, i use pacman to update my softwares each day
often there's update such as this:
foo-1.1 ---> foo.1.2
i wonder if there's a way to see what has been updated from ...
2
votes
1answer
116 views
Coffeescript 1.1.3 Watch only works once
I have nodejs v0.6.3 and coffeescript 1.1.3. on Archlinux.
I know they changed the way watch works in the latest release of coffeescript and that watch requires at least node v0.6.2.
In my case it ...
2
votes
2answers
123 views
getting started with gtkd
I'm new to D, and want to experiment with gtkd. I'm on arch linux, and installed the dmd2-complete (dmd 2.0.56) and gtkd-svn (gtkd built against D2) packages. I also verified that D itself was ...
2
votes
1answer
53 views
Why a method main.replay() is not getting executed in Java? But exactly the same code works in Fedora not in Archlinux
I have a simple player i am using third party libraries. Exactly the same code is working in my Fedora desktop. But when i am using exactly the same code in Archlinux it does not work to do ...
2
votes
3answers
557 views
“Proper way” to manage multiple versions of Python on archlinux
So I have read this - https://wiki.archlinux.org/index.php/Python
And it is clear from this wiki that I can install Python 2.7.2 via
pacman -S python2
Is it reasonable for me to create a symlink ...
2
votes
1answer
650 views
swt browser No more handles Error
I wrote a simple program. just a CTabFolder and a WelcomTab inherent from CTabItem. I want to fill my WelcomeTab by a browser which render my htmls. at the init() method of WelcomeTab I Create a ...
2
votes
1answer
629 views
Arch Linux Aircrack Ch: -1 Issue
Currently running Arch Linux, I deceided to install Aircrack-ng and try it out on my own wireless network. So I installed it, and I get an error upon Aireplay that states something along the lines of, ...
2
votes
1answer
517 views
C Syslog.h not writing the log
Hi there Stackoverflow hackers!
First of all: Happy Easter!
I have a very minor case of serious problem, or misunderstanding between me, and the C syslog() function.
The code compiles just fine, ...
2
votes
1answer
128 views
Can't connect to mysql because there are no users
I mistakenly removed all users for mysql ... So I can't connect to mysql.
Does anyone has an idea ?
I tried reinstalling it but it didn't work ...
PS : I am on Archlinux.
Thanks in advance !
1
vote
1answer
45 views
Vmware tools installations in arch linux
I want to install Vmware tools on arch Linux but when i click on install vmware tools and when i try to find it in "/media/cdrom" , I do not find it.
1
vote
1answer
29 views
Where can I find the arch/setup source?
Where can I find the arch/setup source?
I did not find in ftp://ftp.archlinux.org/sources/
Who knows?
thanks.
1
vote
1answer
44 views
WxGTK won't link under Arch Linux
So I have this Wx application written in C++ that I've tested under Linux Mint, Ubuntu, and even Mac but under Arch Linux it doesn't seem to link correctly. I've installed the wxgtk library required ...
1
vote
1answer
142 views
Linux TortoiseSVN
Please can you advise me the best analogue of TortoiseSVN on linux?
Now I use ArchLinux with openbox.
Very important for me to see changes for merged files when commit/update to do small corrections ...
1
vote
1answer
81 views
[Solved]Linker error involving boost_lock
I'm working on a game engine http://ducttape-dev.org that uses boost as one of the dependencies. One day, as I was writing a test app that linked to my game engine, the Extruder of OgreProcedural ...
1
vote
2answers
81 views
In BASH, Is there any way to find exactly the IP address for all interfaces? And remove all other information's?
How can i get only IP and which interface IP it is? So that i can keep a record file such as realtime.ini
1 - test.sh
#!/bin/bash
ipstring ='inet (.*)'
for i in $(ip addr);
do
echo $i #on ...
1
vote
2answers
41 views
In BASH, How do i replace \r from a variable that exist in a file written using HTML <textarea></textarea>
How do i replace the \r?
#!/bin/bash
...
# setup
if [[ $i =~ $screen ]]; then
ORIGINAL=${BASH_REMATCH[1]} # original value is: 3DROTATE\r
AFTER =${ORIGINAL/\\r/} # ...
1
vote
1answer
143 views
Linux's security measures against executing shellcode
I'm learning the basics of computer security and I'm trying to execute some shellcode I've written. I followed the steps given here
...
1
vote
1answer
131 views
Alternative ways to access Amazon EC2 instance should sshd die?
On a debian or ubuntu instance, autossh usually does the trick and on an arch instance, by adding the daemon name to the DAEMONS array in /etc/rc.conf file.
What if sshd still fails to autorestart ...
1
vote
2answers
69 views
How can I see if my Emacs was built with xft support?
I've installed emacs using pacman on Arch linux. How can I see if it has xft support or not ?
1
vote
1answer
71 views
Apache searches for old DocumentRoot after editing the config file and restarting it
I'm using Arch Linux 3.0-ARCH. I've changed my DocumentRoot in /etc/httpd/conf/httpd.conf from /srv/http to /var/www. Then I issued this command:
% sudo /etc/rc.d/httpd restart
:: Restarting Apache ...
1
vote
0answers
78 views
How to link to yaml-cpp on Arch Linux with qtcreator?
I'm interested in using Yaml in my media player project. The only problem is I can't figure out how you compile with Yaml, especially on qt-creator. The AUR package for yaml-cpp doesn't seem to ...
1
vote
1answer
216 views
Why does GCC seem much more verbose in Ubuntu 10?
I have recently made a cp clone (for University) and I happened to discover something I had never got the chance to.
This applies at least to GCC compiling a C source.
I did the main development of ...
1
vote
2answers
430 views
Debian/Ubuntu r-base-*, r-cran-*, revolution-r packages: porting to ArchLinux
Recently I've migrated to Arch Linux, after ~4 years being loyal to Ubuntu. Everything works like a charm, it's noticeably faster than Ubuntu, IMHO it's easier to customise, but when it is to do with ...
1
vote
2answers
919 views
Nokia QT SDK on archlinux
Nokia realised qt sdk beta. http://www.forum.nokia.com/info/sw.nokia.com/id/e920da1a-5b18-42df-82c3-907413e525fb/Nokia_Qt_SDK.html
Is it possible to run it on archlinux?
Hm, it is able to run, but ...
1
vote
1answer
234 views
Ruby Enterprise fails to compile with GCC 4.5
Ruby Enterprise Edition fails to compile from sources with GCC 4.5, but sucessfully compiles with 4.3.3.
Actually, not sure if it's about GCC, but, in fact, i686 Arch linux system with laest updates ...
1
vote
0answers
137 views
rpcbind authorization problems
Hy,
I am using rpcbind (SunRPC) on Arch linux and python rpc.py (wich use standard python socket module) interface for comunication with it, but every time I try to send request for registration or ...
0
votes
2answers
74 views
GCC - fatal error in standard libs including
I'm compiling a code that includes some standard libs as new, cmath and so ...
but the gcc is not able to include them.
I used the python3.2 distutils for building that.
It gives me this error: gcc ...
0
votes
0answers
36 views
Cross compiling nginx-1.0.11
I want to know how to cross compile nginx-1.0.11.
I have already tried : --with-cc option
but it is giving me an error : checking for C compiler ... found but is not working
./configure: error: C ...
0
votes
2answers
60 views
Disable a network interface in Arch Linux
I have the following problem. My PC is very old and it has a built in ethernet port that doesn't work, not due to a misconfiguration, I think it's physically damaged. It didn't work in either Ubuntu ...
0
votes
1answer
11 views
How to link OIS?
I've been searching and searching for the method to link OIS with my application. Unfortunately, I've been having issues finding anything. -lois just gives me errors, unfortunately.
Question
I need ...
0
votes
2answers
95 views
Application menu Editor
How can I make changes to my main Application menu In Gnome3, Any configuration files Or any tool do this out There?
0
votes
1answer
155 views
Setting up Eclipse with Tomcat7 in ArchLinux
I am uncertain if this an archlinux question specifically or linux in general.
I have recently installed archlinux and using pacman I installed eclipse and tomcat7 using the relevant guides in the ...
0
votes
0answers
54 views
Linux partitions [closed]
My distro is ArchLinux. I have hard disk with partitions for /boot, /home, / and swap. Now I have yet another empty HDD. I use my /srv/httpd/ for my projects and I would like to mount my new disk to ...
0
votes
2answers
80 views
Arch Linux - How to pass arguments to daemon in rc.conf [closed]
If I add a daemon to rc.conf, how can I then pass arguments to it?
Eg
DAEMONS = (sshd mongodb ...)
How can I pass --replSet to the mongodb daemon?
0
votes
0answers
181 views
Arch or Gentoo?? which one better suits FPGA/C/C++ developers needs [closed]
For a couple of months now I was trying to find a Linux distro for a workstation. After some research I've finally nailed it down to two competitors: Arch and Gentoo.
Key features:
simplicity ...
0
votes
4answers
126 views
Where are perl modules located in archlinux
Im trying to find perl modules, such as strict and warnings, but i cant find them... btw im actually using archlinux, i tried using
whereis
but it throws nothing.
0
votes
1answer
132 views
PySide Installation on Archlinux
I want to install PySide on Archlinux. I've added it to my pacman.conf as described here: http://developer.qt.nokia.com/wiki/PySide_Binaries_Linux
But this doesn't work:
:: Synchronisiere ...
0
votes
2answers
286 views
setting archlinux hostname (Amazon EC2)
Setting the hostname on an archlinux machine is relatively trivial according to this - https://wiki.archlinux.org/index.php/HOSTNAME#Set_the_hostname
So on my /etc/rc.conf, I have
...
0
votes
1answer
68 views
TTY ,SWIG and PHP
Need some help here. I have a c++ library for communicating with an embedded module (ArchLinux) via tty. This library was compiled/converted into php using swig.
The issue now is that a sample ...
0
votes
1answer
125 views
Linux - Subversion - post-commit hook not executing
I am running Arch linux. I have installed Subversion and set it up for use with https everything seems to working fine, with the exception of my hooks.
I have one hook, it is ...
0
votes
1answer
215 views
Shell script: how to use getopts to get last arguments and unhandle arguments
There is a program named cower. (cower is an Archlinux AUR downloader.)
cower -[udhsc] target
I am write a shell script named xcower.
xcower -[Syudhsc] target1 target2 target3 ...
xcower take 2 ...
0
votes
1answer
53 views
Where Linux sets its kernel and user-space segment selector values?
I have verified that in Linux the following values are assigned to the kernel and user-space segments respectively:
__KERNEL_CS = 0x60
__KERNEL_DS = 0x68
__USER_CS = 0x73
__USER_DS = 0x7b
After ...
0
votes
1answer
292 views
mod_wsgi on archlinux with python 3.2
I actually had mod_wsgi working with python3.1, but after updating some software... it no longer works.
I followed these instructions for python3.1 modified slightly for 3.2:
...
0
votes
1answer
376 views
Changing umask of apache on ArchLinux
This didn't work:
Setting the umask of the Apache user
Arch doesn't have a /etc/apache2/envvars file, and changing the /etc/rc.d/httpd script didn't change anything.
Maybe someone can enlighten me ...
0
votes
1answer
180 views
GPSD simple query's
I need some information from my GPSD server running on my NTP master server.
Amount of satellites it is seeing
Which satellites it is using for the positon fix (maybe also SNR)
Which satellites ...