Re: [CentOS] Where is the Centos Linux 5.5 kernel syscall handler for mmap?
On Sat, 28 May 2011, Frank Chang wrote: > To: centos@centos.org > From: Frank Chang > Subject: [CentOS] Where is the Centos Linux 5.5 kernel syscall handler for > mmap? > > > Good evening, We are using Centos Linux Release 5.5 > x86_32. We wondering where the kernel syscall handler for > mmap in Centos Linux 5.5 distribution is located(for > example /usr/xxx/)? Would any programmers or operating > system administrators have this information? Thank you. Hello Frank. You could try to grep the source code if you have some idea of the function name you are looking for. Kind Regards, Keith Roberts - Websites: http://www.karsites.net http://www.php-debuggers.net http://www.raised-from-the-dead.org.uk All email addresses are challenge-response protected with TMDA [http://tmda.net] - ___ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
Re: [CentOS] OT: Why VM?
On 5/28/11, James B. Byrne wrote: >> 4. Gain operational flexibility: Respond to market changes with >> dynamic resource management, faster server provisioning and >> improved desktop and application deployment. > > I have no idea how deploying VMs to a company's desktop workstations > could possibly benefit the firm., > >> 5. Improve desktop manageability and security: Deploy, manage >> and monitor secure desktop environments that users can access >> locally or remotely, with or without a network connection, on >> almost any standard desktop, laptop or tablet PC. > > Again, how is this accomplished and what are the advantages over a > single OS install? None of the above claims have anything to do > with VM per se as far as I can see. Legacy applications support for example.I have plenty of SME customers who use software that are not really designed for a modern networked environment and still relies on some old style hardware-dependent licensing scheme. So if the workstations desktops these are on dies, and the vendor gone out of business, they are screwed. Virtualization eliminates this worry. Then there is the security issue. You can fully isolate a user's Windows desktop and allow administrative access and not worry the user will find a way to re-enable USB ports. ___ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
[CentOS] AUTO: Ott, Jerry is out of the office. (returning 06/11/2011)
I am out of the office until 06/11/2011. I will be out of the office starting 5/27/2011 and will not return until 6/12/2011. I will respond to your message when I return. Note: This is an automated response to your message "CentOS Digest, Vol 76, Issue 28" sent on 5/28/2011 9:00:02 AM. This is the only notification you will receive while this person is away. ___ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
Re: [CentOS] local repo
On Saturday 28 May 2011 06:03:19 Steven Crothers wrote: > You'll have to edit your repos in the %post section of your ks. The > repos are provided by centos-release iirc. > > On Fri, May 27, 2011 at 11:22 AM, Jerry Geis wrote: > > Hi all, > > > > When I am installing I use kickstart and have a line like: > >repo --name=Updates > > --baseurl=http://192.168.1.14/centos/5.6/updates/x86_64/ > > and that works great for installing the OS. > > > > After that the machine reboots and I have it automatically go into > > additional installations running scripts. > > These installations do "yum install XXX". > > However, its no longer using my above repo its using the mirrorlist (as > > expected). > > > > My questions are : > > > > 1) I dont see a way in yum to say "use this repo to install", is there a > > way to point to my server in the office > > and dont do the mirrorlist. > > > > 2) Do I just drop a file called CentOS-office in the /etc/yum.repos.d > > directory > > that looks like this and it will be used first instead of the mirrorlist: > > > > > > [base] > > name=CentOS-$releasever - Base > > mirrorlist=http://192.168.1.14/?release=$releasever&arch=$basearch&repo=o > > s #baseurl=http://192.168.1.14/centos/$releasever/os/$basearch/ > > gpgcheck=1 > > gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-5 > > > > #released updates > > [updates] > > name=CentOS-$releasever - Updates > > mirrorlist=http://192.168.1.14/?release=$releasever&arch=$basearch&repo=u > > pdates #baseurl=http://192.168.1.14/centos/$releasever/updates/$basearch/ > > gpgcheck=1 > > gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-5 > > > > > > > > I dont want to mess anything up and I want additional package installs > > in the office to go faster > > in the office. I can remove the file when I am done installing. > > > > Is there a better way or is this the way to do it? > > > > jerry Actually Steven is wrong. You can do yum install --disablerepo http://192.168.1.14//package.rpm But I agree with Steven, that the best way is to fix your repos in the post section. Marian signature.asc Description: This is a digitally signed message part. ___ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
Re: [CentOS] local repo
Marian, He wanted to disable default repos and enable his private mirror instead. Your solution would actually not help him. He wants to make his personal repo the primary repo for fresh installs, which can only be done in %post since centos-release is going to overwrite it. Using --disablerepo on a non-existent repo (the problem being expressed) wouldn't work in this case. Of course another option is to download the centos-release srpm, and change the repos built in, or remove the repos entirely and make it rely on your-repos.rpm or similar. That's probably a little over the top for what you're looking for though. On Sat, May 28, 2011 at 2:03 PM, Marian Marinov wrote: > On Saturday 28 May 2011 06:03:19 Steven Crothers wrote: >> You'll have to edit your repos in the %post section of your ks. The >> repos are provided by centos-release iirc. >> >> On Fri, May 27, 2011 at 11:22 AM, Jerry Geis wrote: >> > Hi all, >> > >> > When I am installing I use kickstart and have a line like: >> > repo --name=Updates >> > --baseurl=http://192.168.1.14/centos/5.6/updates/x86_64/ >> > and that works great for installing the OS. >> > >> > After that the machine reboots and I have it automatically go into >> > additional installations running scripts. >> > These installations do "yum install XXX". >> > However, its no longer using my above repo its using the mirrorlist (as >> > expected). >> > >> > My questions are : >> > >> > 1) I dont see a way in yum to say "use this repo to install", is there a >> > way to point to my server in the office >> > and dont do the mirrorlist. >> > >> > 2) Do I just drop a file called CentOS-office in the /etc/yum.repos.d >> > directory >> > that looks like this and it will be used first instead of the mirrorlist: >> > >> > >> > [base] >> > name=CentOS-$releasever - Base >> > mirrorlist=http://192.168.1.14/?release=$releasever&arch=$basearch&repo=o >> > s #baseurl=http://192.168.1.14/centos/$releasever/os/$basearch/ >> > gpgcheck=1 >> > gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-5 >> > >> > #released updates >> > [updates] >> > name=CentOS-$releasever - Updates >> > mirrorlist=http://192.168.1.14/?release=$releasever&arch=$basearch&repo=u >> > pdates #baseurl=http://192.168.1.14/centos/$releasever/updates/$basearch/ >> > gpgcheck=1 >> > gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-5 >> > >> > >> > >> > I dont want to mess anything up and I want additional package installs >> > in the office to go faster >> > in the office. I can remove the file when I am done installing. >> > >> > Is there a better way or is this the way to do it? >> > >> > jerry > > Actually Steven is wrong. You can do > > yum install --disablerepo http://192.168.1.14//package.rpm > > But I agree with Steven, that the best way is to fix your repos in the post > section. > > Marian > > ___ > CentOS mailing list > CentOS@centos.org > http://lists.centos.org/mailman/listinfo/centos > > -- Steven Crothers steven.croth...@gmail.com ___ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos