similar to: kernel/iptables state match support

Displaying 20 results from an estimated 9000 matches similar to: "kernel/iptables state match support"

2014 Jul 20
4
abrt relevance?
I am trying to understand the relevance of the abrt program. It pops up automatically when somethings acts up, but I can't submit anything to RH, because I haven't paid their fees. It is a very bad user experience to go through the whole process of describing what led up to the problem and get to the end of the process and be rejected with an un-fixable error message (because I
2016 Sep 22
4
Firefox 45.4.0-1 for CentOS-6 and CentOS-7
The Red Hat engineers disabled the ffmpeg capability of firefox a couple releases back due to stability issues. CentOS also has removed it as for our main repositories, we build the source code for RHEL with as few changes for branding/artwork as we can. That said, we (I :D) want a firefox with ffmpeg support available, therefore I have created a centosplus version of firefox that has ffmpeg
2010 Dec 09
4
Sequence generation in a table
Dear R helpers I have following input f = c(257, 520, 110). I need to generate a decreasing sequence (decreasing by 100) which will give me an input (in a tabular form) like 257, 157, 57 520, 420, 320, 220, 120, 20 110, 10 I tried the following R code f = c(257, 520, 110) yy = matrix(data = NA, nrow = 3, ncol = 6) for (i in 1:3)      {      value = NULL      for (j in 1 : 6)           {
2011 Mar 15
2
Matching two vectors
Dear R helpers Suppose I have a vector as vect_1 = c("AAA", "AA", "A", "BBB", "BB", "B", "CCC") vect_1_id = c(1:length(vect_1)) Through some process I obtain vect_2_id = c(2, 3, 7), then I need a new vector say vect_2 which will give me vect2 = ("AA", "A", "CCC")  i.e. I need the subset of
2011 Mar 16
2
One to One Matching multiple vectors
Dear R helpers Suppose, x = c(0,  1,  2,  3) y = c("A", "B", "C", "D") z = c(1, 3) For given values of z, I need to the values of y. So I should get "B" and "D". I tried doing y[x][z] but it gives > y[x][z] [1] "A" "C" Kindly guide. Regards Vincy [[alternative HTML version deleted]]
2012 Sep 10
1
following the artwork thread, there appears to be an error at step 4.2 of the wiki article
at: wiki.centos.org/ArtWork I set up a machine to test at step: 4.2, it states: 4.2. Configure Your Workstation ... To download your working copy execute the following command: svn co https://projects.centos.org/svn/artwork ~/ This command will create your working copy inside your home directory, specifically in a directory named artwork. -------------------- quote ends This appears to
2002 Mar 13
3
Windows 98 and samba
I have a samba version 2.0.7 server running on Linux that has been happily supplying public (guest) shares to six Windows 95 workstations for about 2-1/2 years. I am now trying to add two workstations running Windows 98 and I can't connect to the samba server. I can see it in the Network Neighborhood, but whenever I try to browse any shares it asks for a password. No matter what I try, I
2011 Jul 13
1
Effecting CentOS change
CentOS has a clear mission. It's the first paragraph on the centos.org home page: CentOS is an Enterprise-class Linux Distribution derived from sources freely provided to the public by a prominent North American Enterprise Linux vendor. CentOS conforms fully with the upstream vendors redistribution policy and aims to be 100% binary compatible. (CentOS mainly changes packages
2011 Mar 09
3
Rearranging the data
Dear R helpers, xx = data.frame(country = c("USA", "UK", "Canada"), x = c(10, 50, 20), y = c(40, 80, 35), z = c(70, 62, 10)) > xx        country      x     y    z 1      USA        10    40  70 2      UK          50   80   62 3     Canada    20   35   10 I need to arrange this as a new data.frame as follows - country       type     values USA           
2019 May 23
3
Artwork localization
Hello everyone, What do you think about having localized the following CentOS components: - Rolling notes in CentOS installer. These images are shown during the installation process, once the configuration is done and you are waiting for packages to be installed. Rolling notes are a great place to promote CentOS. If they are not localized, they are shown in English language by default.
2019 May 25
2
Artwork localization
Hi Timothy, On Thu, 2019-05-23 at 14:03 +1000, Timothy Lee wrote: > I can provide zh-CN, zh-HK and zh-TW translations of the content. Your changes were pushed. See: https://git.centos.org/centos/Artwork/c/9efa093b155293bf171d6b7f9ceeb73b41170cf9?branch=c8 To render Chinese rolling notes images I had to change the final images' typography from "Overpass" to "Google
2007 Jul 10
3
need to add XTHML class attribute, link_to's html options?
I need to add a class attribute to the elements generated by link_to for my CSS to style the links. How can I do that? <%= link_to "Artworks", :controller => "artwork", :action => "list" %> --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk"
2011 Mar 29
3
Reversing order of vector
Dear R helpers Suppose I have a vector as vect1 = as.character(c("ABC", "XYZ", "LMN", "DEF")) > vect1 [1] "ABC" "XYZ" "LMN" "DEF" I want to reverse the order of this vector as vect2 = c("DEF", "LMN", "XYZ", "ABC") Kindly guide Regards Vincy [[alternative HTML
2013 Jan 15
4
Use of CentOS name and logo
Hi. my name is Giacomo Sanchietti and I'm working for a company called Nethesis. We are working on a CentOS derived distribution like SME Server. It's a minimal CentOS with a software layer on top to add a web configuration interface. The CD iso, it's a CentOS minimal CD with some extras packages from centos-base yum group, and a kickstart file to automatize the installation
2019 Mar 07
2
CentOS 8 Artwork needed
To all the artists and designers here, we need your help. With RHEL 8 beta released, we need to start producing artwork for CentOS 8. It's time for the CentOS Artwork SIG, and anyone else that's interested in contributing to this effort, to start working on everything that will be needed for the new release. What we know we need is anaconda artwork, and new desktop backgrounds to replace
2011 Aug 23
4
Correlation discrepancy
Dear R list, I have one very elementary question regrading correlation between two variables. x = c(44,46,46,47,45,43,45,44) y = c(44,43,41,41,46,48,44,43) > cov(x, y) [1] -2.428571 However, if I try to calculate the covariance using the formula as covariance = sum((x-mean(x))*(y-mean(y)))/8       # no of of paired obs. = 8 or     covariance = sum(x*y)/8-(mean(x)*mean(y)) gives
2009 Sep 23
2
Images don't resolve on ArtWork/Logo
Hey While trying to get some svg files of the CentOS logo I found that [1] can't load the images. The urls are : http://gideon.nyarna.com/artwork/centos-new-2.png http://gideon.nyarna.com/artwork/centos-logo-3.png http://files.squirtgun.ca//CentOS/images/logos/centosLogoRound_v001.jpg Maybe someone can fix this. [1] http://wiki.centos.org/ArtWork/Logo Cheers Didi ---- My www page:
2011 Jan 25
4
Subtracting elements of data.frame
Dear R helpers I have a dataframe as df = data.frame(x = c(1, 14, 3, 21, 11), y = c(102, 500, 40, 101, 189)) > df    x   y 1  1 102 2 14 500 3  3  40 4 21 101 5 11 189 # Actually I am having dataframe having multiple columns. I am just giving an example. I need to subtract all the rows of df by the first row of df i.e. I need to subtract each element of 'x' column by 1. Likewise I
2010 Oct 27
4
One silly question about "tapply output"
Dear R helpers I have a data which gives Month-wise and Rating-wise Rates. So the input file is something like month           rating           rate January        AAA             9.04 February      AAA             9.07 .......................................... .......................................... Decemeber     AAA            8.97  January           BBB           11.15 February        
2019 May 23
1
Artwork localization
Hi Timothy, On Thu, 2019-05-23 at 14:03 +1000, Timothy Lee wrote: > I can provide zh-CN, zh-HK and zh-TW translations of the content. That's awesome! The files you need to edit are the following: - Rolling notes of CentOS installer https://git.centos.org/centos/Artwork/blob/c8/f/rnotes/PO/zh-CN.po https://git.centos.org/centos/Artwork/blob/c8/f/rnotes/PO/zh-HK.po