Software :: Clearing BIOS Password With GDB?

Aug 13, 2010

I came across this article: [URL] while looking for a way to clear my BIOS password. I wonder if this is possible with gdb? I've had no luck by trying "output x70 2e" and "output 70 2e", the former asks for a symbol table to be loaded.

View 3 Replies


ADVERTISEMENT

Server :: Unable To Login To A User Account Even After Clearing The Password From Root Using Passwd -d

Aug 10, 2010

Not able to login to a user account, even after clearing the password from root using passwd -d

[root@ivrsdb1_pnq /]# passwd -S oracle
Password locked.
[root@ivrsdb1_pnq /]# passwd -u -f oracle
Unlocking password for user oracle.

[code]....

View 3 Replies View Related

Ubuntu :: Any Way To Find BIOS Password?

Jun 1, 2011

Is there a way to find out BIOS password from Ubuntu? I know how to reset/clear the password but all I want is to find out the password. Is it possible from Ubuntu?

View 9 Replies View Related

General :: Resetting A BIOS Password On A Laptop?

Oct 5, 2010

I bought a ChemBook laptop which I have installed Ubuntu Linux on. It has an AMI BIOS. There is a password on the BIOS so I can not change its configuration. The laptop does not have a 3.5inch floppy. How do I reset or remove the BIOS password so I can access it and make my own changes and set up my own password?

View 4 Replies View Related

Ubuntu :: Removing Dell Bios Admin Password?

Jan 4, 2011

I set an admin password for the bios of my dell inspiron e1505 laptop. I do know the password. Is there some way for me to delete the admin password so that I can access the BIOS settings without a password?

View 9 Replies View Related

Ubuntu :: Gigabyte Motherboard BIOS Locked Even With Correct Password Inputted

Nov 6, 2010

I could change and manipulate all the bios features before I put an administrator password on the bios. Now that I have put a password on the bios, even when I log-in with the correct password 90% of the motherboard settings are locked and un-changeable.

View 5 Replies View Related

Ubuntu :: Code For Clearing RAM As Cache?

Jun 20, 2010

post the code for clearing RAM as cache?

View 2 Replies View Related

Ubuntu :: Clearing ALT+F2 History In 11.04 / Natty

May 12, 2011

How do I clear the ALT+F2 'run a command' history that appears in Ubuntu Natty? The Terminal command I used to use in 10.10 to clear the history no longer works in the new Unity command launcher. I've tried searching within files on my hard drive to see if I can find where the data is stored, but no such luck.

View 3 Replies View Related

Software :: Clearing Log Files On Boot?

Jan 19, 2009

How to clear log files, also how to clear log files on boot.

View 3 Replies View Related

Slackware :: Tmp Not Clearing Out At Boot Time

Dec 27, 2010

I've been using cron to clear /tmp at boot time but thought I'd try another method. After doing a little research I added the following line:

Code:
( cd /tmp && rm -rf -- * .* 2>/dev/null )
to /etc/rc.d/rc.S immediately after:

Code:
# Done checking root filesystem

And /tmp is not clearing out at boot time. This method seems to work for others.

View 14 Replies View Related

OpenSUSE :: Clearing Files - KDE Unable To Start ?

Aug 27, 2011

My other PC has ground to a halt as the tmp file is full: "/tmp out of disk space" & "KDE unable to start". I have scoured commands and can't find how to clear all the junk apart from move it somewhere else.

View 5 Replies View Related

OpenSUSE Install :: Clearing Screen Of Second Monitor?

Dec 3, 2009

I have a dual-monitor display with a Nvidia GEforce 9400 video card. The login screen has a normal login on the primary display but the second display contains fragments from the previous session. I would like to clear the secondary display so that it does not display information from the previous session.

View 1 Replies View Related

General :: Prevent Vim From Clearing The Clipboard On Exit

Jun 20, 2011

If I copy text into the xterm clipboard from vim, it is cleared when I exit vim. How do I prevent this?

View 1 Replies View Related

Ubuntu :: Clearing Information About A Wireless Network?

Sep 18, 2010

How do I get rid of the information that Ubuntu stores for connecting to wireless networks?

I'm asking because I have two wireless networks nearby: my personal network and my school's network. I tried one time to connect to the school's network using the standard prompts but none of them worked - however I could connect to my personal network just fine. The problem is that Ubuntu remembered the incorrect information I entered for my school's network and keeps trying to connect to it.

It's annoying because whenever I'm in range of both networks I keep having to manually tell it to stop connecting to my school's network and to connect to my personal one instead.

View 2 Replies View Related

Ubuntu :: Clearing GThumb Recent Folders

Oct 17, 2010

