Jump to content
  • Recently Browsing

    • No registered users viewing this page.

Linux Anybody?


Recommended Posts

Guest Leviticus
mga sir tulong medyo di ako marunong mag install eh :D

 

the server installed kasi yjust the OS without the softwares and compiller such as GCC and CC.

 

now im installing gcc-3.4.5-2.i386.rpm by using

 

rpm -Uvh gcc-3.4.5-2.i386.rpm

 

but it gives me an error

now i tried to install the said dependencies

 

rpm -Uvh glibc-devel-2.3.4-2.19.i386.rpm

 

it gives me now an error like this

paano ba dapat gawin ko to install it without those error messages.

 

Thank you in advance.

 

it just means mali ang paginstall mo. it also means mali or corrupted ang mga installers mo. better install the full linux package again; or hindi lang magcompatible ang hardware (drivers) mo with the distro's stored available hardware list

Link to comment
mga sir tulong medyo di ako marunong mag install eh :D

 

the server installed kasi yjust the OS without the softwares and compiller such as GCC and CC.

 

now im installing gcc-3.4.5-2.i386.rpm by using

 

rpm -Uvh gcc-3.4.5-2.i386.rpm

 

but it gives me an error

now i tried to install the said dependencies

 

rpm -Uvh glibc-devel-2.3.4-2.19.i386.rpm

 

it gives me now an error like this

paano ba dapat gawin ko to install it without those error messages.

 

Thank you in advance.

 

 

what distro are you using? since you are installing rpms, I assume it's Red Hat, Fedora, Mandrake or another rpm based distro.

 

You need to use a package management tool like yum or urpmi to install new packages. This will take care of the dependencies. In Debian-based distros this is done by apt-get.

 

Google for yum or urpmi

Link to comment

@bukn0y: if you can identefy the required (dependency) rpms from the error messages, you can download that rpm and place it on the same directory as the other rpms you wish to install, then you may call rpm again as:

 

rpm -Uvh *.rpm

 

btw, yum is yummy :P

 

 

Hey linux guys. Let's make this thread active again.

 

Also, I need input on Linux in a corporate environment (I'm in a call center right now); primarily the DISADVANTAGES of using linux as the main OS.

More power to OpenSource!

for a while i thought this thread was purged :P

 

seen and replied to your post regarding samba on the groups and chapters thread.

over the years i have deployed linux as vpn server, file and print server, content filtering, and as a router with redundancy.

Edited by cruesome
Link to comment
mga sir tulong medyo di ako marunong mag install eh :D

 

the server installed kasi yjust the OS without the softwares and compiller such as GCC and CC.

 

now im installing gcc-3.4.5-2.i386.rpm by using

 

rpm -Uvh gcc-3.4.5-2.i386.rpm

 

but it gives me an error

now i tried to install the said dependencies

 

rpm -Uvh glibc-devel-2.3.4-2.19.i386.rpm

 

it gives me now an error like this

paano ba dapat gawin ko to install it without those error messages.

 

Thank you in advance.

 

pre... yum install gcc-3.4.5-2.i386.rpm

or apt-get install gcc-*****

you get the picture..

Link to comment
Guest Leviticus
@bukn0y: if you can identefy the required (dependency) rpms from the error messages, you can download that rpm and place it on the same directory as the other rpms you wish to install, then you may call rpm again as:

 

rpm -Uvh *.rpm

 

btw, yum is yummy :P

for a while i thought this thread was purged :P

 

seen and replied to your post regarding samba on the groups and chapters thread.

over the years i have deployed linux as vpn server, file and print server, content filtering, and as a router with redundancy.

Thanks pala sa samba input mo. Gave me ang insight on linux networking. Madugo talaga as compared to windows networking. Hehe. This time around I'm undergoing self-study on how to connect a client linux desktop to a server box so that the user's profiles/files can be access whichever computer a user would log in. Malabo ba? Hehe... need advice if tama ang direction ng study ko: correct ba that I'm reading on NIS?

Link to comment

Hi,

 

You may try the following services for file sharing:

 

a) NFS: http://www.redhat.com/docs/manuals/linux/R...ide/ch-nfs.html

 

B) Samba: http://www.redhat.com/docs/manuals/linux/R...e/ch-samba.html

 

HTH,

 

Dauphin74

 

 

Thanks pala sa samba input mo. Gave me ang insight on linux networking. Madugo talaga as compared to windows networking. Hehe. This time around I'm undergoing self-study on how to connect a client linux desktop to a server box so that the user's profiles/files can be access whichever computer a user would log in. Malabo ba? Hehe... need advice if tama ang direction ng study ko: correct ba that I'm reading on NIS?
Link to comment
Guest Leviticus

Hi linux guys.

 

need help on configuring 2 NIC cards (again). How do I enable internet connection from a an internet-enabled network at the same time connecting a noninternet-enabled network? sort of a network bridge ba. and at the same time how do I make the users of the network access the linux box? thanks in advance...

Link to comment
Hi linux guys.

 

need help on configuring 2 NIC cards (again). How do I enable internet connection from a an internet-enabled network at the same time connecting a noninternet-enabled network? sort of a network bridge ba. and at the same time how do I make the users of the network access the linux box? thanks in advance...

 

assumption: iptables and iproute2 installed and interfaces are up with proper ip assignment, and you have the following given

 

INTERNET:

 

interface: eth0

ip add: 20x.xxx.xxx.xxx/29 (aka 255.255.255.254)

gateway: 20x.xxx.xxx.xxy

 

 

LAN:

 

interface: eth1

ip add: 192.168.0.1/24 (aka 255.255.255.0)

 

lets play quickie!

 

#!/bin/sh
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# levi masq script
# july 19, 2006
# cruesome ;-)
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# ISP variables here
#
 WIF = "eth0"
 WIP = "20x.xxx.xxx.xxx"
 WIG = "20x.xxx.xxx.xxy"
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

# let's make sure we are route thru the right gateway (ISP) 
ip route delete default
ip route add default via ${WIG} dev ${WIF} src ${WIP}

# iptables rules/firewall, choose only 1 option


# MASQ OPTION 1:
# in caseyou wanted everyone to go out of the internet
iptables -t nat -A POSTROUTING -o ${WIF} -j MASQUERADE

# MASQ OPTION 2: only specific ip will go out of the internet (ie, YOURPC, PROXYSERVERS, etc)
iptables -t nat -A POSTROUTING -s <YOUR PC's IP ADD> -o ${WIF} -j MASQUERADE
iptables -t nat -A POSTROUTING -s <YOUR PROXY's IP ADD> -o ${WIF} -j MASQUERADE


# let's keep your box safe
iptables -A INPUT -m state --state ESTABLISHED,RELATED -i ${WIF} -j ACCEPT
iptables -A INPUT -i ${WIF} -j DROP

# now we can turn on routing
echo 1 > /proc/sys/net/ipv4/ip_forward

 

have that code on an .sh file and dont forget to chmod +x

 

hope that helps.

Link to comment
Thanks pala sa samba input mo. Gave me ang insight on linux networking. Madugo talaga as compared to windows networking. Hehe. This time around I'm undergoing self-study on how to connect a client linux desktop to a server box so that the user's profiles/files can be access whichever computer a user would log in. Malabo ba? Hehe... need advice if tama ang direction ng study ko: correct ba that I'm reading on NIS?

guess you wanted to have samba instead of windows server... google ka na lang for "samba pdc"

 

for administration samba console could come in handy

Link to comment

hi people!!

anyone familiar with the posgresql in linux?

we have a server kasi that runs on a linux platform..me database kasi dun na everyday e nag c-create sya ng mga tables lets just say for the data of a point of sale system.

is there other way na ma bawasan ang space nya para bang archiving..kasi im using pgdump and vacuum command on the console,

tnx..

Link to comment
hi people!!

anyone familiar with the posgresql in linux?

we have a server kasi that runs on a linux platform..me database kasi dun na everyday e nag c-create sya ng mga tables lets just say for the data of a point of sale system.

is there other way na ma bawasan ang space nya para bang archiving..kasi im using pgdump and vacuum command on the console,

tnx..

 

What is wrong with pg_dump that you can't do what you are asking? Just want to understand the difficulty.

 

If you want to cleanup, you can execute SQL scripts after a backup.

 

To delete delete rows from a table, it is simply a SQL script in the form

DELETE FROM <TABLE NAME> WHERE <CONDITIONAL(S)>

To delete a table

DROP TABLE <TABLE NAME>

Edited by masterblaster
Link to comment
hi people!!

anyone familiar with the posgresql in linux?

we have a server kasi that runs on a linux platform..me database kasi dun na everyday e nag c-create sya ng mga tables lets just say for the data of a point of sale system.

is there other way na ma bawasan ang space nya para bang archiving..kasi im using pgdump and vacuum command on the console,

tnx..

 

i think after mo i-dump ang data.. tsaka ka mag-truncate ng tables..

para li-liit yung db mo..

Link to comment

I have in my control about 700 workstations, about 40 servers, alot of sites. I'm already planning to migrate most of my servers to Linux this year, and hopefully in 1-2 yrs all the desktops. M$ Windows is just too much expensive, specially the M$ Office, thats why we are using OpenOffice.

 

B)

Link to comment

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...