Removing A Source Installation

Jul 25, 2007

if a program is compiled and installed (configure -> make -> make install) with a --prefix pointing to an empty subfolder, then would removing it be just a simple delete the folder and it's contents action ($rm -fr subfolder/).

Ok so lets say I was to install php from source with a complile prefix flag set to /usr/local/php

Then all the binaries and configuration files are set within the directory (php/conf , php/bin). If I want to delete the php installation then I would just remove the /usr/local/php directory, No?

View 2 Replies


ADVERTISEMENT

Kernel Source Install Help Needed On Fc6 X64I Am Trying To Install The Kernel Source.

May 13, 2007

I am trying to install the kernel source.
I have downloaded kernel-2.6.20-1.2948.fc6.src.rpm
I am using fedora 6 64bit.
here are my current kernels:

kernel-headers-2.6.20-1.2948.fc6
kernel-devel-2.6.20-1.2944.fc6
yum-kernel-module-1.0.3-1.fc6
kernel-2.6.20-1.2944.fc6
kernel-devel-2.6.20-1.2948.fc6
kernel-2.6.20-1.2948.fc6


here is what I seen when I installed kernel-2.6.20-1.2948.fc6.src.rpm

rpm -ivh kernel-2.6.20-1.2948.fc6.src.rpm
1:kernel warning: user brewbuilder does not exist - using root
warning: group brewbuilder does not exist - using root
warning: user brewbuilder does not exist - using root
########################################### [100%]
warning: user brewbuilder does not exist - using root
warning: group brewbuilder does not exist - using root


then when I ran:
rpmbuild -bp --target=$(uname -m) /usr/src/redhat/SPECS/kernel-2.6.spec

I seen this error:
+ Arch=x86_64
+ make ARCH=x86_64 nonint_oldconfig
In file included from /usr/include/sys/socket.h:35,
from /usr/include/netinet/in.h:24,
from /usr/include/arpa/inet.h:23,
from scripts/basic/fixdep.c:117:
/usr/include/bits/socket.h:310:24: error: asm/socket.h: No such file or directory
make[1]: *** [scripts/basic/fixdep] Error 1
make: *** [scripts_basic] Error 2
error: Bad exit status from /var/tmp/rpm-tmp.93770 (%prep)


I need to have this installed to get a app installed etc...
suggestions or ideas?
thanks

View 2 Replies View Related

REMOVING Site

May 26, 2007

I got this from my data center.

[url]

You will need to remove that html from your server.

how do I remove from server?

View 6 Replies View Related

Removing Emails When Using IMAP

Sep 21, 2005

I know that the IMAP method has the sometimes useful feature of leaving the emails on the server when viewing using an email client like Outlook Express. However, in our case we were forced to use IMAP inorder to use AOL as our ISP and Outlook Express as our email client. Is there a way to have the emails removed from the server after downloading like a POP3 connection does?

The client fills up the mailboxes until the email stops working.

View 0 Replies View Related

Iframe Removing Script

Oct 7, 2009

any iframe removing script.

View 7 Replies View Related

Removing Apache Modules

Apr 17, 2009

I have a RHEL 5 server, that host one site with a common PHP 5.x -MySQL 5.x app, it also uses .htaccess to rewrite rules. I'm trying to optimize apache to the max, and though about removing some unneccesary modules. The actual modules loaded are:

Code:
LoadModule auth_basic_module modules/mod_auth_basic.so
LoadModule auth_digest_module modules/mod_auth_digest.so
LoadModule authn_file_module modules/mod_authn_file.so
LoadModule authn_alias_module modules/mod_authn_alias.so
LoadModule authn_anon_module modules/mod_authn_anon.so
LoadModule authn_dbm_module modules/mod_authn_dbm.so
LoadModule authn_default_module modules/mod_authn_default.so
LoadModule authz_host_module modules/mod_authz_host.so
LoadModule authz_user_module modules/mod_authz_user.so
LoadModule authz_owner_module modules/mod_authz_owner.so
LoadModule authz_groupfile_module modules/mod_authz_groupfile.so
LoadModule authz_dbm_module modules/mod_authz_dbm.so
LoadModule authz_default_module modules/mod_authz_default.so
LoadModule ldap_module modules/mod_ldap.so
LoadModule authnz_ldap_module modules/mod_authnz_ldap.so
LoadModule include_module modules/mod_include.so
LoadModule log_config_module modules/mod_log_config.so
LoadModule logio_module modules/mod_logio.so
LoadModule env_module modules/mod_env.so
LoadModule ext_filter_module modules/mod_ext_filter.so
LoadModule mime_magic_module modules/mod_mime_magic.so
LoadModule expires_module modules/mod_expires.so
LoadModule deflate_module modules/mod_deflate.so
LoadModule headers_module modules/mod_headers.so
LoadModule usertrack_module modules/mod_usertrack.so
LoadModule setenvif_module modules/mod_setenvif.so
LoadModule mime_module modules/mod_mime.so
LoadModule dav_module modules/mod_dav.so
LoadModule status_module modules/mod_status.so
LoadModule autoindex_module modules/mod_autoindex.so
LoadModule info_module modules/mod_info.so
LoadModule dav_fs_module modules/mod_dav_fs.so
LoadModule vhost_alias_module modules/mod_vhost_alias.so
LoadModule negotiation_module modules/mod_negotiation.so
LoadModule dir_module modules/mod_dir.so
LoadModule actions_module modules/mod_actions.so
LoadModule speling_module modules/mod_speling.so
LoadModule userdir_module modules/mod_userdir.so
LoadModule alias_module modules/mod_alias.so
LoadModule rewrite_module modules/mod_rewrite.so
LoadModule proxy_module modules/mod_proxy.so
LoadModule proxy_balancer_module modules/mod_proxy_balancer.so
LoadModule proxy_ftp_module modules/mod_proxy_ftp.so
LoadModule proxy_http_module modules/mod_proxy_http.so
LoadModule proxy_connect_module modules/mod_proxy_connect.so
LoadModule cache_module modules/mod_cache.so
LoadModule suexec_module modules/mod_suexec.so
LoadModule disk_cache_module modules/mod_disk_cache.so
LoadModule file_cache_module modules/mod_file_cache.so
LoadModule mem_cache_module modules/mod_mem_cache.so
LoadModule cgi_module modules/mod_cgi.so
LoadModule version_module modules/mod_version.so
LoadModule unique_id_module modules/mod_unique_id.so
LoadModule evasive20_module /usr/lib/httpd/modules/mod_evasive20.so
LoadModule security_module /usr/lib/httpd/modules/mod_security.so
Besides of mod_evasive, mod_security that are security modules, what modules can I disable without causing any problems to a common PHP-MySQL website?

