Sponsored Content
Full Discussion: Ubuntu strange behavior
Operating Systems Linux Ubuntu Ubuntu strange behavior Post 302385130 by Sapfeer on Thursday 7th of January 2010 06:02:20 AM
Old 01-07-2010
Ubuntu strange behavior

It is so till login screen. I mean that when I boot my computer, Ubuntu shows a splash screen with mouse instead of Ubuntu logo and in the login screen it shows XUbuntu login screen... It began when I upgraded to previous kernel, I suppose, but I'm not sure... I can't say that it annoys me very much, but I would like to see what I got... What is the reason of such strange behavior and how can I make my system shows correct labels?..
 

9 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Strange Behavior on COM2

Hi, I have a problem with a new touch screen controller that I am trying to use on a SCO 3.0 system. THe touch screen controller only wants to talk at 9600baud. I have updated /etc/inittab per the manual and also edited /usr/lib/event/devices to use 9600 baud. The only way I can get the... (0 Replies)
Discussion started by: Elwood51
0 Replies

2. Shell Programming and Scripting

Very Strange Behavior for redirection

I have searched far and wide for an explanation for some odd behavior for output redirection and haven't come up with anything. A co-worker was working on old scripts which have run for years and embedded in their code were output redirects which worked for the script during execution and then... (5 Replies)
Discussion started by: cahook
5 Replies

3. Shell Programming and Scripting

nawk strange behavior

Dear guys; when deleting repeated lines using nawk as below ; Why the below syntax works? nawk ' !a++' infile > outfile and when using the other below syntax the nawk doesn't work? nawk ' { !a++ } ' infile > outfile or nawk ' { !a++ } ' infile > outfile BR (4 Replies)
Discussion started by: ahmad.diab
4 Replies

4. Programming

Strange behavior in C++

I have the following program: int main(int argc, char** argv){ unsigned long int mean=0; for(int i=1;i<10;i++){ mean+=poisson(12); cout<<mean<<endl; } cout<<"Sum of poisson: "<< mean; return 0; } when I run it, I get the... (4 Replies)
Discussion started by: santiagorf
4 Replies

5. Red Hat

strange mail behavior

Hi I have script to to take backup and send mail to a group once a day. One strange behavior I have observed recently is that most of the time the mail we receive is fine . But someday it just sends out mail without any subject with undisclosed recipients. I dont know how to find the cause... (0 Replies)
Discussion started by: ningy
0 Replies

6. Shell Programming and Scripting

Strange behavior on one of my server

I am not sure what is wrong, but I have some strange behavior when printing things out. I do create a file with only one word test, no space, no new line etc. nano file<enter> test<ctrl x>y<enter> Server 1 gets (fail) awk '{print "+"$0"*"}' file *test Server 2 gets (OK) awk '{print... (9 Replies)
Discussion started by: Jotne
9 Replies

7. AIX

Strange behavior with tar

I am trying to create an archive using tar. I am specifying a list of directories using the -L option. For testing purposes I created a simple directory structure: /backup/test /backup/test/test1 /backup/test/test2 The file specified by the -L option, named files.txt, contains:... (8 Replies)
Discussion started by: judykstra
8 Replies

8. Shell Programming and Scripting

Strange behavior of grep

Hi All, I am facing a strange problem while grepping for a process. Here is the small script that i have written. It will look for any process running with the parameter passed to the script. If no process is running it should print appropriate message. $ cat t.ksh #!/bin/ksh set -x ... (9 Replies)
Discussion started by: veeresh_15
9 Replies

9. Shell Programming and Scripting

Strange Ctrl+C behavior

Hello All, I have a strange issue. I've created a shell script which connects to RMAN (Oracle Recovery Manager) and executes full DB backup. I then executed this script with nohup and in the background: $ nohup my_script.sh > logfile.log 2>&1 &The issue is that when I tried to take a look into... (6 Replies)
Discussion started by: JackK
6 Replies
SPLASH(4)						   BSD Kernel Interfaces Manual 						 SPLASH(4)

