OpenSUSE :: Remove The Tab-like Character In Terminal?

Dec 8, 2010

In my terminal , there's always a tab-like(a long space) between the "pswz-zhangy@linux-buym:~>" and the cursor, how can i get rid of if?

View 5 Replies


ADVERTISEMENT

General :: Use The Man / Info / Apropos Pages - Character Instructed The Shell To Interpret A Special Character As An Ordinary Character?

Mar 27, 2010

1.What character instructd the shell to interpret a special character as an ordinary character?

2.What directory contains some of the utilities available on the system in the form of binary files?

3. What command is used to search the location of a utility?

4. What command is used to instruct the editor to write the file and quit the editor?

5. What key quits the more utility and displays the shell prompt?

6. What command starts a child shell as the super user, taking on root's identity and environment?

7. Which wildcard characters can be used for searching all the files in the system that start with "A"?

8. The user name or login name of the super user is????

[Code]....

View 10 Replies View Related

OpenSUSE Install :: 11.3 - How To Use Terminal To Add / Remove Programs

Mar 15, 2011

I am coming from Kubuntu 10.10, which is a Debian based OS. I am used to going into the terminal and typing sudo apt-get install or sudo apt-get remove to install and remove programs. I know it is the hard way to do it, but I find it gave me more flexibility. So how do I do this in openSUSE 11.3? Or can I even install things through terminal? What is the command? I know there is YaST but I also want to learn how to use the terminal

View 8 Replies View Related

Programming :: How To Remove The Last Character

Jun 27, 2010

I have a string like this "/home/test/filename.txt" and i want to delete all character after the last "/". how to do that using sed or awk.

View 5 Replies View Related

Programming :: Remove First And Last Character?

Feb 24, 2010

which is the simplest way to have first and last character cropped out from a string? Something simpler than

Code:

echo $STRING | cut -b 2- | rev | cut -b 2- | rev

View 6 Replies View Related

General :: Remove A Certain Character From A Variable?

Jun 15, 2010

I want to remove single quote from a variable. eg: Suppose I have a variable VAR='TEST' (including single quotes) How can I remove single quotes and make it TEST.

View 5 Replies View Related

Programming :: Remove The Last Character From Variable

Jun 22, 2010

i have the following:

Quote:

echo %host%|sed "$s/.$//"

this would remove the Last character of the value assigned to the %host%. for example if my value is: abcd i get abc. but i am not able to assign the output. for example when i do

Quote:

set k=`echo %host%|sed "$s/.$//"`

after doing echo %k i get no output at the command prompt...!! whereas when i just type:

Quote:

echo abcd|sed "$s/.$//"

at the command prompt i get abc. maybe some other ways to Remove the Last character...?

View 13 Replies View Related

General :: Remove Abnormal Character DEL From A File Name?

Jul 22, 2011

I have got certain files which somehow contain abnormal character "Del" "0x7f" or 177 which represents Del. And this is causing SVN to reject these files and abruptly end the process. I need to remove those characters from the file names but am not able to. find or grep do not search the files. This is how the file looks like with ls or find code...

View 3 Replies View Related

Ubuntu :: Terminal Character Spacing Flawed?

Jul 11, 2010

Running Ubuntu 9.04 here and having some frequent problems in the terminal. The characters have "smooshed" together so some strings are unreadable. This happened randomly when I opened terminal and has been happening ever since. I don't know what the problem is.

BTW: I checked forums, two topics on this; 0 answers, go figure.

View 2 Replies View Related

Slackware :: The Last Character Covered By The Cursor In A Terminal?

Jun 21, 2010

The last character covered by the cursor in a terminal . what can i do?

-----------lang.sh---------------
lang=zh_CN
---------------------------------

after this revised i got a kde with chinese, i do not kown if it is right. also,Sometimes the terminal fonts garbled,for example i use the pppoe cmd.

[code]....

View 1 Replies View Related

General :: Shortcut To Remove First Character Of Multiple Lines In Gedit

Jan 23, 2010

I want to be able to remove the first character of a line when I highlight multiple lines in gedit. Example:

%Example is
%Commented Code
%Uncomment using this shortcut

I would then highlight/select these lines, and remove the first character to make it look like this:

Example is
Commented Code
Uncomment using this shortcut

I'm pretty sure there is an actual shortcut for this. If there is another text editor on Linux that it would work in, it would be nice to know how to do it in that editor as well.

View 2 Replies View Related

Red Hat / Fedora :: Change File Names To Remove Invalid Character

Apr 1, 2009

I am trying to copy a large number of files from a Linux server to a Windows file share. Unfortunately, all of the files and folders I have to copy have 10 numbers followed by 2 colons "::" in the name (example: 1234567890::WordDoc.doc) which of course is invalid in windows naming conventions. So now I'm trying to come up with a way to change the file and folder names on the fly to replace the colons with a dash "-" or space " ". I'm even willing delete the frist 12 characters in necessary. I have tried cp, mv, tr, and several -bash scripts but get no positive results.