This is a plain RH box, virtual host is configured at httpd.conf in this way:

Code:
<VirtualHost SERVERIP>
ServerName mysite.com
ServerAlias www.mysite.com
DocumentRoot /var/www/sites/mysite.com
<Directory "/var/www/sites/mysite.com">
Options FollowSymLinks
AllowOverride All
Order allow,deny
Allow from all
</Directory>
RewriteEngine on
RewriteCond %{REQUEST_METHOD} ^(TRACE|TRACK)
RewriteRule .* - [F]
</VirtualHost>

View 4 Replies View Related

Removing Fiber By Cutting It

Jun 23, 2009

We have a large amount of multimode fiber coiled up under our raised floor that needs to be removed. The end that remains intact is running to a SAN cabinet that is very densely populated and our vendor has suggested cutting the fiber to make it easier to remove without disturbing the remaining active fiber.

Does anyone have any experience cutting fiber in a data center environment ?

Are glass fragments or any other debris a concern ?

View 6 Replies View Related

Completely Removing Site

Apr 29, 2008

I've removed a website from my server, terminated the account, removed all files. But when you go to the domain name, you get the "Great Success ! Apache is working on your cPanel® and WHM™ Server" page. I dont want even that. I want nothing to come up.

I want it to appear as if the domain/server never existed and show up as a 404 or whatever (this was a forced remove). Is there any way to do this? is there something I didnt do? Or am I stuck since the domain is still pointed at my server.

I've tried to give the hint (move), but it hasnt worked, so I have a feeling I'm going to get questions about this new issue. It's a church related group (even thought theyve been warned this was coming), so its hard to be an AHole, but they need to go.

I just want it to come up as if it never existed on my server, if possible.

View 5 Replies View Related

Removing File -bash: /bin/rm

Mar 31, 2007

Sometimes if I tried to use rm to remove too many files I got this:

-bash: /bin/rm: Argument list too long

I think there was a workaround, like ls and then piping the result to rm, but I forget.

View 3 Replies View Related

Apache :: Removing Www And PHP Not Working

Dec 10, 2013

So I insert following code in my apache.htaccess file in order to remove www and php.This is my whole file

ErrorDocument 500 /500.phpErrorDocument 404 /404.php# force non-www domainRewriteCond %{HTTP_HOST} ^www.example.com$ [NC]RewriteRule (.*) http://example.com/$1 [R=301,L]#RewriteEngine onRewriteCond %{REQUEST_FILENAME} !-fRewriteCond %{REQUEST_FILENAME} !-dRewriteRule ^(.*)$ $1.php [QSA,L]

View 1 Replies View Related

XFP Source?

Oct 17, 2009

I'm under the gun, and looking for a source for 40km and 80km XFPs (e.g. Finisar, Agilestar), who keeps them in stock and at a good price. I prefer to work with vendors who are subject to US law.

View 1 Replies View Related

XEN Source Max Ips

Jun 21, 2007

Does xensource support more than 3 ips per domU?

View 2 Replies View Related

Removing Exim Logs Command

Mar 28, 2009

We are getting critical warning of disk space as a result of our exim logs, specifically exim_mainlog and exim_rejectlog.

What is the proper ssh command to delete or minimize these?

I am not that familiar with the correct commands. Both files are located /var/log/

View 1 Replies View Related

Plesk : Error Removing Domain

Nov 13, 2008