NAME
splash -- splash screen / screen saver interface SYNOPSIS
device splash DESCRIPTION
The splash pseudo device driver adds support for the splash screen and screen savers to the kernel. This driver is required if the splash bitmap image is to be loaded or any screen saver is to be used. Splash screen You can load and display an arbitrary bitmap image file as a welcome banner on the screen when the system is about to start. This image will remain on the screen during kernel initialization process until the login prompt appears on the screen or until a screen saver is loaded and initialized. The image will also disappear if you hit any key, although this may not work immediately if the kernel is still probing devices. If you specify the -c or -v boot option when loading the kernel, the splash image will not appear. However, it is still loaded and can be used as a screen saver later: see below. In order to display the bitmap, the bitmap file itself and the matching splash image decoder module must be loaded by the boot loader. Cur- rently the following decoder modules are available: splash_bmp.ko W*ndows BMP file decoder. While the BMP file format allows images of various color depths, this decoder currently only han- dles 256 color bitmaps. Bitmaps of other color depths will not be displayed. splash_pcx.ko ZSoft PCX decoder. This decoder currently only supports version 5 8-bpp single-plane images. The EXAMPLES section illustrates how to set up the splash screen. If the standard VGA video mode is used, the size of the bitmap must be 320x200 or less. If you enable the VESA mode support in the kernel, either by statically linking the VESA module or by loading the VESA module (see vga(4)), you can load bitmaps up to a resolution of 1024x768, depending on the VESA BIOS and the amount of video memory on the video card. Screen saver The screen saver will activate when the system is considered idle: i.e. when the user has not typed a key or moved the mouse for a specified period of time. As the screen saver is an optional module, it must be explicitly loaded into memory. Currently the following screen saver modules are available: blank_saver.ko This screen saver simply blanks the screen. daemon_saver.ko Animated BSD Daemon screen saver. fade_saver.ko The screen will gradually fade away. fire_saver.ko A fire which becomes higher as load increases. green_saver.ko The screen will be blanked, similar to blank_saver.ko. If the monitor and the video card's BIOS support it the screen will also be powered off. logo_saver.ko Animated graphical BSD Daemon. rain_saver.ko Draws a shower on the screen. snake_saver.ko Draws a snake of string. star_saver.ko Twinkling stars. warp_saver.ko Streaking stars. Screen saver modules can be loaded using kldload(8): kldload logo_saver The timeout value in seconds can be specified as follows: vidcontrol -t N Alternatively, you can set the saver variable in the /etc/rc.conf to the screen saver of your choice and the timeout value to the blanktime variable so that the screen saver is automatically loaded and the timeout value is set when the system starts. The screen saver may be instantly activated by hitting the saver key: the defaults are Shift-Pause on the AT enhanced keyboard and Shift-Ctrl-NumLock/Pause on the AT 84 keyboard. You can change the saver key by modifying the keymap (see kbdcontrol(1), keymap(5)), and assign the saver function to a key of your preference. The screen saver will not run if the screen is not in text mode. Splash screen as a screen saver If you load a splash image but do not load a screen saver, you can continue using the splash module as a screen saver. The screen blanking interval can be specified as described in the Screen saver section above. FILES
/boot/defaults/loader.conf boot loader configuration defaults /etc/rc.conf system configuration information /boot/kernel/splash_*.ko splash image decoder modules /boot/kernel/*_saver.ko screen saver modules /boot/kernel/vesa.ko the VESA support module EXAMPLES
In order to load the splash screen or the screen saver, you must have the following line in the kernel configuration file. device splash Next, edit /boot/loader.conf (see loader.conf(5)) and include the following lines: splash_bmp_load="YES" bitmap_load="YES" bitmap_name="/boot/chuck.bmp" In the above example, the file /boot/chuck.bmp is loaded. In the following example, the VESA module is loaded so that a bitmap file which cannot be displayed in standard VGA modes may be shown using one of the VESA video modes. splash_pcx_load="YES" vesa_load="YES" bitmap_load="YES" bitmap_name="/boot/chuck.pcx" If the VESA support is statically linked to the kernel, it is not necessary to load the VESA module. Just load the bitmap file and the splash decoder module as in the first example above. CAVEATS
Both the splash screen and the screen saver work with syscons(4) only. SEE ALSO
vidcontrol(1), syscons(4), vga(4), loader.conf(5), rc.conf(5), kldload(8), kldunload(8) HISTORY
The splash driver first appeared in FreeBSD 3.1. AUTHORS
The splash driver and this manual page were written by Kazutaka Yokota <yokota@FreeBSD.org>. The splash_bmp module was written by Michael Smith <msmith@FreeBSD.org> and Kazutaka Yokota. The splash_pcx module was written by Dag-Erling Smorgrav <des@FreeBSD.org> based on the splash_bmp code. BUGS
If you load a screen saver while another screen saver has already been loaded, the first screen saver will not be automatically unloaded and will remain in memory, wasting kernel memory space. BSD
November 29, 2010 BSD
All times are GMT -4. The time now is 10:10 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy