Ubuntu :: Can't Reduce The Number Of Lines On Screen?
Feb 26, 2011
I am not sure if this is really a Ubuntu question but lets try it!Received email shows a long header which includes lines of code. I can scroll through it but I can't reduce the number of lines on screen.This significantly reduces the number of lines available for the message. There must be a way to reduce or eliminate this header.
View 2 Replies
ADVERTISEMENT
Aug 21, 2010
I tried to check how many workspaces my desktop could have at once, and it got stuck at 36. Now i can't reduce the number. When I click the workspace switcher, and press "preferences", the preferences screen flickers like crazy, and I can't change it. The window title bars and borders are altso gone, but gnome is running. I don't have compiz running.
Is there any way of reducing the amount of workspaces, through gconf, or terminal?
View 5 Replies
View Related
Apr 22, 2011
I have been experiencing a problem where the screen loads and after initial first few lines breaks up into multiple repetitions of lines. Reloading helps but has to be repeated when pageing down. Mail is no problem; it is supplied by my network provider. OS is openSUSE 11.2 which I update when advised. Below is a sample from the error console:
[Code]...
View 1 Replies
View Related
Jan 21, 2010
I recently found myself in possession of a large file (a few million lines in length) of short strings and would like to count the number of lines that are unique to the file. I thought this would be an easy process, but while working on the problem, I encountered the following. Can anyone explain this weird result to me?
Code:
alaric@alaric-laptop:~/Documents/Programming$ grep '^string$' file.txt | uniq | wc -l
1
[code]....
View 1 Replies
View Related
Dec 25, 2010
View the entire contents of the file / etc / passwd, showing first 10 lines of file / etc / group, 10 displayed the last line of the file / etc / group. And
- The total number of lines and characters in file pwd and grp
View 2 Replies
View Related
Jul 5, 2011
I want to count the lines of all files in this directory and all its subdirectories, but exclude directories "public", "modules", and "templates".
View 2 Replies
View Related
Dec 17, 2010
I need to create a script to count the number of lines from a text file . The output must be put on another text file (no_lines.txt) and in this file i need to generate from the script this output :"File $FILE has $NO_LINES lines ".
View 3 Replies
View Related
Mar 20, 2011
I'm running a find. -name pattern to find some files, and I'd like to elegantly get the total number of lines in these files. How can I achieve that?
View 4 Replies
View Related
Oct 16, 2009
I am wondering if there is some command (sed ?) that could do divide a big text file into small pieces, each of which contains 10 lines
View 1 Replies
View Related
Feb 1, 2011
i need to count the number of files and put the output into a variable. i used wc -l filename but i couldnt find an option to put the output to variable. example if the number o line is 5, i need the output of echo $x is 5.
View 3 Replies
View Related
Aug 11, 2010
I would like to parse an input file in which there are two columns per each row. We want to see how many lines are duplicated where we define duplicate to be having the same second field and different first field. For instance if the input file looks like the following:
79874 13131
79873 12309
79820 13131
[code]...
View 10 Replies
View Related
Feb 14, 2010
I have a rack of four 1TB drives all partitioned identically with three primary partitions. On each drive
- the first partition is only 64MB;
- the second is a large 900GB partition and
- the last holds all the remaining space
mdadm has been used to set up
/dev/md0 - RAID1, comprised of /dev/sda1 and /dev/sdb1
/dev/md1 - RAID5, comprised of /dev/sda2, /dev/sdb2, /dev/sdc2, /dev/sdd2
/dev/md2 - RAID5, comprised of /dev/sda3, /dev/sdb3, /dev/sdc3, /dev/sdd3
OK, so it was a silly mistake to make - but I am now need to increase the size of /dev/md0. My thinking is to reduce the size of md1 so that I can grow md0.
On md1 I have two logical volumes. I've successfully reduced the size of the volume so that I can reduce the size of md1. Now I'm at the nervous stage; I can find little written on the topic of shrinking RAID5 arrays - and even if I do this I'm unsure if I can move partitions around to regain the space I so desire.
View 1 Replies
View Related
Aug 10, 2010
I have a netbook with LED backlight, but even the lowest brightness of the screen is still very bright and eye straining in a dark environment. On Windows and MacOSX there are simple tools that put a borderless more or less transparent black window in front of everything on the screen to reduce brightness even further.Are there such tools for Ubuntu or other means of achieving the same result?
View 4 Replies
View Related
Aug 23, 2010
Can the size of the Ubuntu desktop window be reduced so that it displays on a monitor or via a data projector with a surrounding black border? If so, how? The tragicomic chain of events which leads to the question is as follows. Community group, short of cash, want to equip lecture room. Pull-down screen is set up permanently on one wall. Contractor sets up old data projector via ceiling mount. Data projector is just too far away from wall, such that image cannot be reduced sufficiently by the data projector to fit on the screen.
Annoyingly the image, as displayed, is only slightly too large - just enough to lose the top and bottom panels, Applications menu, File Menu on full-size windows, Indicator applet, Trash, and restore desktop button. The data projector is hooked up via VGA cable to a recycled PC running Ubuntu 10.04 with proprietary NVidia driver (version 173) for GeForce 8400 GS. I'll give anything to be able to do this on the PC, rather than having to move the projector!
View 3 Replies
View Related
Jun 11, 2010
I keep hearing about how Ubuntu is supposed to be so much faster than Windows 7, but have yet to see any major difference in their boot times. I am dual-booting Windows 7 and Ubuntu 10.04 on an intel Centrino 2 processor with 4Gb of ram and both OS's take about the same time to boot. After I get to the bootmanager to select OS, if I click on Windows 7 it almost immediately goes to the GUI load screen with the windows logo. On the other hand, if I boot into Ubuntu I get a black screen for ~30 seconds before the Ubuntu logo even appears. Comparing GUI boot times, Ubuntu is clearly the winner, but they take the same time total.
Does anyone know what is making the long black screen or how to reduce the time? I would really like to show people how fast Ubuntu really boots.Immediatly before Ubuntu Gui starts, an message shows up for a second saying something like "Unknown adaptor version (2): You may experience some problems", it flies past so quickly that may not be verbatim.
View 7 Replies
View Related
Sep 17, 2009
I'm looking for a way to insert the number of lines in a file to the start of the aformentioned file. This should be simple but as I am not used to scripts in Linux, I am finding it tough going. I can find the number of lines in a file easily enough via
filesize=$(awk 'END {print NR}' $1)
but as for inserting this into the first line, i'm failing to do so. I've tried some of the other approaches on these forums but none so far have been able to do so.
I've tried:
sed '1i$filesize' $1
but sed i requires a string, not a variable so no go I've also tried:
mv "$1" "${1}.bak" 2>/dev/null || touch "${1}.bak"
cat $filesize "${1}.bak" >"$1"
but again with no luck as cat seems to need an input stream Just to recap, i want to insert a line at the start of a given file that holds the number of lines the original file has.
ie the file:
a
b
c
d
e
should become:
5
a
b
c
[code].....
View 3 Replies
View Related
Jan 1, 2010
so i have f12 installed on my hd with lvm using the whole extent of the HD , i want to reduce it so i can dual boot it with a windows system, i managed to reduce the logical volume to free some space, but i cant seem to reduce the physical volume, is this possible and how ?
View 2 Replies
View Related
Sep 5, 2010
Everything was going great, updated my nvidia drivers, did initial updates etc... And everything was awesome from the boot screen to the shutdown screen.Recently (today) I installed a few updates that update manager thought were essential. However after doing so, when I restarted my computer and got to what should have been the boot screen, it simply sat for a few seconds with a few horizontal RGB lines and then booted to the login window... I have done nothing else to the pc besides those updates.Also when I shutdown I get the same few RGB lines, they are in the top area of my monitor @ a 135 degree angle.
View 1 Replies
View Related
May 7, 2011
I have random lines near the top of the desktop, as seen in the image on the top right. The spotify app,under wine also shows the same lines that are quite annoying as they make it difficult to navigate.
View 6 Replies
View Related
Apr 5, 2010
Linux Ubuntu 9.10 (karmic), Nvidia g-force 5200, Intel(R) Pentium(R) 4 CPU 2.80GHz(old PC but i need learn Linux inside out b4 I go 100% Linux)But I have taken the time to the learn the basic cmds like man mv cp apt-get install etc. I cisco engineer but I want to get good with Linux distro's.I have a NVIDIA G-FORCE 5200 which according to NVIDIA'S website the 173.14.x.x driver is the correct one.I have tried diver 173.14xx. I installed it manually and restarted x server.
I have read the installation guides on this forum but to no avail.When I reboot Compiz cube features are working BUT my screen goes 640x350.I tried to edit the /etc/X11/ xorg. conf file but I cant see any screen resolutions lines. I tried changing NV to nvidia and visa versa. Still the screen is buggered.I installed compiz checker and ran it it said all ok. My text goes large the colours are jittery ? When I go to NVIDIA XSERVER SETTINGS i can not change the screen res ? It just stops from selecting the options? I also tried driver 185.18xx and the same results.I also tried installing the drivers with Envy NG and still no better.I now have installed 96.43.13 NVIDIA driver and my screen has went back to normal but I can not enable the cube effects. I take this means it has reverted back to the graphics card on the motherboard? I have also looked at xrandr -s <1014x768> cmd to manually change it and again no avail.
View 3 Replies
View Related
Aug 19, 2010
I have noticed that there are some tiny white scanlines over the screen in linux, is this something known? specific graphics cards? just an issue with my setup?
Its hard to explain but its even horizontal scanlines, like small white lines over the screen, like every 3 line... was wondering if its my geforce 8800 or what it is?
View 5 Replies
View Related
Sep 1, 2011
I on my computer when my monitor had lines on it and my speakers made odd sounds. The computer is 10 years old. It started this 3 months ago.
Compaq deskpro EN
Pentium !!! processor 996mhz
20 GB hard drive
Ubuntu 11.04
Relisys CRT monitor
Intel video and sound cards
It gets worse when I put my phone close to the screen (Motorola Razr V3v).
View 4 Replies
View Related
May 2, 2011
I really don't know where I should ask this question. When I'm watching a video in full screen (ex, avi or h264 file) I am seeing random horizontal bars where there is action on the video like where a head is turning.When the motion is slow I am less likely to see these lines. Faster the motion, lots of lines or shaky motion. I was using my onboard Geforce 6150 GPU but thought it was because it was underpowered. I then bought a GT220 thinking that it was the problem. It is still but less frequent. Using the built in player, VLC... I don't know where to look, what to search for...There is my setup:
AMD Athlon II x2 255
4GB DDR3
nvidia GT220 512mb
[code]....
View 2 Replies
View Related
May 29, 2011
I've been away from Kubuntu for a while but came back when Kubuntu 11.04 was released because it's awesome. I have a newer laptop since then, a Latitude E6410 with Intel graphics and 8GB of RAM. Everything works great, except......Sometimes when I resume from suspend to RAM, the screen flickers with thin white lines across the screen. I can switch to a tty and reboot it from there, but I'm unable to use KDE until I reboot. A lot of times resuming from suspend works without issue, but sometimes this problem occurs. I haven't figured out exactly what triggers it. In fact, the most recent time it happened, I didn't even have an application open.
I would like to figure this out because I use suspend a lot. I rarely turn off my laptop unless an update requires me to. I prefer to be able to close my lid and resume whatever I was working on later, but with this glitch I cannot trust it to do that.
View 5 Replies
View Related
Apr 5, 2010
I am a newbie user in Linux. I have installed a package were it has EMC2 software but when I run it shows parallel lines on the screen while running? What is the cause for it ? Should I reinstall ubuntu again? I had taken a screen shot and it will tell you what I really mean? This is the screenshot, [URL].
View 1 Replies
View Related
Jun 29, 2010
I have a very strange problem since I turned to kubuntu 10.4. Often, after some heavy working, my laptop works very slowly and suddenly when loading something, it locks and white lines turns all over the screen, just like curtains. Linux jumps out of KDE and logs in automatically. That's very anoying since all my work is lost and it turns back to the previously saved session.
Also, often when I boot, the load screen is also mmissed up with those white lines. The only thing I can do then is to reboot.
I tried to re-install kubuntu (in first instance, i upgraded in kpackage, then i re-installed with formatting the root en swap partitions).
I don't know how to solve it. Only thing that seems reasonable now is to downgrade, since i didn't have this problem on 9.10 (fyi: I have a dell inspiron 1501 with ATI Xpress 1150 256MB HyperMemory video card, formerly i had problems to have good graphic drivers for it on previeous versions of kubuntu (some 3d games didn't work), maybe this has someting to do with it?)
View 3 Replies
View Related
May 25, 2011
i just installed slackware 13.37 which worked fine but when i boot it up it runs a number of lines and then the screen just goes black... i can login as root blindly and start x (i THINK, judging from hdd led)... but screen stays black... its a laptop and closing/opening the lid doesnt work either...
i am dualbooting with slack 13.1 which runs fine... it switches screen res at some point during boot (font is smaller) and i would say that is the point where the screen goes black in 13.37...
View 14 Replies
View Related
Jul 4, 2010
I made an ubuntu live usb with a 2gb persistent casper rw using pendrive linux's portable installer. this works fine on most computers, but on my laptop, it boots just fine, but the screen is divided with little lines and overlaps slightly on the righr into the left(pic included). the laptop in question is an hp pavillion dv2000 special edition.
View 2 Replies
View Related
Jul 24, 2010
I just got the new kernel update (2.6.32-24-generic, according to "uname -r"), and I went to restart my computer as the system requested. When I selected the new kernel from the boot menu, the Ubuntu splash screen came up, and then it did this subtle alternating shades of purple horizontal line thing. Then a vertical line appeared towards the right of the screen, and then everything faded into this cloudy, bright white splotchy...thing.
The keyboard was still responsive, and hitting ctrl+alt+delete restarted the machine, at which point I tried to replicate the problem, but everything loaded normally this time. My questions are: What the heck happened? Why? Is it dangerous? Why or why not? My machine is a Dell Inspiron 1501, 2 GB RAM, 120 GB hard drive, ATI integrated graphics, AMD 64 Anthlon X2 processor. I'm dual booting with Windows 7 as I learn Linux.
View 2 Replies
View Related
Sep 5, 2010
I don't seem to have an "xorg.conf" file.
Gateway SB400a computer with Edubuntu Lucid installed. The problem first cropped up when I installed the Edubuntu packages on Ubuntu. I did a fresh install with Edubuntu and the problem persists. I don't want to go back to Ubuntu since this computer is for my Grandkids and I want to the Edubuntu stuff for them.
I don't have the specs handy, but I can get them. what I have to do to get them. (it happens when you get old)
EDIT: From my xorg.0.log: (--) PCI:*(0:0:2:0) 8086:2562:107b:4000 Intel Corporation 82845G/GL[Brookdale-G]/GE Chipset Integrated Graphics Device rev 3, Mem @ 0xf0000000/134217728, 0xffa80000/524288
View 9 Replies
View Related