I get this error in Plesk 8.6 when trying to delete a domain. I have tried various things from various forums, but they have failed:

Error: Unable to remove domains: Problems occured while removing domains: Delete database user failed: Object 'sys.queue_messages_210099789' does not exist or is not a valid object for this operation.

Earlier when I tried to remove it, it removed only physical hosting from the server (not the complete hosting account). When I try again to add physical hosting I get:

Error: DNSZone::Table:: select() failed: no such row in the table

Not sure if two errors are related. Can anyone help me out with this.

View 7 Replies View Related

Removing Backup When Terminating An Account

Jul 11, 2008

The one thing that currently annoys me is that when an account is terminated from one of our servers, the account is still left on the backup drive.

Is there any way to automatically remove the accounts files from the backup drive when terminating an account? Or do I have to continue to do it manually?

Using cPanel/WHM/CentOS on all servers.

View 3 Replies View Related

Outlook Express Removing All Messages

Feb 1, 2007

I have a customer who has a problem, today when he opened Outlook Express, it downloaded his new mails and deleted them automatically and also other mails, then when he clicked the "Trash" directory, it was empty. He checked if no one set rules, and the rules dialog is empty. He says his antivirus is up-to-date.

View 2 Replies View Related

Apache :: Removing PHP For One File Only In HTAccess

Jun 11, 2014

I'd like to change /comp.php to /comp but I have only found articles on how to remove .php completely and I don't want to do that, only want to do it for this one file.

View 5 Replies View Related

APC Cabinet Source

Jul 31, 2009

Anybody have a good source for APC cabinets? I need a full truck-load of AR3100.

View 12 Replies View Related

Open Source SAN

Apr 14, 2009

I bought two Dell R200 because they was extremely cheap.

My target is Open Source SAN with active/passive setup.

Now i was wondering what RAID-level I should go for.

I will use 1TB SATA-II disks.

1) RAID-1 in both servers and mirror each other with DRBD.
With this setup i have like double RAID-1 so i lose lots of disk space.
4 disks -> 1TB

2) No-raid at all and i will mirror data with DRBD.
4 disks -> 2TB

Then there is change to go for RAID-5. Theres enough space to put third disk in that case

3) RAID-5 in both servers. Mirrors data with DRBD.
6 disks -> 2TB but more performance.

But in every setup i lose space more then i would like to.

Actually i dont need space more then 1TB, but i would like to get best possible redundancy and most space available i could.

Also need to remember that those servers does not support hot-plug HDs so in case there is disk-failure i need to be able to shutdown one server and iSCSI should still be up and running.

Of course theres change to make it active/active.

I was thinking that if I go for the RAID-5 I will make LVM-VG on both nodes (san-vg1 and san-vg2) and use it 50/50.

In case of fail both VG's will be used from working node.

Im going to use Debian Lenny I guess..

I was looking for OpenFiler because of the GUI, but im familiar with Debian and have always done everything from cmd.

View 1 Replies View Related

Apt-get Php5 Or From Source

Jan 20, 2008

Running ubuntu server 6 if I apt-get php5 the version I get is 5.1.2.

Now the latest version on the php.net site is 5.2.5.

Does it really make much of a difference if I'm slightly below current? What are your thoughts please?

I know if I go compiling from source php and mysql are difficult to get working together which is why I like the apt-get method.

View 1 Replies View Related

Website Source

Sep 25, 2007

Website source is a great hosting company! They host up to 8 domains for $107.00.. They have great customer service and they offer 24 hours online support.

View 6 Replies View Related

Open Source A/V

Sep 22, 2007

an A/V kind of solution, that allows me to use my own custom signatures, etc. just wondered if such a thing existed.

View 2 Replies View Related

Php Source Code

Jun 10, 2007

does anybody have a script that can veiw the php source code before it runs to the server of an external site

View 1 Replies View Related

Removing Tilde (~username) Access From Server

May 21, 2009

I've searched the forum but not found the solution and I'm sure it's probably very simple.

How do I disable users from accessing their accounts via the [url]~username method?

On an apache server running cpanel.

View 3 Replies View Related

Removing Large Files Or Folders CentOS

Jul 13, 2008

Something weird happening here. I have tried every string possible...

There are a number of folders I want to remove off my server, tried the good old and simple...

rm -r /folder/

And then went and ended up with a string as long as my screen. No matter what I do, as it goes recursive in to the directory it asks me if I want to remove each file individually. No matter what string or action I take it insists on asking me as it goes to delete each file.

Could this be a configuration option in CentOS?

View 3 Replies View Related

Plesk 11.x / Windows :: Removing Default NS Record

Oct 15, 2013

I am installing plesk go to dns template for edit, when need remove defualt ns record recive this error :

Error: Unable to remove the NS record from the DNS template: Each DNS zone must have at least one NS record.

I am already add 2 ns record !!

View 2 Replies View Related

Open Source FTP Client

Oct 1, 2009

I am looking for a opensource ftp client so I don't have to license a million computers with it. Any body have any good ones they can list?

View 14 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved