Red Hat :: RHEL6 X64 Client Closed-Source Software
Nov 13, 2010
I would like to play .mp3 and .mpeg files with Red Hat Enterprise Linux 6 Client. Flash and Java must also be working. For Java, I have download the jre-6u22 and the jdk-6u22 and installed manually. How can I get automatically updates for them? For Flash, I have installed the i386 package and the .repo so the updates must working. So, I have
Code:
/etc/yum.repos.d/
adobe-linux-i386.repo
atrpms.repo
epel.repo
epel-testing.repo
mirrors-rpmforge
mirrors-rpmforge-extras
mirrors-rpmforge-testing
packagekit-media.repo
rpmforge.repo
rpmforge.repo.rpmnew
rpmforge-testing.repo.rpmsave
rpmfusion-free-updates.repo
rpmfusion-free-updates-testing.repo
rpmfusion-nonfree-updates.repo
rpmfusion-nonfree-updates-testing.repo
[URL] hasn't RHEL6 yet.
Enabled are only Adobe, RHEL Client v6 for 64-bit x86_64 and the RHEL 6Client - RPMforge -dag repositories. The others make problems with dependencys. RPM Fusion has no EL 6 repos, so I deactivate them. I have chosed to install the gstreamer plug-ins bad but haven't find them. Manually download from rpmfind or pbone results with wrong depencies...it's horrible.
View 3 Replies
ADVERTISEMENT
Mar 9, 2011
I am writing a TCP server in C, and the server listens to incoming client connections and accepts them. It then creates a thread to handle the client. The clients are expected to only receive data from my server and not send any data. So if I use a select() call with a recv(), I believe that the recv() will just block forever since there will not be any data coming from the client. If I use a non-blocking recv(), then this will just return a 0 which tells me nothing because the client is not expected to send any data. I am not sure if I have misunderstood some socket concepts, but I need a solution to detect when the client has disconnected so that I can close the socket and stop sending data to the client. As I understand it, simple ACKs etc are not captured by the recv(), and only data sent by the client will cause recv() to return a non-zero value, so I am not sure how to know when the client has disconnected.
View 7 Replies
View Related
Oct 14, 2010
Installing the closed source java in Xubuntu 10.10.
View 1 Replies
View Related
Mar 18, 2010
I'm asked to create a network tool in C and a GUI API in linux platform by my company. I'm aware of the GPL & GLPL licenses , but not clear whether I can create a proprietary commercial software with the tools & libraries available in Linux: My tool will be written in C and will be using the some network library functions in the Linux and some header files .(Their license is GPL) , also the GUI i'm planning to develop is using GTK and Glade / Anjuta, (GTK is based on GLPL license) , I will be using GCC compiler for C programs,
Please let me know whether it is possible to create a closed source-commercial software using the above tools/libraries, if not possible is there any workaround is there for creating commerical tools in linux Can I make some part of my code closed and some parts open? Also please let me know which is the best GUI building programming language/IDE that can be used with C programs in linux
View 4 Replies
View Related
Aug 6, 2010
Reading some examples on net and copying some codes I was able to build a (frankstein) server that accept connection from one client and receive and send messages to it. The big problem that shows up is that I don't know when client disconnects from my server.
I've been looking for a solution, but no success. I'd read about SO_KEEPALIVE option (which could solve my problem), but I don't know how to use it (how to check the value of it).
I can't use ping because the server (machine) could be running, but not the client (software).
Anyone knows a good tutorial or how to (for beginners like me xD) of TcpIp sockets using c/c++ and how to detect when a client disconnect?
I don't know sockets very well.
View 6 Replies
View Related
Oct 11, 2010
i need the closed source version of java plugin for ubuntu 10.10final for i can use pogo
View 1 Replies
View Related
Jun 23, 2011
I am currently having an issue attempting to set up a dedicated server for source games (TF2, CS:S, L4D2). The required port (27015), along with most others, appears closed to the rest of the world and upon a port scan with DMZ hosting on (therefore no router interference between the internet and my computer) only a few ports are open (80, 139, 443, 445). My ISP does not block ports so therefore the only issue I can find is with my computer running Ubuntu 11.04. I have ensured that all traffic is allowed via iptables and I can't think of anything else that would have ports closed.
View 9 Replies
View Related
Aug 31, 2010
What is a good example of an Open Source IRC client for Windows or Linux? If not, something free and extensible will do.The reason I would like this to be open source is that I wouldn't mind being able to understand how the message formatting is implemented in such a project.
View 5 Replies
View Related
Mar 5, 2009
I am a little optimistic now after my problem of wifi was solved by stoat that presisted for about a year, now i am trying to install my vpn client. he asks me to write the path of kernel source code directory : and i answer by:/lib/modules/2.6.26.8-57.fc8/build/
But he answers no such directory or file and i dont know why
The build is covered by a red box when displayed by a terminal so can any body tells me where i can find my kernel source directory or i should install them, how
View 3 Replies
View Related
Mar 8, 2011
iam just trying to connect to server which accepts one client and server will read(blocking operation) infinitely, but After closing the client socket the server "read operation" is returning zero and "errno variable(in errno.h)" value is also zero. how can i detect whether a client socket is closed/active..?
client.c
Serv_Addr.sin_family = AF_INET;
Serv_Addr.sin_addr.s_addr = inet_addr("127.0.0.1");
Serv_Addr.sin_port = htons(26553);
if( 0 > connect (Serv_Fds,&Serv_Addr,sizeof(Serv_Addr)) )
{
perror("connect");
return 0;
[Code]....
View 3 Replies
View Related
Jun 20, 2011
i am using acer extensa 4620 laptop of 32bit architecture with core 2 duo processor and 1 gb ddr2.i have installed RHEL 6. i want to do practice on virtual machine for my rhce exam.due to 32bit architecture i am not able to use kvm one more problen,during installation of RHEL6 i cannot use "install or upgrade" option while booting dvd.after entering this opiton my screen goes blank nathing comes,but i am able to install usic "basic video driver option" same problem i face when i enter in rescue mode also..... nothing is displayed...the screen goes blank
View 2 Replies
View Related
Apr 22, 2011
Is it possible to install firefox 4 in RHEL6? I can't find a mirror for this package.
View 3 Replies
View Related
Apr 29, 2011
I compiled kernel-2.6.32-71.24.1 on 32-bit rhel6, but there is no kvm.ko. what if I want to use kvm on 32-bit rhel6.
Steps to Reproduce:
1. install kernel-2.6.32-71.24.1.el6.src.rpm
2. rpmbuild -ba kernel.spec
3. find /root/rpmbuild/BUILD/kernel-2.6.32-71.24.1.el6/linux-2.6.32-71.24.1.el6.i686/-name kvm.ko
Actual results:
not found kvm.ko
View 1 Replies
View Related
Dec 20, 2010
I am looking to install RHEL 6 over the network. I havent done any kind of installation before, so this is proving to be an uphill task ergoI just registered on this forum.I'll first let you know what i have:1. I have an RHEL 6 image on one machine and on the same machine I also have a DHCP server ( but am not sure if I have a TFTP server as well - anyway to check ?)What I need:
I need to install RHEL 6 on another machine using the image on the earlier mentioned machine. I have come across many links on my searches online which cover the theoritical aspects which mentions the use of "kickstart" file which once transfered to my client-machine has to be run to install RHEL on my client.. But my problem is, I am unable to find any place which gives a sequence of steps or commands to follow which will help me install this... Can you please guide on how i can go about this
View 2 Replies
View Related
Feb 4, 2011
1: Did chkconfig --level 12345 iptables off (and ip6tables too)
2: Did system-config-firewall and unclicked enable
3: Rebooted:
Dang the stuff is still there:
--
# /etc/init.d/iptables status
Table: mangle
Chain PREROUTING (policy ACCEPT)
[code].....
View 6 Replies
View Related
Jul 15, 2011
I am trying to install RHEL6.0 x86 from a PXE server. Right after formatting the disk installer shows this error:"Unable to read package metadata. This may be due to a missing repodata directory. Please ensure that your install tree has been correctlygenerated. Cannot retrieve repository metadata (repomd.xml) for repository: anaconda-edHatEnterpriseLinux-201009222021.s390x. Please verify its path and try again."I extracted the image on Windows host and then moved it to the Linux PXE server
View 8 Replies
View Related
Jun 4, 2011
I can't boot the X window (init 5) after yum groupinstal;l "X Window System"
View 1 Replies
View Related
Feb 10, 2011
The new Red Hat release takes advantage of the latest Intel and AMD processors as well as advancements in virtualization and Windows interoperability.
View 4 Replies
View Related
Apr 5, 2011
I wanna take the RHCSA exam in RHEL 6. I read exam has 2 parts. And I have some questions about exam.
1. Do they take the exam in one day or 2 days?
2. How many questions come in theoretical part?
3. How many minutes for 1 question?
[code].....
View 7 Replies
View Related
Feb 11, 2011
I loaded RHEL6 (first time ever loading it) and it would boot to the cmd line. I changed /etc/inittab to boot to GUI, now it freezes. I want to change it back, but do not know how to stop the boot process so I can get to the cmd line to re-edit inittab. I'm working in VMware vCenter.
View 5 Replies
View Related
Dec 17, 2010
Does RHEL6 include smp kernel? When I run uname -arn it does #SMP but I want to confirm if a seperate RPM like kernel-smp-* is included in default installation.
View 4 Replies
View Related
Apr 26, 2011
I need to do a project on installing RHEL6 via kick start file in a single DVD. I have made the kick start file and it's ready with the basic parameters like keyboard type, language, firewall and SElinux disabled. How can i boot it in the server. Also please help me in the below steps,
I need to use LVM option for File systems except swap and /boot, how can i mention it in the file?If there is a need to use NIS or LDAP where can i mention it in the file?
View 5 Replies
View Related
Feb 3, 2011
what is the process of updating rhel5.1 to rhel6
is there anything which need to done before creating yum repositry and simplly running yum update ?
View 2 Replies
View Related
Jun 22, 2011
I dig gnome-do. Is there a comparable program out there available for SciLinux 6 or RHEL 6?
View 1 Replies
View Related
Jan 17, 2011
I'm not sure what most people are using. I'll all I've been able to find stated from Redhat is that both Postfix and Sendmail are used. However, studying I've found that Postfix is alot easier to configure.
View 3 Replies
View Related
Feb 10, 2011
I recently upgraded my RHEL system from 5.5 to 6.0. When I went to install a 32-bit application I got the normal failure for missing 32-bit libs (/lib/ld-linux.so.2: bad ELF interpreter: No such file or directory). With RHEL5, simply installing ia32-libs takes care of this problem.
In this case, a "yum search ia32-libs" shows no such package exits. So either it doesn't exist or I've got a yum config problem (although I can pull x86_64 packages just fine). If it doesn't exist, is there an equivalent package?
View 1 Replies
View Related
May 9, 2011
first i make one partiton ten format it add mount point and fire luksopen command and create secert file and enter this in crypttab but when i rebbot it showes scert file not found and partion remain unlocked
View 1 Replies
View Related
Mar 6, 2011
My computer has a memory of 32GB,I know rhel6 has a PAE enabled kernel by default. but the command "free -m" only shows total memory of 16GB ,why?
View 9 Replies
View Related
Dec 22, 2010
I follow the RHEL6 installation guide to make a USB minimal boot media. The document told me the only thing i need to do is:
Code:
dd if=boot.iso of=/dev/sdb
Where boot.iso is a 200MB ISO image i downloaded from the Red Hat Customer Portal and /dev/sdb is my USB flash drive. But i failed to boot. The USB flash drive's size is 2GB, and my PC's bios supports boot from USB.
View 2 Replies
View Related
Nov 23, 2010
I am trying RHEL6 in the 30 days free trial period.I am considering to add CentoS 6 epel repos to add more packages( geez RHEL repos are really tiny aren't they ?)I know I must change /etc/yum.repos.d/ and create some epel.repo with some content.What do I put there to activate epel-6 repo...?
View 3 Replies
View Related