Is there any way to clear the list of recent folders when you click Move or Copy on an image in gThumb? It's gotten way too big, so now it's not really helpful at all, with folders I don't even use.

View 1 Replies View Related

Ubuntu :: 11.04 - Clearing History From Apps Doc Panel

Apr 15, 2011

Ubuntu 11.04 Removing History. In the new 11.04 on the apps doc panel on the left hand side there is a button called "Files & Folders", when clicked on it brings up.

recent
downloads
favorites

Is there a way to clear the history, maybe disable it altogether or at the very least limit the amount of history it retains?

View 1 Replies View Related

Ubuntu Networking :: Iptables Not Clearing MASQUERADE?

May 29, 2011

If I add a rule to iptables:

Code:
iptables -t nat -A POSTROUTING -o eth4 -j MASQUERADE
it does not get removed when I try to clear all the rules:

[code]...

View 4 Replies View Related

Ubuntu :: Manually Clearing Firefox's Cache?

Jul 1, 2011

a few days ago i set my FoxyProxy settings to tor. I needed it to make a few raid boards on 4chan and those can get you banned if you post.

So anyways, i go on this forum about a phone and i accidentally refreshed the page, but i haven't switched from proxy to my default settings and so all of a sudden a message appeared "Sorry, ###### you are banned from this forum."

I tried clearing cache, cookies and whatnot through firefox' options but still i get that message, i installed Midori for a quick test and it seems to work there (I'm not banned) but never on firefox, even rebooted and still nothing.

I really hate the ads with Midori as i use Adblock for firefox.

View 5 Replies View Related

Software :: Need Info On Clearing Firefox History?

Aug 5, 2011

How does one clear all Firefox history?

View 1 Replies View Related

Programming :: Clearing Stdin Obtained From Pipe

Mar 14, 2010

I have a small program that reads stdin from a pipe using fgets. Now fgets blocks for the first line but after that it will not block.

The code, my_echo.c -
int main(int argc, char **argv) { char buf [2000] ;
char* pc ; printf("hello ") ; while (1)
{ buf[0] = (char) 0 ;
pc = fgets(buf, sizeof(buf), stdin);
if (pc != NULL) printf("%s ",buf); } return 0; }

How its called
* In terminal window 1: ./my_echo < my_fifo
* In terminal window 2: echo "1234" > my_fifo
* In terminal window 1: prints hello then 1234.
* Checking with ksysguard or top shows that my_echo is consuming 40% of CPU time.

Adding a few printf's shows that the gets is not blocking and returns a null pointer.
* In terminal window 2: echo "qwerty" > my_fifo
* In terminal window 1 qwerty prints.
I want a read function that does in fact block so my program does not tie up CPU time, read does not block.

View 7 Replies View Related

Slackware :: Clearing Temp Directory At Shutdown

Nov 9, 2010

I just realized that my /tmp directory is not being cleared at shutdown time. How to enable this? I'm running -current.

View 8 Replies View Related

Ubuntu Networking :: Clearing Logged Info From Iptables?

Mar 8, 2010

This is actually for my router, but it's linux based, Anyway, I currently have a router running tomato linux firmware and at 30 minute intervals I have it send a log file of bandwidth usage to a network drive.

From there, a program calculates the bandwidth used by each IP by adding up all the totals recorded in the log files. The log files are the output of the router running the command:

Code:
iptables -L traffic_in -vn

What doesn't happen though, which I'd prefer, is that the bandwidth counts inside the router get cleared upon writing each log file. This way, I don't end up counting the same bandwidth use multiple times. So my question is, is there a way to erase/reset the data count in the iptables?

View 3 Replies View Related

Ubuntu Installation :: Cleaning Up - Clearing Out Obsolete Packages ?

May 1, 2010

I just upgraded to 10.04, and it seems to be working well. At the very end of the process, it asked me if I wanted to delete my obsolete packages, and I chickened out and said "no". Now I have a truckload of taken space on the root drive, and am wondering if there is an easy way to complete this last step of clearing out obsolete packages now that 10.04 has been fully installed?

View 2 Replies View Related

Ubuntu Security :: Truecrypt Container And Clearing Swap?

Sep 27, 2010

my current plan is to create a truecrypt container with the whirlpool hash. This container will be located on a hdd that is not where my OS will be located (so a separate physical sata drive).My concern is when this container is accessed, that some of the password information could be stored in my swap partition (which is on the main drive where the OS "/" is located)

I would like to have a script or command I could run that after I unmount those drives (or just halt the system) that my swap (and ram too if possible) could be wiped (or like overwritten with the shred command). Also, am I going about this the right way, or should I just use truecrypts FDE on the entire drive? In addition, when Ubuntu does it's default install, does it create a swap file in addition to a swap partition? If it does, would that be another vulnerability? If it is, how do I prevent this from happening?