View 4 Replies View Related

Debian :: Set Default Character Encoding In Gnome-terminal?

Dec 30, 2010

I try to change the default character encoding in gnome-terminal. I want to use UTF8, but every gnome-terminal i start uses "ANSIX3.4-1968".

In the menu, when i go in Terminal => Set character encoding i have a list with two items:
[x] Current Locale (ANSIX3.4-1968)
[ ] Unicode (UTF-8)

I don't know why the first item appears, i have another debian box and it has only the UTF-8 encoding available. I cannot remove the first item in "add or remove" sub menu !! Probably because it is related to "current locale"

Here is the output of "locale", if it can helps:
boulzor@antec:~$ locale
LANG=en_US.UTF-8
LC_CTYPE="en_US.UTF-8"
LC_NUMERIC="en_US.UTF-8"

[Code]....

View 2 Replies View Related

Programming :: String Editing: Remove Lines Consisting Of A Single Character?

Jul 16, 2010

I have a large text file that's formatted sort of like this:

Code:
foo bar
blah

[code]...

View 2 Replies View Related

Programming :: Script To Remove Lines In A File With More Than "x" Instances Of Any Character ?

Oct 4, 2010

I'm looking for a script (bash, python, perl etc) or even a one liner (sed, awk etc) that can take a set of files and remove any line that has more than "x" instances of any character (case sensitive). I have been doing a lot of searching and can only come up with examples of how to remove blank lines, lines that start with a certain character or lines that contain a certain string. This will be used on a system running a Kubuntu derivative.

As a very poor and basic example, I would like to take files that contain lines like:

Code:

And end up with the files only containing the lines:

Code:

If I tell the script that 2 is the maximun number of times any character can appear in any line.

I know this must be possible, but for the life of me I cannot find even an example that will lead me in the right direction or better yet a piece of code I can use.

View 15 Replies View Related

Ubuntu Installation :: 10.10 - Remove Old Kernels From The Grub2 Boot Screen - Error "awk: 1: Unexpected Character 0xe2"

Nov 1, 2010

I am running a dual boot system with windows 7 and Ubuntu. Both have run smoothly on my machine (Core 2 quad core on Gigabyte board) I recently upgraded to 10.10 from 10.04 via the update manager within 10.04. Following the upgrade the initial boot failed at the login screen ( i simply got the purple colored screen with a white box in the center of it). Instead of trying to figure out what went wrong, I simply re-installed 10.10 from live CD on top of the upgraded Ubuntu that was failing at the login screen. The live CD install seemed to fix everything for the most part ( I did notice some quickly flashing text right before the login screen. I think it was an error message but it was too fast to read)

My problem now is that I am trying to remove some of my old kernels from the Grub2 boot screen and I cant. I have read many posts on how to remove the old kernels, but my system is proving to be difficult. The old kernels definitely show during boot, but whenever I go into Synaptic they are not there. I have downloaded Ubuntu Tweak, and they do not show in it either. I have read the information at [URL] I went to http://www.fixthecode.com/remove-hug...sts-in-ubuntu/ and thought this would fix my problem but I keep getting an error: "awk: 1: unexpected character 0xe2" when i try to run: "dpkg -l | grep ^ii | grep 2.6.3x-xx | awk -F{print $2} I am running kernel 2.6.35-22 The kernels i want to remove are 2.6.32-23 and 2.6.32-24.

View 7 Replies View Related

Ubuntu :: Frozen Panel - Messing Around With The Alternate Character Panel App And Made A Custom Character Set

Jun 12, 2011

I was messing around with the alternate character panel app and made a custom character set. I then wanted to put it on a new panel and created a new panel. I moved the character set to that panel, and then started to mess around with the panel settings (auto hide, show hide buttons, and expand, to be specific.) So far so good, until I moved the panel from the right side of the screen to the top. I already had a panel here, and it seemed not to like hiding a panel when there was already one on the top.

When the new panel hid itself, all my panels stopped responding (any clicks on them did nothing) and my processor started going at 100%. I tried a reboot and the only thing that changed is that now I can't even see my panels. I'm guessing I need to change the settings back manually through the prompt, but I don't know how to do that. I am using 10.04 and have not upgraded gnome since upgrading to 10.04.

View 1 Replies View Related

OpenSUSE :: How To Write Chinese Character

Feb 11, 2011

I want to know if it's possible to write chinese character in the different applications (openoffice, thunderbird ecc) and how to do it (keeping the original language of the OS, talian)

View 6 Replies View Related

OpenSUSE Hardware :: Pipeline Character Does Not Appear

Feb 16, 2010

I have installed opensuse 11.6 in my TOSHIBA (Satellite) laptop. Currently I have problem with keyboard . When I type pipeline key [SHIFT+|] it gives ~(tilda) character instead of |.

