[SOLVED] Recommendations needed - Arch + Apache for local development

Hello,
I'm a new Arch user, and relatively new with Linux. I'm getting to like Arch very much.
I do web development, and I do most of my programming in PERL.
I have already installed perl and some tools, and I'm about to install apache. The Idea is to have the apache server just for local development and testing.
So the question is: Do you recommend me to install some firewall?
What security measurements should I take?
Is there any easy way to enable and disable Internet access to the apache server?
Thank you!
Last edited by iopo (2009-10-28 19:24:14)

Thank you friends.
Yes, my Internet is via router. I like the Idea to set the server to listen at local address, I will try that.
Now, as I'm new to Linux and Arch, I will like to know if I should take any extra security measurements. In windows I used anti-virus + firewall all the time, and I blocked apache to access the Internet with the firewall.
I have set a strong root password, but the "normal user" has sudo. Is that secure enough?
Is there any "must have" security tools or measurements to set is a box like mine (Desktop usage + local network (3 machines) + apache for local usage and testing only)?
Is it common to get some malware, worm, trojan, spyware or some kind of phishing just by surfing the web without user "action" to install it?
I know Linux is much safer because users and permissions. I like that very much, It feels a lot safer.
Now, I have used Arch for a week or so with no firewall (router firewall is disabled also) and no anti-virus. Absolutely no special security measurements and there seems to be no log-in attempts in logfiles .. and no problems at all. Windows without firewall and anti-virus will die in a few hours just by leaving it connected to Internet....
I just wanted to ask you all (Arch users) if you normally use Firewall, and if you take some special measurement to stay free of  trojans, spyware, etc...
I will appreciate your comments.
Thank you!

