» tagged pages
» logout

sorted by: recent | see : popular
Content Tagged with change + Debian

Howto Change Default Cursor Theme in Debian

If you want to change the default cursor theme first you need to install one of the available cursor themes

(...)
Read the rest of Howto Change Default Cursor Theme in Debian (122 words)


© Admin for Debian Admin, 2008. | Permalink | No comment

Add to del.icio.us

Search blogs linking this post with Technorati

Want more on these topics ? Browse the archive of posts filed under General.

---
Related Articles at Debian Admin:

  • No Related Posts

  • Debian: Debian Admin Step By Step Tutorials and articles with screenshots

    Howto Recover Cisco Router Password

    This ‘How to’ is written to show the step by step password recovery of the Cisco Routers. It is assumed that you have a prior knowledge of what a router is and its basic function. It is also assumed the you are having some experience of configuring the router.

    Please do not follow these steps if you are a new to Routers, as this can damage the IOS or any physical interface of the router.

    1.Connect a computer to the router’s Console port using the Console cable that came with your router (it is usually flat and light blue).

    Use these terminal settings:
    * 9600 baud rate
    * No parity
    * 8 data bits
    * 1 stop bit
    * No flow control

    2.Turn the router off using the power switch and turn it back on.

    3.Once text starts popping up on the screen, send the break command CTRL + B or CTRL +BREAK (sometimes it is CTRL +X). This will abort the boot and present you with a rommon 1> prompt

    4.From the new prompt you need to change the configuration register using the following command: confreg 0×2142

    5.If you are using an older model of router you may need to enter o/r 0×2142

    6.Now you need to recycle the router with the reset command.

    7.If you used the o/r command then reset the router with the I command

    8.Once the router finishes restarting you will find that there are no passwords to deal with, so you can enter enabled mode carte blanche.

    9.Once in enabled mode enter this: copy start run. This will copy the startup config to the running config.

    10.Now, go into configuration mode with the config t command

    11.Once there enter the new password with the enable secret password command (i.e. enable secret admin).

    12.Now set the configuration register back to normal with this command: confreg 0×2102

    13.Exit config mode and enter the command copy run start to copy the new configuration to ram.

    14.Now it is time to reload your router

    15.Once the router is back up you need to configure all of your interfaces with the no shutdown command or they will not work.

    Tags: , , , , , , , , addthis_url = 'http%3A%2F%2Fwww.debianadmin.com%2Fhowto-recover-cisco-router-password.html'; addthis_title = 'Howto+Recover+Cisco+Router+Password'; addthis_pub = 'david23';

    ©2008 Debian Admin. All Rights Reserved.

    .

    Debian: Debian Admin Step By Step Tutorials and articles with screenshots

    Need Help cleaning OS Boot Screen

    Hey Guys, i am excited because i am writing this post using Linux w/ configured WIFI!!! Thats a big thing for me @ this time.

    What i did was i have installed 7.04 and deleted 6.10. 7.04 was easy to configure and ndisgtk was there too. However when i turn on my pc it still gives me a choise between 6.10, 7.04 and Windows. I know that i have deleted 6.10 and i dont want it to be on the boot screen.

    How do i clean it up?

    THanks.

    Tags: , , , , addthis_url = 'http%3A%2F%2Fwww.debianadmin.com%2Fneed-help-cleaning-os-boot-screen.html'; addthis_title = 'Need+Help+cleaning+OS+Boot+Screen'; addthis_pub = 'david23';

    Debian: Debian Admin Step By Step Tutorials and articles with screenshots

    Howto Change Default editor in Debian Etch

    By Default Debian Etch Provides the nano editor you need to follow this procedure.In this example i want to use vi editor as my default editor

    Administrators who wish to change the default editor for all users will have to update the alternatives system using:

    # update-alternatives --config editor

    Once you enter it opens available editor options from your server you should see similar to the following screen here i have selected option4 for vi editor

    If you are an user wishing to change the default editor can define the environment variable EDITOR by introducing the following lines in their own profiles

    EDITOR=vi
    export EDITOR
    alias editor=$EDITOR

    Tags: , , , ,

    Debian: Debian Admin Step By Step Tutorials and articles with screenshots

    Recover MySQL Database root password

    By default, MySQL Server will be installed with root superuser without any password. You can connect to MySQL server as root without requiring password or by keying in blank password. However, if you have set the password for root and forget or unable to recall the password, then you will need to reset the root password for MySQL.

    Login as root to the Unix-like (Unix, Linux or BSD) machine with the MySQL server.

    Stop the MySQL server by using either of the following command

    #/etc/init.d/mysql stop

    Now you need to Start MySQL server without password

    # mysqld_safe --skip-grant-tables &

    Connect to mysql server using mysql client with the following command

    # mysql -u root

    Now you should be having mysql prompt

    mysql>

    Now you need to Setup new MySQL root user password

    mysql> use mysql;

    mysql> update user set password=PASSWORD(”newrootpassword”) where user=’root’;

    mysql> flush privileges;

    mysql> quit

    Note: Replace newrootpassword with the new root password for MySQL server. Flush Privileges is needed to making the password change effect immediately.

    Now you need to Stop MySQL Server using the following command

    # /etc/init.d/mysql stop

    Test Your New Mysql root password

    First you need to start mysql server using the following command

    # /etc/init.d/mysql start

    # mysql -u root -p

    Now it will prompt for root password and enter your new root password

    Tags: , , , , , , , ,

    Debian: Debian Admin Step By Step Tutorials and articles with screenshots

    Show and hide the GRUB Menu on Ubuntu

    When  your Ubuntu Machine boots, you can see GRUB loading. please wait… Press Esc to enter the menu… Edit the /boot/grub/menu.lst file using the following command sudo vi /boot/grub/menu.lst Hide GRUB Menu By default GRUB Hides the menu . Now search the section that looks like this ## hiddenmenu # Hides the menu by default (press ESC to see the menu) hiddenmenu Show [...]

    Debian: Debian Admin Step By Step Tutorials and articles with screenshots

    Change your Network card MAC ( Media Access Control) address

    Media Access Control address, a hardware address that uniquely identifies each node of a network. In IEEE 802 networks, the Data Link Control (DLC) layer of the OSI Reference Model is divided into two sublayers: the Logical Link Control (LLC) layer and the Media Access Control (MAC) layer. The MAC layer interfaces directly with [...]

    Debian: Debian Admin Step By Step Tutorials and articles with screenshots

    Change MTU (Maximum Transmission Unit) of network interface

    Maximum Transmission Unit(MTU), the largest physical packet size, measured in bytes, that a network can transmit. Any messages larger than the MTU are divided into smaller packets before being sent.By optimizing the MTU setting you can gain substantial network performance increases, especially when using dial-up modem connections. Default MTU Size for Different Network Topology Network MTU(Bytes) 16 [...]

    Debian: Debian Admin Step By Step Tutorials and articles with screenshots

    Change hostname or Server name of a Linux Machine

    Checking your Linux host name First, see if your host name is set correclty using the following commands: #uname -n #hostname -a #hostname -s #hostname -d #hostname -f #hostname If the above commands return correctly with no errors then all may be well; however, you may want to read on to verify that all settings are correct. Normally we will set the hostname of [...]

    Debian: Debian Admin Step By Step Tutorials and articles with screenshots

    Debian and Ubuntu Linux Run Levels

    Linux run levels are numbered 0 through 6. Run levels stop at six for practical and historical reasons, but it is entirely possible to have more if desired. The following table summarizes the User Linux run levels: * 0 System Halt * 1 Single user * 2 Full multi-user mode (Default) * 3-5 Same as 2 * 6 System Reboot Special Run [...]

    Debian: Debian Admin Step By Step Tutorials and articles with screenshots

    Webmin Installation and Configuration in Debian and Ubuntu Linux

    Webmin is a web-based interface for system administration for Unix. Using any browser that supports tables and forms (and Java for the File Manager module), you can setup user accounts, Apache, DNS, file sharing and so on. Webmin consists of a simple web server, and a number of CGI programs which directly update system files like [...]

    Debian: Debian Admin Step By Step Tutorials and articles with screenshots