I welcome any input you have on this. I am aware that once the drive is mounted, it is vulnerable, but I want the data to be secure as possible once my computer is turned off. Also, I have read that there are ram exploits where it holds your passwords for up to a few minutes after you turn the machine off, does anyone know how long that it and is there a way to clear it, or will only time let it fade?

View 1 Replies View Related

General :: Clearing Error 15 From Grub - File Not Found

Mar 4, 2011

I am using Ubuntu 10.10 dual booted with windows vista. My boot is in a separate partition (sda5). My computer told me that there was limited space on that partition so I tried to clean things up using apt-get by removing old kernels. Turns out I didn't do it correctly because I consistently get an 'ERROR 15' when I shut down and rebooted my computer. I have a live-CD USB-stick so I tried reinstalling grub, (grub-install) updating the menu.lst (update-grub), and manually going through menu.lst and changing to root=(hd0,4) and groot=/dev/sda6. But I still get this ERROR 15 when I reboot.

when I do
sudo grub
find /boot/grub/stage1
find /boot/stage1

Both give me an ERROR 15 message and I'm not sure how to proceed with a diagnosis. When I ran update-grub, occasionally it used to tell me that /etc/fstab may be incorrect. Here is /boot/grub (note that stage 1 does exist!) ( this is /dev/sda5)

Code:
root@ubuntu:/# ls /boot/grub/
default fat_stage1_5 jfs_stage1_5 minix_stage1_5 stage2
device.map grubenv menu.lst reiserfs_stage1_5 xfs_stage1_5
e2fs_stage1_5 installed-version menu.lst~ stage1

Here is my problem
Code:
grub> find /boot/grub/stage1
Error 15: File not found
grub> find /boot/stage1
Error 15: File not found

I guess my main question is, if stage1 can't be found, what does that mean? What should I do next?

View 5 Replies View Related

Software :: Clearing Cache And Delete Cookies In Firefox

Dec 1, 2009

How do I empty the cache in Firefox? All I can figure out how to do is delete cookies.

View 3 Replies View Related

Software :: Clearing Firefox Cache Automatically After Some Event?

Feb 11, 2010

Can I set the Firefox cache to clear automatically after some event (exiting Firefox or logging out of the system,either would be acceptable)?

View 3 Replies View Related

Programming :: Clearing Cache - Reading Data Upon Investigation

Apr 9, 2009

I have been saving an XML file wherein I shall be reading data, if and only if the XML is present on Hard Drive. If same is not present, the code shall generate first and next time it shall simply read and not jump into writing part again and again. The issue that I am facing is, I am deleting the file manually going to that location, and checking whether it is reading the data, upon investigation, I found that it is really reading the data although the file is deleted.

I suspected that there may be some cache issue from where it is picking values, hence it fired the command
"sync; echo 3 > /proc/sys/vm/drop_caches"
But it is still doing the same pattern.

View 2 Replies View Related

SUSE / Novell :: Clearing Update Icon In Status Bar

May 10, 2009

I lost my entire Operating system and am now reinstalling. After installing SUSE 11.1 and updating it through the update icon in the status bar, I ended up with a complete update except for the update icon in the status bar now depicting a downward arrow. This equates to my not wanting to download a update/patch/whatever of a "Microsoft font file"!

However, there is no way to delete this option that I do not want. How do I get rid of the MS font update and bring the OS/system back to the Gecko symbol associated with taking care (updating) of updating my system without a thing from MS? To those who are bound to ask, I want nothing to do with MS, this should be sufficient.

View 2 Replies View Related

Debian Configuration :: Clearing Aptitude State - Removal Of Packages

Mar 18, 2010

I had been doing some removal of packages, and things went well, or so I thought. Now whenever I try and install any package using aptitude, some old state is lingering around and wants me to install packages that I do not want, and remove some packages that I am not sure about removing (did I actually select those to be removed??) I removed libvirt etc, and now it wants to come back? Also, like I mentioned, why remove those other four packages?

The following NEW packages will be installed:
aqemu gtkrsync libvirt-doc libvirt0 python-libvirt qemu qemu-kvm qemu-system qemu-user qemu-utils virt-top virt-viewer virtinst
The following packages will be removed:
dnsmasq-base{u} netcat-openbsd{u} python-gtk-vnc{u} python-vte{u}
0 packages upgraded, 13 newly installed, 4 to remove and 176 not upgraded.
Need to get 2,210kB/24.3MB of archives. After unpacking 72.7MB will be used.
Do you want to continue? [Y/n/?] ^C

Running squeeze, and enjoying it so far, apart from a broken out of the box synergy (compiled my own synergy-plus to fix that issue) and a buggy samba client.

View 3 Replies View Related







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