Similar Messages

  • Where can we get GP APIs for local development?

    I just realized that my local GP APIs (sap.comcafeugpapi.sda and sap.comcafeugpapi~wd.sda) are not longer valid as of SP7 due to some interface naming changes.
    it'd be better if the IDE group finally incorporate the GP APIs in their build because this is a know problem for quite some time already (the missing GP APIs in NWDS).
    But i'd appreciate any other ways to get them asap. Thanks, Andre

    useful note Jan. thank you but only if i can get a hold of the gp apis in my local eclipse environment to reference as used Development Components for local development. Gave you the points anyway

  • Need some tips for Database Developer Role.

    Dear All,
    Next week, I'm going to face an Interview for Database Developer role.
    For this, I need some more & useful information on these recommended points.
    1. Involve in a designing part of Data warehouse from
    scratch 
    2. Create complex analytic queries on large data sets.
    3. Analyse trends in key metrics.
    4. Monitoring and optimizing the performance of the database.
    Please help get the vital information on these points.
    All help will be highly appreciated.
    Thanks,

    1. Involve in a designing part of Data warehouse from
    scratch
    Design Database...
    This needs lot of information about business and its fonctionnalités, and so many.. Tables,  relationships etc...
    http://technet.microsoft.com/en-us/library/ms187099%28v=sql.105%29.aspx
    Code Design...
    SP's, Funcitions, Views, Sub queries, Joins, Triggers etc...
    DW Design
    DB size and number of reports and historical data details, reduce the normalization and etc....
    http://technet.microsoft.com/en-us/library/aa902672%28v=sql.80%29.aspx
    2. Create complex analytic queries on large data sets.
    Its all based on your current database design, size, required output, data, performance etc..
    4. Monitoring and optimizing the performance of the database.
    Perfmon, Activity monitor, spotlight, custom queries, DMV's sp_whoisactive, execution plans, and many other thirdparty tools.. and may be best experience will give best view and clarity :)
    Note : This is very big topic and its not easy to answer in few words or lines... :) goole it for more details...
    Raju Rasagounder Sr MSSQL DBA

  • [Request] GJay -- Need Arch pkgnames for some .debs

    I'm having a little trouble building GJay, because on the website it only lists the names of the debian packages needed, and I am not sure what the Arch equivalents are. I am quite fine with making the rest of the PKGBUILD once I know that though... This is what I have so far.
    pkgname=gjay
    pkgver=0.2.8.3
    pkgrel=1
    pkgdesc="A tool for analyzing music collections to generating a great-sounding playlist."
    arch=(i686)
    url="http://gjay.sourceforge.net"
    license=('GPL')
    groups=()
    depends=('mp3info' 'mpg321' 'vorbis-tools' 'xmms')
    makedepends=()
    provides=()
    conflicts=()
    replaces=()
    backup=()
    options=()
    install=
    source=($pkgname-$pkgver.tar.gz)
    noextract=()
    md5sums=() #generate with 'makepkg -g'
    build() {
    cd "$startdir/src/$pkgname-$pkgver"
    ./configure --prefix=/usr
    make || return 1
    make DESTDIR="$startdir/pkg" install
    # vim:set ts=2 sw=2 et:

    Hm, There are lots of missing break; statements at the end of case statements.  Please test
    pkgname=gjay
    pkgver=0.2.8.3
    pkgrel=1
    pkgdesc="A tool for analyzing music collections to generating a great-sounding playlist."
    arch=(i686)
    url="http://gjay.sourceforge.net"
    license=('GPL')
    depends=('mp3info' 'mpg123' 'vorbis-tools' 'xmms' 'gsl' 'gtk2')
    options=('!makeflags')
    install=
    source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz break.patch)
    md5sums=('fd7bdf8505c13aa538fe59ef4366332c' '3542a8f20ba5d18faaa6d30840f4c8a6')
    build() {
    cd "$startdir/src/$pkgname-$pkgver"
    patch -p1 < ../break.patch || return 1
    make || return 1
    install -d $startdir/pkg/usr/bin || return 1
    install -d $startdir/pkg/usr/share/$pkgname/icons || return 1
    make PREFIX="$startdir/pkg/usr" install || return 1
    together with break.patch
    diff -ruN gjay-0.2.8.3.orig/Makefile gjay-0.2.8.3.new/Makefile
    --- gjay-0.2.8.3.orig/Makefile 2008-06-14 17:29:56.000000000 +0200
    +++ gjay-0.2.8.3.new/Makefile 2008-06-14 17:44:53.000000000 +0200
    @@ -1,4 +1,4 @@
    -PREFIX = /usr/local
    +PREFIX = /usr
    CC = gcc
    LINK = $(CC)
    CFLAGS = -g -Wall `pkg-config --cflags gtk+-2.0`
    @@ -39,7 +39,7 @@
    mp3.o
    -INSTALL = /usr/bin/install -o root -g root -m
    +INSTALL = /bin/install -o root -g root -m
    all: $(TARGET)
    diff -ruN gjay-0.2.8.3.orig/analysis.c gjay-0.2.8.3.new/analysis.c
    --- gjay-0.2.8.3.orig/analysis.c 2008-06-14 17:29:56.000000000 +0200
    +++ gjay-0.2.8.3.new/analysis.c 2008-06-14 17:42:41.000000000 +0200
    @@ -332,6 +332,7 @@
    break;
    default:
    + break;
    // Do nothing
    return TRUE;
    diff -ruN gjay-0.2.8.3.orig/analysis.h gjay-0.2.8.3.new/analysis.h
    --- gjay-0.2.8.3.orig/analysis.h 2008-06-14 17:29:56.000000000 +0200
    +++ gjay-0.2.8.3.new/analysis.h 2008-06-14 17:41:34.000000000 +0200
    @@ -73,7 +73,7 @@
    /* Mutex lock for analysis data */
    -extern song * analyze_song;
    +static song * analyze_song;
    extern int analyze_percent;
    /* Analysis.c */
    diff -ruN gjay-0.2.8.3.orig/gjay.h gjay-0.2.8.3.new/gjay.h
    --- gjay-0.2.8.3.orig/gjay.h 2008-06-14 17:29:56.000000000 +0200
    +++ gjay-0.2.8.3.new/gjay.h 2008-06-14 17:40:17.000000000 +0200
    @@ -43,7 +43,7 @@
    /* State */
    extern gjay_mode mode;
    -extern gint xmms_session;
    +static gint xmms_session;
    /* User options */
    extern gint verbosity;
    diff -ruN gjay-0.2.8.3.orig/prefs.c gjay-0.2.8.3.new/prefs.c
    --- gjay-0.2.8.3.orig/prefs.c 2008-06-14 17:29:56.000000000 +0200
    +++ gjay-0.2.8.3.new/prefs.c 2008-06-14 17:32:12.000000000 +0200
    @@ -336,6 +336,7 @@
    prefs.rating_cutoff = TRUE;
    break;
    default:
    + break;
    @@ -422,6 +423,7 @@
    prefs.time = atoi(buffer);
    break;
    default:
    + break;
    *element = PE_LAST;
    diff -ruN gjay-0.2.8.3.orig/ui.c gjay-0.2.8.3.new/ui.c
    --- gjay-0.2.8.3.orig/ui.c 2008-06-14 17:29:56.000000000 +0200
    +++ gjay-0.2.8.3.new/ui.c 2008-06-14 17:36:07.000000000 +0200
    @@ -260,6 +260,7 @@
    explore_animate_stop();
    break;
    default:
    + break;
    // Do nothing
    return TRUE;
    Last edited by Stefan Husmann (2008-06-14 15:54:24)

  • GL account needs to block for local currency & another cur. needs to post

    Hi,
    I need GL account that should block for posting in local currency, it should post other(forgien) currencies. how can i handle this scnerio.
    if there is any balance,is it possiable to maintain validation.could you please let me know,how i can resolve this problem.
    Thanks in advance
    Jaya

    Hi,
    Though a document is created in foreign currency, system will also update the amount in local currency based on the conversion rate given in the document or maintained in OB08 table.
    If your requirement is to allow only foreign currency transaction for a GL account, then write validation with the condition that - If GL account no is XXXXX, check document currency is not equal to local currency (BKPF-WAERS).
    Regards,
    Rengaraj

  • Configure NWDI for local development Server only.

    Hello Gurus,
    I have a Netweaver 7.0 AS JAVA + ABAP installed in my local machine.
    I wanted to create a Development Track for NWDI based development, but when i go to Change Management Service for to create a track I see that CMS domain is not setup!
    Can anyone help me in configuring my AS JAVA's NWDI to use only one DEV server(for practice purposes)
    regards,
    Ganesh

    Hi,
    you have 2 options.
    Either you run the DI-All-in one configuration wizard from the NWA which helps you amongs others to configure the NWDI domain,
    http://help.sap.com/saphelp_nw73/helpdata/en/49/11f10fcf292810e10000000a42189c/frameset.htm
    Or you do it manually.
    http://help.sap.com/saphelp_nwpi711/helpdata/en/45/c571de75105709e10000000a114a6b/frameset.htm
    see --> Configuring a Domain
    Best Regards,
    Ervin

  • Rebuild folio for local development vs. cloud-based development

    Now that the 'Preview on Device not working for iOS devices' issue is behind us how do I make my folio available locally versus being on the cloud?  Do I import all 100+ articles from the cloud and recreate a local folio version?  Or is there a better approach? 
    Tidbit:
    Prior to the issue I built my folio locally and when the issues occurred I ended up uploading to the cloud to continue development as an interim solution.  Working on the cloud is not practical since it consumes unecessary data usage especially for folks with a capped monthly data plan with local internet service provider.
    Any suggestions would be greatly appreciated.

    Thanks John.  That makes sense.
    One thing that I noticed since the recent fix though is when I plug in my iPad version1 via USB, the Folio Builder menu panel recognizes my iPad.  However, on the iPad/ACV screen it does not show the USB blue strip on the top left corner on my app.  Instead I see the lightning bolt blue strip.  On the other hand if I plug my iPad mini via USB, iPad Mini/ACV shows the USB blue strip which is the expected behaviour.  See attached photo.

  • Need Some Pointers for adapter development

    All,
       Can you point me some starting point, to write a adapter? We are using Adapter module to do SFTP(FTP over SSH) and trying to change it as a separete adapter.
    Thank you
    Ganges Leaves

    Hi,
    there's a sample adapter shipped with the XI
    /people/gowtham.kuchipudi2/blog/2006/01/04/testing-sample-adapter
    you can have a look at it
    but you don't always need an adapter module
    if you use it sor only a few interfaces you can do it much easier with a java proxy for instance
    Regards,
    michal

  • Need free notes for Oracle Developer 9i

    hello,
    i m very much new in Oracle field, i want to start practice on Oracle but i cannot find any free notes through internet, so if anyone know such website, plz tell me.
    Thanks
    Muhammad Kamran

    You can find free code samples and tutorials for Oracle all over the Internet. Oracle provides many tutorials as well.
    http://www.oracle.com/technology/training/index.html
    Take a look the Oracle By Example site
    http://www.oracle.com/technology/obe/start/index.html
    And the Getting Started site.
    http://www.oracle.com/technology/getting-started/index.html

  • I need to migrate an XPI developed for Firefox 2.x on Solaris to Firefox 3.6 for Windows

    I need to migrate an XPI developed for Firefox 2.x on Sun Solaris to Firefox 3.6 on Windows. The XPI archive contains a XUL file which gives many error messages when I use the XPI addon:
    C:\>firefox.exe -trmail-view
    What would be the best approach? Try to modify existing files XUL/JS files or start with the new JS files from Firefox 3.6 Windows?
    Existing XPI contains files:
    Directory of C:\Documents and Settings\BogdanS\My Documents\solaristrmail_2008_03-all
    03/10/2011 05:13 PM <DIR> chrome
    02/05/2008 11:21 AM 31 chrome.manifest
    03/10/2011 05:14 PM <DIR> components
    03/10/2011 12:38 PM 942 install.rdf
    Directory of C:\Documents and Settings\BogdanS\My Documents\solaristrmail_2008_03-all\chrome\content
    03/06/2008 03:42 PM 274 cfg.js
    03/06/2008 03:39 PM 15,164 dispatcher.js
    03/05/2008 01:44 PM 19,923 errorManager.js
    03/05/2008 02:45 PM 32,339 folders.js
    03/05/2008 03:07 PM 36,291 messages.js
    03/05/2008 03:07 PM 12,869 search.js
    02/20/2008 03:30 PM 5,587 settings.js
    03/05/2008 01:46 PM 11,442 trUtils.js
    03/10/2011 05:40 PM 80,398 trwin.xul
    03/06/2008 03:43 PM 13,115 utils.js
    Directory of C:\Documents and Settings\BogdanS\My Documents\solaristrmail_2008_03-all\components
    02/12/2008 03:28 PM 5,527 .#trProtocol.js.1.2
    02/12/2008 12:46 PM 5,924 trcommandline.js
    02/22/2008 09:41 AM 5,719 trProtocol.js

    Credit Tony E
    To downgrade to Firefox 3.6 first uninstall Firefox 4, but do not select the option to "Remove my Firefox personal data". If you select that option it will delete your bookmarks, passwords and other user data. See https://support.mozilla.com/kb/Uninstalling+Firefox
    You can then install the latest version of Firefox 3.6 available from http://www.mozilla.com/en-US/firefox/all-older.html - it will automatically use your current bookmarks, passwords etc.
    To avoid possible problems with downgrading, I recommend going to your profile folder and deleting the following files if they exist - extensions.cache, extensions.rdf, extensions.ini, extensions.sqlite and localstore.rdf. Deleting these files will force Firefox to rebuild the list of installed extensions, checking their compatibility, and reset toolbar customizations.
    For details of how to find your profile folder see https://support.mozilla.com/kb/Profiles

  • [svn] 3680: Modifying ant build.xml to allow for a local. properties for individual developer build config.

    Revision: 3680
    Author: [email protected]
    Date: 2008-10-16 07:58:21 -0700 (Thu, 16 Oct 2008)
    Log Message:
    Modifying ant build.xml to allow for a local.properties for individual developer build config. Also moving ja_JP locale to the other.locales target (this is called during build machine packaging and isn't needed by dev by default).
    QE: No
    Doc: No
    Checkintests: Pass
    Reviewer: Discussed with Jim
    Modified Paths:
    flex/sdk/trunk/build.xml
    flex/sdk/trunk/frameworks/projects/airframework/build.xml
    flex/sdk/trunk/frameworks/projects/framework/build.xml
    flex/sdk/trunk/frameworks/projects/rpc/build.xml

    I tried
    ant deployTestSuites
    this works. If i do that with the wrong domain (dep_cotrol vs dep_me) name it fails with
    ORABPEL-02052Cannot lookup BPEL domain.The BPEL domain "dep_cotrol" cannot be found; the domain may not have initialized properly.Please verify that the BPEL domain loader has a valid set of initialization properties in the application properties file.
    So i think my config is ok. There is a bug in this ant bpelTest which ignores the domain?

  • Need a Local Developer

    Hi, I am looking for local help in Omaha, Nebraska to program
    and design final Shockwave product for an educational software
    company. Currently, I have a demo copy developed in Director 11
    that needs professional developement for implementation and ongoing
    maintenance. Please let me know if you are interested working for
    an hourly rate.
    P.S. - This is an extremely cool and unique product!
    Non-disclosure agreements will have to be signed.

    bluejays86 wrote:
    > Hi, I am looking for local help in Omaha, Nebraska ...
    Hi,
    What are your contact details?
    regards
    Dean
    Director Lecturer / Consultant / Director Enthusiast
    http://www.deansdirectortutorials.com/
    http://www.multimediacreative.com.au
    email: [email protected]

  • Hey experts, need your recommendation on Hardware Infrastructure for PT 8.5

    Hi,
    One of my clients asked me to recommend Hardware Infrastructure details for the following load/traffic
    1.Development Environment: 100-300+ concurrent connection (Work station connections)
    2.Prod Server : 20,000+ End user concurrent connections (web connections)
    Recommending amazon services is good option?
    Thanks a lot

    user10656964 wrote:
    1.Development Environment: 100-300+ concurrent connection (Work station connections)Whether you may have 100-300 developpers, which seems to me quite high, are you really sure you'll have simultaneous 100-300+ developpers onto the database ? And are you sure they will all develop onto the same database (would be strange to me) ?
    2.Prod Server : 20,000+ End user concurrent connections (web connections)Same question, whether you may have 20,000 end users, are you really sure they all will be connected at the same time (simultaneously) ?
    Bear in mind, if you have the application available for users around the world, some may sleep when others may work, that dramatically can reduce the simultaneous connections.
    Nicolas.

  • Need java 1.6.0_4 for SQL developer 3.2 64bit, Win 7

    Hi All
    I Need java 1.6.0_4 for SQL developer 3.2 64bit, Win 7.
    SQL developer behaves weirdly sometimes. It frequently drops connection, doesn;t show compile button when i open a procedure and certain other things.... I found ver 3.0 quiet stable.
    I think it may be because of my incorrect java version (1.6.0). Please tell me how can I get this Java version 1.6.0_4. I checked oracle.com, version 35 is available there....
    Can you please help me by providing this ?
    Thanks

    >
    I Need java 1.6.0_4 for SQL developer 3.2 64bit, Win 7.
    I think it may be because of my incorrect java version (1.6.0). Please tell me how can I get this Java version 1.6.0_4.
    Can you please help me by providing this ?
    >
    No - we can't provide it. You have to download it yourself. If you have trouble with the download you should report the problem to Oracle.
    >
    I checked oracle.com, version 35 is available there....
    >
    If you checked at the Java SE Downloads page
    http://www.oracle.com/technetwork/java/javase/downloads/index.html
    Then you should have seen the 'Previous Releases' link jus above the download Icons near the top of the page.
    http://www.oracle.com/technetwork/java/javasebusiness/downloads/java-archive-downloads-javase6-419409.html#jre-6u1-oth-JPR
    All of the available prior versions are available at that link.
    But I strongly suggest you heed the advice given to use the latest 1.6 version of Java available unless you have a very good reason not to.

  • Need some sample documents for DME development

    Hi,
    I need some sample documents for DME development. I expect any information covering developing DME formats and steps for downloading a DME file (this I need for checking my formats).
    please, send any relevant info you have to mail id mindaugas.kazlauskas at gmail.com
    Many thanks and reward points ahead!
    Regards,
    Mindaugas

    Hi,
    the main thing is that I need format with payment information structured in single column, like this:
    //separator//
    value1
    value2
    value3
    //separator//
    value1
    value2
    value3
    //separator//
    maybe there is any SAP format structured like this?
    Regards,
    Mindaugas

Maybe you are looking for

  • Installation problem on Power PC G3, 450MHz OS 9.2 trying to install OS10.4

    When I try to install, I get the dialog box: Mac OSX cannot be installed on this computer. Please consult the documentation for the list of supported computers. From what I can tell, I should be able to install on this computer; it appears on the lis

  • Rfc error..

    Hi.. I am using the custmized bapi in which i am getting the input file as the response output file.. i have configured the adapter module configuration.. regards kishore

  • OBIEE Cache Purge  in Unix Environment

    Hi, We are trying to purge OBIEE cache using unix shell script and purgecache.txt which contains call to SAPurgeAllCache(). We are using below script export MW_HOME=/qa/middleware/ . $MW_HOME/instances/instance1/bifoundation/OracleBIApplication/corea

  • Why did my yahoo mail page change? it goes toASK, why, I don't like it

    When I log on I used to get my yahoo home page, now I get ASK and I have to click on a choice of icons. So, when I click on yahoo, everything is different and I don't like it. All I want is my former e-mail and home page to return.

  • DB Enterprise Manager displays wrong values

    Hi, I modified the size of db_recovery_file_dest_size from 10GB to 15GB and manually deleted the archive log files (size 9.7GB) from destination and also restarted the DB. Even then the enterprise manager displays the free space as only 5GB instead o