View 4 Replies View Related

OpenSUSE :: Changing Default Character Encoding?

Mar 4, 2010

How can I change my system's default character encoding? I need to change it to ISO-8859-1 for compatibility reasons, but I can't find an option for this...

View 9 Replies View Related

OpenSUSE :: How To Install Asian Character Support

Dec 5, 2010

how install asian character support. Like Japanese, Chinese, or Korea, other.

View 3 Replies View Related

OpenSUSE :: Display Japanese Character On Amarok?

Dec 17, 2010

When I want to play my japanese mp3 files, amarok only display? for the song title. I think it's because the title was write in japanese character. Is there any ways to display id3tag which is using japanese character in amarok?

View 3 Replies View Related

OpenSUSE :: Type Japanese Character In Apps?

Dec 17, 2010

is there any ways to type japanese character in Linux Application like OpenOffice, Kwrite, terminal, and other application? I'm using OpenSuse 11.3 and I think I've install Japanese character support for my OpenSuse. But, I didn't know how type a japanese character in Linux Application. When using Windows, I only need to change the language bar to japanese to type in japanese character, but I didn't know how to do this in Linux.

View 3 Replies View Related

OpenSUSE :: Find What Device To Use For A Character Something Plugged Into USB

Apr 27, 2011

There are so many system information tools i figure that this one would be in the set. I just can't seen to find it.

View 9 Replies View Related

OpenSUSE :: Unicode Character U+20e5 (and Other) Doesn't Work

Jul 5, 2010

the problem is how to have a "backslashed R", looking at here and picking up Combining Diacritical Marks you can see all the unicode combining diacritical marks like the one to have a "slashed R" that is U+0338, so if you type R and ctrl>shift>U 0338 >return you obtain R̸,but if you want a "backslashed R" and you type R and ctrl>shift>U 20e5 >return you obtain R⃥, and it isn't what you wantto do this you can use also gucharmap or kcharselect, I tried and them work for U+0338 and doesn't work for U+20e5, so, thinking that it was a gucharmap problem I mailed to gnomebugs here , I red this too here:

Combining Diacritical Marks for Symbols U+20D0 U+20FF (84008447)
Windows: Arev Sans, Arial Unicode MS, Cambria Math, Caslon, Code2000, EversonMono, Free Sans, Free Serif, Hindsight Unicode, Monospace, Reader Sans, RomanCyrillic Std, SImPL, sixpack, STIXGeneral, Sun-ExtA, Symbola, Y.OzFontN
Unix: Caslon

and installed fonts, Arial Unicode MS and Caslon, that seems to support U+20D0 - U+20FF (my is U+20e5, so it should be in the range) Combining Diacritical Mark, but it doesn't work, and at the end him suggest me to ask help to my "distrution's support forums", so here I am , Why I cannot have a "backslashed R"??

View 3 Replies View Related

OpenSUSE Hardware :: Not Merely Does Character Reflection And Many Other Things Take Ages?

Apr 17, 2011

At least with 11.4 on a 12-core AMD, the NOUVEAU driver is a crock for this. Not merely does character reflection and many other things take ages, it dies horribly far too often. NVIDIA's driver seems better. This is purely for information, as my problem is solved for now.

View 7 Replies View Related

OpenSUSE Install :: Compose The Character On A US QWERTY Keyboard?

Feb 18, 2011

How do I compose the character on a US QWERTY keyboard?

View 9 Replies View Related

Fedora :: Remove A Panel From GNOME In Terminal?

Jul 14, 2010

I created a new panel in Gnome (Fedora 12) and it wasn't showing up right. So I just told it to make another (with the same results), and finally one more. So with the two that are there by default, that's 5 total panels... None of the newly created panels where displaying at all. But after creating the last one the system froze up. Now when I try to boot into fedora my system locks up as it's trying to load GNOME...

Is there any way for me to remove those panels through BASH? So I can just boot to a prompt and get them removed. After that I imagine GNOME will load correctly again...

View 4 Replies View Related

General :: Remove String Pattern Using Terminal?

Jul 27, 2011

I would like to remove a string pattern which like this.You should not remove this /*This is the part should remove*/ You should not remove this.I would like to remove all the text inside the /* and */.

View 2 Replies View Related

Ubuntu :: How To Remove A Menu Item From Terminal

Jul 12, 2011

I'm looking for a way from the terminal to remove certain menu items from the System | Administration for certain users. I'm working with a CyberCafe style application so user accounts come and go and I wanted to see if I can set it up that after an account is created that it will do some customisations.

I've found examples of adding menu items but nothing specific to removing via the terminal.

I think I may already know the answer to this. The Alacarte application simply manages the XML in the settings.menu to hide menu items and that if I want to do any customisations from the terminal I will need to play with this XML file to hide things.

I'd like the customisation per user rather than a blanket removal for all users

View 4 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved