Guest Leviticus Posted July 12, 2006 Share Posted July 12, 2006 mga sir tulong medyo di ako marunong mag install eh 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 errornow 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 thispaano 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 Quote Link to comment
ken_2_10_nah Posted July 12, 2006 Share Posted July 12, 2006 mga sir tulong medyo di ako marunong mag install eh 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 errornow 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 thispaano 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 Quote Link to comment
cruesome Posted July 13, 2006 Share Posted July 13, 2006 (edited) @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 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 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 July 13, 2006 by cruesome Quote Link to comment
l3v3l Posted July 13, 2006 Share Posted July 13, 2006 mga sir tulong medyo di ako marunong mag install eh 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 errornow 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 thispaano ba dapat gawin ko to install it without those error messages. Thank you in advance. pre... yum install gcc-3.4.5-2.i386.rpmor apt-get install gcc-***** you get the picture.. Quote Link to comment
Guest Leviticus Posted July 13, 2006 Share Posted July 13, 2006 @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 for a while i thought this thread was purged 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? Quote Link to comment
dauphin74 Posted July 14, 2006 Share Posted July 14, 2006 Hi, You may try the following services for file sharing: a) NFS: http://www.redhat.com/docs/manuals/linux/R...ide/ch-nfs.html 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? Quote Link to comment
Guest Leviticus Posted July 19, 2006 Share Posted July 19, 2006 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... Quote Link to comment
cruesome Posted July 19, 2006 Share Posted July 19, 2006 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. Quote Link to comment
cruesome Posted July 19, 2006 Share Posted July 19, 2006 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 Quote Link to comment
Gideon Posted July 24, 2006 Share Posted July 24, 2006 Just getting started using Linux. Using OpenLinux. Quote Link to comment
posmaster Posted July 24, 2006 Share Posted July 24, 2006 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.. Quote Link to comment
masterblaster Posted July 25, 2006 Share Posted July 25, 2006 (edited) 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 July 25, 2006 by masterblaster Quote Link to comment
l3v3l Posted July 25, 2006 Share Posted July 25, 2006 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.. Quote Link to comment
masterblaster Posted July 26, 2006 Share Posted July 26, 2006 i think after mo i-dump ang data.. tsaka ka mag-truncate ng tables.. para li-liit yung db mo.. Great idea. SQL command TRUNCATE helps when you don't want to rebuild table definitions. Quote Link to comment
erc.lopez Posted July 26, 2006 Share Posted July 26, 2006 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. Quote Link to comment
Recommended Posts
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.