similar to: Should the "Banner Files" Tips and Trix be visible from the menu ?

Displaying 20 results from an estimated 2000 matches similar to: "Should the "Banner Files" Tips and Trix be visible from the menu ?"

2007 Dec 24
3
What I would like to contribute with
Hi, I saw some errors in the "Amamda backup" article that I would correct and then I would like to start a "Banners" article that describes what files have what meaning like, motd, issue, issue.net and what info they should/could contain. I have also worked a lot with Asterisk and is keen to move the Fedora 1.4 to CentOS addons but I don't know if this is the right forum.
2009 Jun 17
2
dual boot tips
Hi, Could a wiki page about tips and trix fro dual booting be of interest ? I can think of one part that is file systems and filesystem drivers, like ntfs driver for Linux and ext2/3 drivers for Windows. And another part is how to sync favorites, emails and such independently of OS (Im unshure if this is possible, but I know that Mozilla had something going a while back). /MatsK
2008 Nov 22
1
Trix
Hi, does anyone of you have any experiences with Trix? Did it work out for you? And which versions did you use? Thank you!
2007 Dec 26
1
"Securing OpenSSH" link it to "Banner Files"
Hi, I would like to add a small section about "Banners" to "Securing OpenSSH" and then link it to the "Banner Files". Any objections ? or is this a task for the author ? Kind regards Mats Ref.: http://wiki.centos.org/HowTos/Network/SecuringSSH http://wiki.centos.org/TipsAndTricks/BannerFiles
2008 Nov 08
3
Rolled Distro?
Hi folks, I've been a trixbox user for a few years now but I'm thinking about jumping ship. Trixbox is great, but it's missing two features out of the box which are really important to me: outbound faxing (hylafax) and imap voicemail. I see no indication that they will be included anytime in the near future, so I have a choice to make - I've looked around at Elastix,
2020 Oct 18
2
[Ocfs2-devel] [RFC] treewide: cleanup unreachable breaks
On Sun, 2020-10-18 at 19:59 +0100, Matthew Wilcox wrote: > On Sat, Oct 17, 2020 at 09:09:28AM -0700, trix at redhat.com wrote: > > clang has a number of useful, new warnings see > > https://urldefense.com/v3/__https://clang.llvm.org/docs/DiagnosticsReference.html__;!!GqivPVa7Brio!Krxz78O3RKcB9JBMVo_F98FupVhj_jxX60ddN6tKGEbv_cnooXc1nnBmchm-e_O9ieGnyQ$ > > Please get your IT
2020 Oct 19
2
[PATCH] drm: remove unneeded break
From: Tom Rix <trix at redhat.com> A break is not needed if it is preceded by a return or break Signed-off-by: Tom Rix <trix at redhat.com> --- drivers/gpu/drm/mgag200/mgag200_mode.c | 5 ----- drivers/gpu/drm/nouveau/nvkm/subdev/bios/pll.c | 1 - drivers/gpu/drm/nouveau/nvkm/subdev/clk/mcp77.c | 3 --- drivers/gpu/drm/nouveau/nvkm/subdev/fb/ramnv50.c | 1 -
2002 Dec 20
5
Getting graphs into LaTeX
Hello ALL: I ran with success the following commands in R getting a file saved ------------------------------------------------------------------------------------ postscript() postscript('~/data/st202/2003/lecture00/lecture00-graph-01.eps', horizontal = FALSE, height = 6, pointsize = 10) hist(trial.outcome.5, breaks = 5, main = '1000 Replications of 5 Trials of a
2020 Oct 19
5
[RFC] treewide: cleanup unreachable breaks
On Sat, Oct 17, 2020 at 10:43 PM Greg KH <gregkh at linuxfoundation.org> wrote: > > On Sat, Oct 17, 2020 at 09:09:28AM -0700, trix at redhat.com wrote: > > From: Tom Rix <trix at redhat.com> > > > > This is a upcoming change to clean up a new warning treewide. > > I am wondering if the change could be one mega patch (see below) or > > normal patch
2010 Apr 08
2
New Section under TipsAndTricks/Filesystem Tips called "Configuring Automount in Gnome for USB Drives"
Hello, This is user MichaelConvey. I would like to add a section under TipsAndTricks/Filesystem Tips called "Configuring Automount in Gnome for USB Drives". The content will include something like the following: 1) yum install gconf-editor 2) In gnome, go to Applications/System Tools/Configuration Editor 3) In the graphical editor, in the left window, go to
2011 May 16
4
Winetricks list comes up blank OSX Snow Leopard
Hello everyone, I have been having some problems with wine, mainly that I can't get any winetricks to show up. I downloaded both wine and winetricks from Mac Ports, I have even installed some third party programs (Like Trix) and no luck. In wine and wine bottler the list is always empty! I have tried to install winetricks manually through the terminal as well. I really have no idea why this
2023 Feb 28
1
[PATCH] drm/nouveau/fifo: set nvkm_engn_cgrp_get storage-class-specifier to static
smatch reports drivers/gpu/drm/nouveau/nvkm/engine/fifo/runl.c:33:18: warning: symbol 'nvkm_engn_cgrp_get' was not declared. Should it be static? nvkm_engn_cgrp_get is only used in runl.c, so it should be static Signed-off-by: Tom Rix <trix at redhat.com> --- drivers/gpu/drm/nouveau/nvkm/engine/fifo/runl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git
2023 Mar 02
1
[PATCH] drm/nouveau/nvfw/acr: set wpr_generic_header_dump storage-class-specifier to static
gcc with W=1 reports drivers/gpu/drm/nouveau/nvkm/nvfw/acr.c:49:1: error: no previous prototype for ?wpr_generic_header_dump? [-Werror=missing-prototypes] 49 | wpr_generic_header_dump(struct nvkm_subdev *subdev, | ^~~~~~~~~~~~~~~~~~~~~~~ wpr_generic_header_dump is only used in acr.c, so it should be static Signed-off-by: Tom Rix <trix at redhat.com> ---
2023 Mar 03
1
[PATCH] drm/nouveau/fifo: set gf100_fifo_nonstall_block_dump storage-class-specifier to static
gcc with W=1 reports drivers/gpu/drm/nouveau/nvkm/engine/fifo/gf100.c:451:1: error: no previous prototype for ?gf100_fifo_nonstall_block? [-Werror=missing-prototypes] 451 | gf100_fifo_nonstall_block(struct nvkm_event *event, int type, int index) | ^~~~~~~~~~~~~~~~~~~~~~~~~ gf100_fifo_nonstall_block is only used in gf100.c, so it should be static Signed-off-by: Tom Rix <trix at
2023 May 17
1
[PATCH] drm/nouveau/acr/ga102: set variable ga102_gsps storage-class-specifier to static
smatch reports drivers/gpu/drm/nouveau/nvkm/subdev/gsp/ga102.c:49:1: warning: symbol 'ga102_gsps' was not declared. Should it be static? This variable is only used in its defining file, so it should be static Signed-off-by: Tom Rix <trix at redhat.com> --- drivers/gpu/drm/nouveau/nvkm/subdev/gsp/ga102.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git
2006 Oct 17
3
Documenting USB tips -- Multi-card support
I would like to document adding multi-cardreader USB support. I would think that USB support should be added to tips & tricks: http://wiki.centos.org/TipsAndTricks Then a link to multi-cardreader support. My wiki name is RobertMoskowitz
2023 Mar 29
1
[PATCH] drm/nouveau/svm: remove unused ret variable
clang with W=1 reports drivers/gpu/drm/nouveau/nouveau_svm.c:929:6: error: variable 'ret' set but not used [-Werror,-Wunused-but-set-variable] int ret; ^ This variable is not used so remove it. Signed-off-by: Tom Rix <trix at redhat.com> --- drivers/gpu/drm/nouveau/nouveau_svm.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git
2023 Mar 31
1
[PATCH] drm/nouveau/acr: remove unused loc variable
clang with W=1 reports drivers/gpu/drm/nouveau/nvkm/subdev/acr/lsfw.c:221:7: error: variable 'loc' set but not used [-Werror,-Wunused-but-set-variable] u32 loc, sig, cnt, *meta; ^ This variable is not used so remove it. Signed-off-by: Tom Rix <trix at redhat.com> --- drivers/gpu/drm/nouveau/nvkm/subdev/acr/lsfw.c | 3 +-- 1 file changed, 1
2012 Feb 11
3
9.0-RELEASE PV from scratch on XCP v1.1.0
Title: HOWTO-FreeBSD-on-XCP Author: John D. "Trix" Farrar Date: 2012-02-09 * The Challenge - ParaVirtualized FreeBSD 9.0-RELEASE under XCP 1.1.0 The idea here is to create a PV FreeBSD VM under Xen Cloud Platform (XCP) without starting with an HVM first. The documentation I''''ve been able to find on-line is at least a year old and is mostly written for Xen (under
2010 May 26
2
Tips and Tricks: Install from GRUB
Proposed new page for comment: http://wiki.centos.org/TipsAndTricks/InstallFromGRUB Phil